win7远程抓包脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了win7远程抓包脚本相关的知识,希望对你有一定的参考价值。
工作后日常的代码都是在linux服务器上运行,最近一遇到了很多https连接的问题,虽与机构沟通有https的各种细节,但总是会出现信息不对称的问题,因此https抓包是最有效的办法,握手流程就在那,更能方便说明问题。平时工作用的是Win7系统,只能利用工具远程抓包了,同时需要在linux服务器上安装一个抓包代理,rpcapd就是一个最佳的选择,可实现win7利用wireshark轻松抓包,直接上自动化脚本:
#!/bin/bash install(){ echo "-------------------start install-----------------------" yum install glibc-static wget http://www.winpcap.org/install/bin/WpcapSrc_4_1_2.zip unzip WpcapSrc_4_1_2.zip cd winpcap/wpcap/libpcap chmod +x configure runlex.sh CFLAGS=-static ./configure make cd rpcapd/ make echo "-------------------install success-----------------------" } start(){ echo "start rpcapd" nohup ./winpcap/wpcap/libpcap/rpcapd/rpcapd -4 -n -p 8888 > /dev/null 2>&1 & echo "start finish" #-p set the port to listen #-n do not need authentication } stop(){ echo ".....stopping......." ps -ef | grep ‘rpcapd‘| grep -v grep | awk ‘{print $2}‘| xargs sudo kill -9 echo ".....stopped......" } usage(){ echo "****************************************************" echo "* wireshark win client usage " echo "****************************************************" echo "install : bash wiresharkClient.sh install" echo "start : bash wiresharkClient.sh start" echo "stop : bash wiresharkClient.sh stop" echo "usage : bash wiresharkClient.sh usage" } if [ "install" == $1 ];then install elif [ "start" == $1 ];then start elif [ "stop" == $1 ];then stop else usage fi
以上是关于win7远程抓包脚本的主要内容,如果未能解决你的问题,请参考以下文章
cve-2019-0708--(远程桌面服务远程执行代码漏洞)拿下win7权限