Loading...
0x00.Respones.Body只能读一遍因为我采用ioutil.ReadAll读取Respones.Body,所以后来发现再次读取Respones.Body发现是空的。这是因为Body会标记读取位置,ReadAll会读取到末尾,因此第二次就会读不到数据。解决方法:res, _ := ioutil.ReadAll(respones.Body) respones.Body.Close()...
[转]https://note.youdao.com/share/?id=4ed1687d752255b2f44b34bab3c719a8&type=note#/CMD下输入:py -m pip install pyinstaller,安装pyinstaller。在要制作的exe文件目录输入pyinstaller -F -w *.py,就可以制作出exe。生成的文件放在同目录dist下。-F...
#!/bin/python import os import time import commands ##开启frp def start(): os.system('/home/pi/frp/frpc -c /home/pi/frp/frpc.ini > /dev/null 2>&1 &') ##检查是否运行frp def state(): ...