上一页 1 ··· 79 80 81 82 83 84 85 86 87 ··· 181 下一页
摘要: Public Sub 获取窗口状态() Dim myState As String myState = Application.WindowState If myState = xlMaximized Then MsgBox "Excel窗口最大化", vbInformation ElseIf my 阅读全文
posted @ 2022-11-24 20:59 myrj 阅读(197) 评论(0) 推荐(0) 编辑
摘要: ls(ARP())hwtype : XShortField = 1 ('1')ptype : XShortEnumField = 2048 ('2048')hwlen : FieldLenField = None ('None')plen : FieldLenField = None ('None' 阅读全文
posted @ 2022-11-24 16:38 myrj 阅读(137) 评论(0) 推荐(0) 编辑
摘要: PCAP是一个数据包抓取库, 很多软件都是用它来作为数据包抓取工具的。 WireShark也是用PCAP库来抓取数据包的。PCAP抓取出来的数据包并不是原始的网络字节流,而是对其进行从新组装,形成一种新的数据格式。 一个用PCAP抓取的数据包的文件格式如下: Pcap文件头24B各字段说明:Magi 阅读全文
posted @ 2022-11-22 17:49 myrj 阅读(770) 评论(0) 推荐(0) 编辑
摘要: 1.打开终端,编辑/etc/lightdm/lightdm.conf2.找到 [Seat] 那一行,在其 下面 添加如下内容autologin-user=pi原有autologin-user=rootautologin-user-timeout=0(注意,一定要找对地方,否则会失败) 阅读全文
posted @ 2022-11-22 08:06 myrj 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 树莓派使用的linux是debian系统,所以树莓派启用root和debian是相同的。sudo apt-get python3-pip 阅读全文
posted @ 2022-11-22 05:53 myrj 阅读(13) 评论(0) 推荐(0) 编辑
摘要: import pcap import dpkt def captData(): pc=pcap.pcap('wlan0') #注,参数可为网卡名,如eth0 pc.setfilter('dst net 10. && port 8081') #设置监听过滤器 for ptime,pdata in pc 阅读全文
posted @ 2022-11-21 15:42 myrj 阅读(74) 评论(0) 推荐(0) 编辑
摘要: python安装后没有pip命令 解决方法: windows任一文件中,按SHIFT,右击,选择“在此处打开powershell" 输入命令:python -m ensurepip 如果安装后,又将scripts手工删除,再用相同的命令安装时会不成功,出现下面的提示: 需要将上面图中的 p开头的文件 阅读全文
posted @ 2022-11-20 16:39 myrj 阅读(1255) 评论(0) 推荐(0) 编辑
摘要: sudo ifconfig wlan0 promisc sudo ifconfig wlan0查看运行状态sudo apt-get install libpcap-dev 阅读全文
posted @ 2022-11-19 15:12 myrj 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Sub cha() Dim result As String, str1 As String Dim hang As String Dim hha As Integer hha = 0 Dim c As Range, rng As Range result = "航空" result = Appli 阅读全文
posted @ 2022-11-17 15:22 myrj 阅读(584) 评论(0) 推荐(0) 编辑
摘要: Sub fenlie() Dim dict1 As Object Set dict1 = CreateObject("scripting.dictionary") maxr1 = Range("d65536").End(xlUp).Row arr1 = Range("a1:a" & maxr1) F 阅读全文
posted @ 2022-11-17 13:04 myrj 阅读(283) 评论(0) 推荐(0) 编辑
上一页 1 ··· 79 80 81 82 83 84 85 86 87 ··· 181 下一页