Vulnerability scanning tool based on centos deployment (afrog)

The WeChat official account found that the big guy made an open source vulnerability scanning tool (afrog), which can be deployed on the domestic arm system centos windows mac. Here only the process and use of my deployment on centos are recorded for reference only:

  1. cenos7 pulls github files
  2. use
wget https://github.com/zan8in/afrog/releases/download/v1.3.6/afrog_linux.tar.gz
或者
curl -O https://github.com/zan8in/afrog/releases/download/v1.3.6/afrog_linux.tar.gz

Unzip the file and give it execution permission to use (NB)

tar zxf afrog_linux.tar.gz
chmod +x afrog_linux
./afrog_linux  -t jira.vackbot.com  -o jira.html

If it is a decompression problem, put it in windows to decompress and upload.
insert image description here
insert image description here
After scanning, a directory will be generated, which contains vulnerability reports.
Reference link:
Installation method:
https://github.com/zan8in/afrog/blob/main/docs/GUIDE.md
download link :
https://github.com/zan8in/afrog/releases
Introduction:
https://github.com/zan8in/afrog

Guess you like

Origin blog.csdn.net/Chen118222/article/details/126289653