├── .github └── FUNDING.yml ├── LICENSE ├── Modules ├── __pycache__ │ ├── audio_recorder.cpython-38.pyc │ ├── audio_reorder.cpython-38.pyc │ ├── chat.cpython-38.pyc │ ├── get_wifi_password.cpython-38.pyc │ ├── ip_info.cpython-38.pyc │ ├── move_mouse.cpython-38.pyc │ ├── open_website.cpython-38.pyc │ ├── screen_shot.cpython-38.pyc │ ├── send_key_press.cpython-38.pyc │ ├── show_popup.cpython-38.pyc │ ├── system_info.cpython-38.pyc │ ├── text_speaker.cpython-38.pyc │ ├── webcam_snap.cpython-38.pyc │ └── wifi_scanner.cpython-38.pyc ├── audio_recorder.py ├── chat.py ├── get_wifi_password.py ├── ip_info.py ├── move_mouse.py ├── open_website.py ├── random_movement.py ├── screen_shot.py ├── send_key_press.py ├── show_popup.py ├── system_info.py ├── text_speaker.py ├── webcam_snap.py └── wifi_scanner.py ├── README.md ├── config.json ├── main.py └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/__pycache__/audio_recorder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/audio_recorder.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/audio_reorder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/audio_reorder.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/chat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/chat.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/get_wifi_password.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/get_wifi_password.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/ip_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/ip_info.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/move_mouse.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/move_mouse.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/open_website.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/open_website.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/screen_shot.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/screen_shot.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/send_key_press.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/send_key_press.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/show_popup.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/show_popup.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/system_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/system_info.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/text_speaker.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/text_speaker.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/webcam_snap.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/webcam_snap.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/__pycache__/wifi_scanner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/__pycache__/wifi_scanner.cpython-38.pyc -------------------------------------------------------------------------------- /Modules/audio_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/audio_recorder.py -------------------------------------------------------------------------------- /Modules/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/chat.py -------------------------------------------------------------------------------- /Modules/get_wifi_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/get_wifi_password.py -------------------------------------------------------------------------------- /Modules/ip_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/ip_info.py -------------------------------------------------------------------------------- /Modules/move_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/move_mouse.py -------------------------------------------------------------------------------- /Modules/open_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/open_website.py -------------------------------------------------------------------------------- /Modules/random_movement.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/screen_shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/screen_shot.py -------------------------------------------------------------------------------- /Modules/send_key_press.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/send_key_press.py -------------------------------------------------------------------------------- /Modules/show_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/show_popup.py -------------------------------------------------------------------------------- /Modules/system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/system_info.py -------------------------------------------------------------------------------- /Modules/text_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/text_speaker.py -------------------------------------------------------------------------------- /Modules/webcam_snap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/webcam_snap.py -------------------------------------------------------------------------------- /Modules/wifi_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/Modules/wifi_scanner.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/config.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henry-richard7/TeleRAT/HEAD/requirements.txt --------------------------------------------------------------------------------