├── README.md ├── ibm_appscan_batch_scan_script.bat ├── targets.txt └── template └── 9.0.3.11_template.scant /README.md: -------------------------------------------------------------------------------- 1 | # IBM AppScan批量扫描脚本 2 | 3 | ## Description 4 | 5 | **IBM AppScan**是一款Web应用程序安全漏洞扫描工具,其图形化界面不能批量扫描,需要通过调用其自带的AppScanCMD.exe实现,故编写该批量扫描脚本。 6 | 7 | 8 | ## Operating Environment 9 | 10 | > Microsoft Windows 11 | > 12 | > IBM Security AppScan 13 | 14 | 15 | ## Configuration Guide 16 | 配置参数位于ibm_appscan_batch_scan_script.bat的上部,存在注释,请根据实际设置参数值。 17 | 18 | 9.0.3.11_templet.scant(已配置为标准扫描)为AppScan的扫描配置,需要变更请于AppScan的图形化界面进行扫描配置后导出使用。 19 | 20 | targets.txt中放入需扫描目标。 21 | 22 | 默认results文件夹下存放扫描结果。 23 | 24 | 25 | ## Installation Guide 26 | 27 | >git clone https://github.com/acgbfull/IBM_Appscan_Batch_Scan_Script.git 28 | 29 | 30 | ## Usage 31 | > 根据实际于ibm_appscan_batch_scan_script.bat中设置好参数的值 32 | > 需要扫描的目标放入targets.txt 33 | > 直接运行ibm_appscan_batch_scan_script.bat 34 | 35 | 36 | ## Change Log 37 | 38 | > 2019/02/15 version:1.0.0 39 | > 2020/01/31 version:2.0.0 40 | -------------------------------------------------------------------------------- /ibm_appscan_batch_scan_script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgbfull/IBM_Appscan_Batch_Scan_Script/2af87eefb6eeb603eb952dd06630d6d338848a46/ibm_appscan_batch_scan_script.bat -------------------------------------------------------------------------------- /targets.txt: -------------------------------------------------------------------------------- 1 | http://www.qucejun.com/app/laji/ 2 | http://cip.fju.edu.tw/cip/Login.aspx?id=stu&user=%u674e 3 | 4 | --------------------------------------------------------------------------------