!!! Project Not being worked on for now !!!
Feel free to suggest anything in the issues tab, you are also free to modify the source and do what you want.
The source is free for everyone to learn, edit, modify. You do not need any of my permission to redistribute.
Latest Updates:
- Fix bugs: Modify registry key that caused detection
TODO:
(I've been stuck on adding some features for now, but i'll try working on it when i'm not lazy.)
- Add more UAC Bypass methods (fodhelper, cmstp)
- Redo the entire interface with Guna.UI2 (Depending on any bugs)
- Feel free to suggest improvements/features in Issues tab.
- Make the MBR code optionally removable due to the "KillMBR" detection with AVs.
- List of Active Windows on the sytem.
- Startup Manager (HKCU, HKLM, Startup Folder.)
- File Infector (Use Codedom to bind self to other .exe files in folders)
- Ransomware Encrypt/Decrypt (Custom note, extension and notes filename.)
- (I fully implemented ransomware, but I decided not to release it.)
- (Maybe in a week i'll implement a different one with better encryption.)
Compile njRAT & Stub Tutorial (Outdated, but will still compile the same way):
compilazr.mp4
Showcase of the features:
Click here to view the video, Github only allows 1 video per readme.
⠀
Common compile errors:
If you edit certain forms you will sometimes run into errors:
Type 'NJRAT.L1' is not defined
Type 'NJRAT.Pp1' is not defined
Type 'NJRAT.Gclass9' is not defined
These will happen during compiling, to fix them, follow this:
Change
Me.L1 = New NJRAT.L1()
Me.Pp1 = New NJRAT.Pp1()
To
Me.L1 = New L1()
Me.Pp1 = New Pp1()
After this, compile again and it should be fixed.