08 2024 档案
摘要:icmp,tcpping工具源码 import socket import subprocess import platform import time import sys def icmp_ping(host, count=4): param = '-n' if platform.system(
阅读全文
摘要: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
阅读全文
摘要:RSA标准加密解密,高强度秘钥4096确保万无一失 上代码: #pip install cryptography from cryptography.hazmat.primitives.asymmetric import rsa from cryptography.hazmat.primitives
阅读全文