├── .gitignore ├── Readme.md ├── config.ini ├── drawReport.py ├── img ├── .DS_Store ├── 1.png ├── 11.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── logo.png ├── refer ├── api_awvs_targets_Demo.txt ├── api_awvs_vluns_Demo.txt ├── html_awvs_data.txt ├── html_awvs_new_data.txt ├── html_goby_target_data.txt ├── html_goby_vulns_data.txt └── html_xray_data.txt ├── reportDemo └── reportDemo.docx ├── requirements.txt ├── result ├── .DS_Store └── XXX集团渗透测试报告_2023年03月07日.docx ├── testReport ├── 0823.html ├── 20230203_OWASP_Top_10_2021_Multiple_targets.html ├── 20230217135334-asset.xlsx └── 20230217135334-vul.xlsx ├── tool ├── __pycache__ │ ├── api_awvs.cpython-39.pyc │ ├── api_nessus.cpython-39.pyc │ ├── html_awvs.cpython-38.pyc │ ├── html_awvs.cpython-39.pyc │ ├── html_goby.cpython-38.pyc │ ├── html_goby.cpython-39.pyc │ ├── html_xray.cpython-38.pyc │ └── html_xray.cpython-39.pyc ├── api_awvs.py ├── api_nessus.py ├── html_awvs.py ├── html_goby.py └── html_xray.py └── wordReport.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | */.DS_Store -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/Readme.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/config.ini -------------------------------------------------------------------------------- /drawReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/drawReport.py -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/img/1.png -------------------------------------------------------------------------------- /img/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/img/11.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/img/5.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/img/logo.png -------------------------------------------------------------------------------- /refer/api_awvs_targets_Demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/refer/api_awvs_targets_Demo.txt -------------------------------------------------------------------------------- /refer/api_awvs_vluns_Demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/refer/api_awvs_vluns_Demo.txt -------------------------------------------------------------------------------- /refer/html_awvs_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/refer/html_awvs_data.txt -------------------------------------------------------------------------------- /refer/html_awvs_new_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/refer/html_awvs_new_data.txt -------------------------------------------------------------------------------- /refer/html_goby_target_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/refer/html_goby_target_data.txt -------------------------------------------------------------------------------- /refer/html_goby_vulns_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/refer/html_goby_vulns_data.txt -------------------------------------------------------------------------------- /refer/html_xray_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/refer/html_xray_data.txt -------------------------------------------------------------------------------- /reportDemo/reportDemo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/reportDemo/reportDemo.docx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/requirements.txt -------------------------------------------------------------------------------- /result/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/result/.DS_Store -------------------------------------------------------------------------------- /result/XXX集团渗透测试报告_2023年03月07日.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/result/XXX集团渗透测试报告_2023年03月07日.docx -------------------------------------------------------------------------------- /testReport/0823.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/testReport/0823.html -------------------------------------------------------------------------------- /testReport/20230203_OWASP_Top_10_2021_Multiple_targets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/testReport/20230203_OWASP_Top_10_2021_Multiple_targets.html -------------------------------------------------------------------------------- /testReport/20230217135334-asset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/testReport/20230217135334-asset.xlsx -------------------------------------------------------------------------------- /testReport/20230217135334-vul.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/testReport/20230217135334-vul.xlsx -------------------------------------------------------------------------------- /tool/__pycache__/api_awvs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/__pycache__/api_awvs.cpython-39.pyc -------------------------------------------------------------------------------- /tool/__pycache__/api_nessus.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/__pycache__/api_nessus.cpython-39.pyc -------------------------------------------------------------------------------- /tool/__pycache__/html_awvs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/__pycache__/html_awvs.cpython-38.pyc -------------------------------------------------------------------------------- /tool/__pycache__/html_awvs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/__pycache__/html_awvs.cpython-39.pyc -------------------------------------------------------------------------------- /tool/__pycache__/html_goby.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/__pycache__/html_goby.cpython-38.pyc -------------------------------------------------------------------------------- /tool/__pycache__/html_goby.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/__pycache__/html_goby.cpython-39.pyc -------------------------------------------------------------------------------- /tool/__pycache__/html_xray.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/__pycache__/html_xray.cpython-38.pyc -------------------------------------------------------------------------------- /tool/__pycache__/html_xray.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/__pycache__/html_xray.cpython-39.pyc -------------------------------------------------------------------------------- /tool/api_awvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/api_awvs.py -------------------------------------------------------------------------------- /tool/api_nessus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/api_nessus.py -------------------------------------------------------------------------------- /tool/html_awvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/html_awvs.py -------------------------------------------------------------------------------- /tool/html_goby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/html_goby.py -------------------------------------------------------------------------------- /tool/html_xray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/tool/html_xray.py -------------------------------------------------------------------------------- /wordReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/ExportReport/HEAD/wordReport.py --------------------------------------------------------------------------------