Skip to content

A tool for building remote access trojan.

License

Notifications You must be signed in to change notification settings

sofienelkamel/eyeRat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EyeRat 🐁

Options :

  • Voice recording 🎤
  • Take photos 📷
  • Live stream from camera 👀
  • Take screenshot 🖼️
  • File explorer 📁
  • CLI remote command shell 🚀
  • Make custom popup box 📦
  • Other ...

Dependencies :

Libraries :

  • socket
  • openCV
  • pyaudio
  • pyautogui
  • cryptography
  • pymsgbox
  • Pillow
  • psutil
  • wave
  • colorama

How it works :

General description :

The program generally has two parts, server and client.Whenever the user has an instruction to send to the server (target), the client program sends a specific command such as: Tpict (to receive a photo from the camera) to the server (target).After receiving the command, a function is executed to execute the user command on the victim system. At the same time, a function on the client (user) side begins to receive server information and display or store it .

Code description :

1.Voice recording :

Command :

Rsound
  • RAT01.recSound(connection): First set CHUNK to 1024 and RATE (fs variable) to 44,100 . It then receives the recording time from the client . Finally, it opens a stream and saves the frames in a list with a loop and sends the list items that are in bytes.

  • client.getSound(connection,time) : First, we send the recording time to the server (target) through the socket connection ; Then in the current path create a file called Voice.wav and set its channel to 2 , then we get sampwidth from the server (target) and finally, we receive and save the recorded audio frames from the target .

2.Take photos :

Command :

Tpict
  • RAT01.getPict(connection): Reads a frame from camera number 0 using the vid object (cv2.VideoCapture (0)) .Converts it to list from numpy.array and then converts it to str using json.dumps.

  • client.getPict(connection): Receives the frame and converts it to numpy.array and finally saves it to image.jpg.

3.Live stream :

Command :

Glive
  • RAT01.live(connection) : Reads frames from camera number 0 using the vid object (cv2.VideoCapture (0)). Converts it from numpy.array to list and then converts it to str using json.dumps and sends them. This cycle continues as long as it is connected.

  • client.getLive(connection) : Converts submitted frames to numpy.array and displays them one after the other.

4.Take screenshot :

Command :

Tscr
  • RAT01.takeScr(connection) : Takes a screenshot using pyautogui.screenshot and converts it to numpy.array then converts it to a list finally convert the list to str and send it.

  • client.getScr(connection) : Receives the frame and converts it to numpy.array and finally saves it to screenshot.jpg.

5.File explorer :

  • Search in current path : Searches for current path files.

  • Redirect .

  • Current path files : List of current path files (ls OR dir command).

  • Edit file : Downloads it using the file name and after downloading you have to edit the downloaded file and enter the Enter key to apply the changes.

  • Download file .

  • Remove file/folder.

  • Upload file. Uploads a file to the desired system (current path).

6.CLI remote command shell :

Command :

RMCM
  • What is encryption/decryption key ? Execution of remote commands must be encrypted because firewalls and Windows Defender can detect commands and close processes. This is why for every RAT that is created, a key is needed to decrypt / encrypt it.

NOTE : Try not to enter commands that cause the program to crash, for example: Commands that ask the user to enter something and such commands.

7.Make custom popup box :

  • Alert window: Display a window with OK and Cancel buttons

  • Confirm window : A window to receive confirmation from the user.

  • Question window Ability to ask multiple choice questions (buttons) from the user.

  • Password window : A window to get the password from the user .

8.Other :

  • Fun hacked alert :

Command :

HDalert

This section receives a photo from the user and sends it to the server (target) (like the frame sending methods described earlier). The RAT then opens the image 1000 times in different windows and the victim system crashes.

  • Target system info : Receives and displays some victim system information.

Usage :

git clone https://github.com/AdolfMacro/eyeRat.git
cd eyeRat
python3 eyeRat.py

General instructions for use:

You must first obtain the victims IP address. Then you have to create an executable file (depending on the type of your operating system) using the generator option. Finally, the executable file must be executed on the target system. Now you need to go to the client launcher section and enter the IP address and port Now the usage menu and commands open, you can use them according to your needs.


Upcoming update schedule 🌱 :

  • I will add the UDP connection option.

  • I will add the ability to manage multiple RATs simultaneously.

  • I will optimize the code .

  • And ...

About

A tool for building remote access trojan.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages