Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 649 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 649 Bytes

Simple_Python_RAT

It is a simple remote administration tool using socket programming.

exe file generation

pip install pyinstaller

pyinstaller --onefile <your_script_name>.py

To use over the internet

1.Download and install ngrok.
https://ngrok.com/
2.Open terminal or command prompt and run following in system which you need to control.
ngrok tcp 5000
3.Now open new terminal or cmd and run server.py.
python Server.py
4.Now goto your system used for contolling, open terminal or cmd and run following.
python Cilent.py
5.It will asks the ip address, Instead of ip paste the link generated by ngrok.