摘要: icmp,tcpping工具源码 import socket import subprocess import platform import time import sys def icmp_ping(host, count=4): param = '-n' if platform.system( 阅读全文
posted @ 2024-08-29 15:35 爱上编程技术 阅读(17) 评论(0) 推荐(0)
摘要: linux抓包http协议分析,分析header和body 安装: 执行抓包命令,这里ip要换成你想抓包的目标ip: ngrep -q -W byline -d any "^Host:|^GET|^POST|^HTTP/" tcp and host 183.2.172.42 and port 80 阅读全文
posted @ 2024-08-29 12:59 爱上编程技术 阅读(16) 评论(0) 推荐(0)
摘要: RSA标准加密解密,高强度秘钥4096确保万无一失 上代码: #pip install cryptography from cryptography.hazmat.primitives.asymmetric import rsa from cryptography.hazmat.primitives 阅读全文
posted @ 2024-08-29 12:50 爱上编程技术 阅读(46) 评论(0) 推荐(0)