码迷,mamicode.com
首页 > 编程语言 > 详细

python练习题【二】

时间:2020-02-24 23:57:18      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:pre   utf-8   alt   com   struct   pac   csharp   random   source   

问题:使用struct来构建tcp数据包

技术图片

 技术图片

 

#coding=utf-8
from random import randint
import struct
#源端口
source_port = randint(1,65535);
#目的端口
dst_port = 23;
#32位确认序号
ack_sn=0;
#32序号
sn=randint(1,65535*65535);
#数据包窗口
windows=4096
data=struct.pack(‘>HHIIBBH‘,source_port,dst_port,sn,ack_sn,80,2,windows);
hd = open(‘data.bin‘,‘wb‘);
hd.write(data);
hd.close();

  

 

python练习题【二】

标签:pre   utf-8   alt   com   struct   pac   csharp   random   source   

原文地址:https://www.cnblogs.com/zh718594493/p/12359549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!