作者: 大蝉
渗透思维导图合集
使用MacOS在只做esxi USB安装盘
格式化成fat32,然后iso内镜像所有内容考进去即可。
服务器启动模式要改成UEFI
参考:
https://blog.csdn.net/qiaohewei/article/details/107748919
https://virtuallywired.io/2020/08/01/create-a-bootable-esxi-7-usb-installer-on-macos/
CTF-v8
OOB = out of boundary
部分参照:
https://eternalsakura13.com/2018/05/06/v8/
1.准备代理,git仓库走本地流量,depot_tools走代理
source proxy export no_proxy=10.10.10.xxx,127.0.0.1,gitlab.xxx.xxx
2.编译指定git仓库v8
git clone http://xxx.xxx.xxx.xxx/xxx/v8.git git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git export PATH=$PATH:"/path/to/depot_tools" cd v8 gclient config http://xxx.xxx.xxx.xxx/xxx/v8.git gclient sync cd v8 tools/dev/v8gen.py x64.debug ninja -C out.gn/x64.debug ./out/x64.debug/d8 ./out/x64.debug/shell
openvas docker 使用宿主机代理更新NVT
docker run --detach --env HTTP_PROXY="http://172.19.112.1:7890" --env HTTPS_PROXY="http://172.19.112.1:7890" --env RSYNC_PROXY="172.19.112.1:7890" --publish 127.0.0.1:19392:9392 -e PASSWORD="xxxxxxxxxx" --volume openvas:/data --name openvas immauss/openvas
安装pycrypto报错pyfatal error: Python.h: No such file or directory的解决方法
apt install libpython3.7-dev