工具命令

xray

1
2
3
4
5
6
7
8
9
webscan --listen 127.0.0.1:7777 --html-output xray-testphp.html

webscan --basic-crawler http://testphp.vulnweb.com/ --html-output xray-crawler-testphp.html

servicescan --target 127.0.0.1:8009 --html-output service.html

servicescan --target-file 1.file --html-output service.html

webscan --browser-crawler http://example.com --html-output vuln.html

Docker

1
2
3
4
5
6
7
8
9
docker run -itd -p 3443:3443 xrsec/awvs
docker ps -a
docker ps -q
docker stop pid
docker stop $(docker ps -q)
docker rm -f pid
docker rm $(docker ps -aq)
docker stop $(docker ps -q) & docker rm -f $(docker ps -aq)
docker rmi aw

Git

1
2
3
4
5
6
git fetch origin main:tmp
git merge tmp
git add .
git commit -m "my commit"
git remote add origin git@github.com:ccc-f/fsafe.git
git push -u origin main

Redis

1
2
3
redis-cli -h 127.0.0.1 -p 6379
CONFIG SET requirepass "123456"
auth 123456

杂项

打开IE浏览器

openie.vbs

1
CreateObject("InternetExplorer.Application").Visible=true

adb

1
nox_adb connect 127.0.0.1:62001

pip操作

1
2
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple
pip freeze > requirements.txt
1
header="https://account.jetbrains.com/fls-auth"