Loading...
0x0前言Weevely is a stealth PHP web shell that simulate telnet-like connection. It is an essential tool for web application post exploitation, and can be used as stealth backdoor or as a web shell to...
import os import time def main(): i = 0 while i < 1000: res = "raspistill -t 1 -o img/"+str(i)+".jpg" # os.system(res) print(res) i +...
[转]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(): ...
两种方法:0.编写rc.loacl脚本Ubuntu开机之后会执行/etc/rc.local文件中的脚本,所以我们可以直接在/etc/rc.local中添加启动脚本。要添加到语句exit 0 前面才行。此脚本在完全开机后才执行,所以优先级最低。1.编写init.d脚本在/etc/init.d建立脚本,然后用软链接链接到rc?.d文件夹中。/etc 下有 rc0.d -- rc6.d 分别...