├── README.md ├── attacker ├── attacker.py ├── attacker_requirements.bat ├── requirements.txt └── separate_files │ ├── R_TCP_Client_attack.py │ ├── camera_receiver.py │ └── screen_receiver.py └── victim ├── requirements.txt ├── victim.py └── victim_requirements.bat /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudo-Tiz/python-rat/HEAD/README.md -------------------------------------------------------------------------------- /attacker/attacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudo-Tiz/python-rat/HEAD/attacker/attacker.py -------------------------------------------------------------------------------- /attacker/attacker_requirements.bat: -------------------------------------------------------------------------------- 1 | pip3 install numpy opencv-python pygame 2 | -------------------------------------------------------------------------------- /attacker/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv-python 3 | pygame 4 | -------------------------------------------------------------------------------- /attacker/separate_files/R_TCP_Client_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudo-Tiz/python-rat/HEAD/attacker/separate_files/R_TCP_Client_attack.py -------------------------------------------------------------------------------- /attacker/separate_files/camera_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudo-Tiz/python-rat/HEAD/attacker/separate_files/camera_receiver.py -------------------------------------------------------------------------------- /attacker/separate_files/screen_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudo-Tiz/python-rat/HEAD/attacker/separate_files/screen_receiver.py -------------------------------------------------------------------------------- /victim/requirements.txt: -------------------------------------------------------------------------------- 1 | mss 2 | pynput 3 | opencv-python 4 | numpy -------------------------------------------------------------------------------- /victim/victim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudo-Tiz/python-rat/HEAD/victim/victim.py -------------------------------------------------------------------------------- /victim/victim_requirements.bat: -------------------------------------------------------------------------------- 1 | pip3 install mss pynput opencv-python numpy pyaudio --------------------------------------------------------------------------------