├── README.md ├── common ├── __pycache__ │ ├── baseline_fix.cpython-36.pyc │ ├── baseline_param_parse.cpython-36.pyc │ └── baseline_parse.cpython-36.pyc ├── baseline_fix.py ├── baseline_param_parse.py └── baseline_parse.py ├── mysql ├── 1_scanner │ └── mysql_baseline_scanner.sh ├── 2_info │ ├── 10.10.7.1_mysql_info.xml │ ├── 192.168.220.143_mysql_info.xml │ └── 192.168.56.138_mysql_info.xml ├── 3_parse │ └── mysql_baseline_parse.py ├── 4_report │ ├── 10.10.7.1_mysql_report.html │ ├── 192.168.220.143_mysql_report.html │ ├── 192.168.56.138_mysql_report.html │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── jquery-3.3.1.min.js │ │ │ └── popper.min.js │ └── highcharts │ │ ├── exporting.js │ │ ├── highcharts-3d.js │ │ └── highcharts.js ├── 5_parse │ └── mysql_baseline_fix.py ├── 6_fix │ ├── 10.10.7.1_mysql_fix.sh │ ├── 192.168.220.143_mysql_fix.sh │ └── 192.168.56.138_mysql_fix.sh └── ansible │ ├── sec.retry │ ├── sec.yml │ └── sec │ ├── excute_fix_script │ └── tasks │ │ └── main.yml │ ├── excute_scanner │ └── tasks │ │ └── main.yml │ └── gen_fix_script │ └── tasks │ └── main.yml ├── nginx ├── 1_scanner │ └── nginx_baseline_scanner.sh ├── 2_info │ └── 192.168.220.143_nginx_info.xml ├── 3_parse │ └── nginx_baseline_parse.py ├── 4_report │ ├── 192.168.220.143_nginx_data.txt │ ├── 192.168.220.143_nginx_report.html │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── jquery-3.3.1.min.js │ │ │ └── popper.min.js │ └── highcharts │ │ ├── exporting.js │ │ ├── highcharts-3d.js │ │ └── highcharts.js ├── 5_parse │ └── nginx_baseline_fix.py ├── 6_fix │ └── 192.168.220.143_nginx_fix.sh ├── 7_log │ └── 192.168.220.143_nginx_fix.log └── ansible │ ├── sec.retry │ ├── sec.yml │ └── sec │ ├── client_fix │ └── tasks │ │ └── main.yml │ ├── client_scan │ ├── files │ │ ├── 192.168.0.152_os_info.sh │ │ ├── 192.168.0.152_os_info.xml │ │ └── os_baseline_scanner.sh │ └── tasks │ │ └── main.yml │ ├── excute_fix_script │ └── tasks │ │ └── main.yml │ ├── excute_scanner │ ├── files │ │ ├── 192.168.0.152_os_info.sh │ │ ├── 192.168.0.152_os_info.xml │ │ └── os_baseline_scanner.sh │ └── tasks │ │ └── main.yml │ ├── gen_fix_script │ └── tasks │ │ └── main.yml │ └── server │ └── tasks │ └── main.yml ├── os ├── 1_scanner │ └── os_baseline_scanner.sh ├── 2_info │ ├── 10.10.7.3_os_info.xml │ ├── 192.168.0.2_os_info.xml │ ├── 192.168.220.143_os_info.xml │ └── 192.168.56.138_os_info.xml ├── 3_parse │ ├── os_baseline_parse.py │ └── os_baseline_parse_bak.py ├── 4_report │ ├── 10.10.7.3_os_data.txt │ ├── 10.10.7.3_os_report.html │ ├── 192.168.0.152_os_report.html │ ├── 192.168.0.2_os_data.txt │ ├── 192.168.0.2_os_report.html │ ├── 192.168.220.143_os_data.txt │ ├── 192.168.220.143_os_report.html │ ├── 192.168.56.138_os_data.txt │ ├── 192.168.56.138_os_report.html │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── jquery-3.3.1.min.js │ │ │ └── popper.min.js │ └── highcharts │ │ ├── exporting.js │ │ ├── highcharts-3d.js │ │ └── highcharts.js ├── 5_parse │ └── os_baseline_fix.py ├── 6_fix │ ├── 10.10.7.3_os_fix.sh │ ├── 192.168.0.152_os_fix.sh │ ├── 192.168.0.2_os_fix.sh │ ├── 192.168.220.143_os_fix.sh │ └── 192.168.56.138_os_fix.sh ├── 7_log │ └── 192.168.220.143_os_fix.log └── ansible │ ├── sec.retry │ ├── sec.yml │ └── sec │ ├── excute_fix_script │ └── tasks │ │ └── main.yml │ ├── excute_scanner │ └── tasks │ │ └── main.yml │ └── gen_fix_script │ └── tasks │ └── main.yml ├── redis ├── 1_scanner │ └── redis_baseline_scanner.sh ├── 2_info │ ├── 10.10.7.4_redis_info.xml │ └── 192.168.220.143_redis_info.xml ├── 3_parse │ └── redis_baseline_parse.py ├── 4_report │ ├── 192.168.220.143_redis_data.txt │ ├── 192.168.220.143_redis_report.html │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── jquery-3.3.1.min.js │ │ │ └── popper.min.js │ └── highcharts │ │ ├── exporting.js │ │ ├── highcharts-3d.js │ │ └── highcharts.js ├── 5_parse │ └── redis_baseline_fix.py ├── 6_fix │ └── 192.168.220.143_redis_fix.sh ├── 7_log │ └── 192.168.220.143_redis_fix.log └── ansible │ ├── sec.retry │ ├── sec.yml │ └── sec │ ├── excute_fix_script │ └── tasks │ │ └── main.yml │ ├── excute_scanner │ └── tasks │ │ └── main.yml │ └── gen_fix_script │ └── tasks │ └── main.yml ├── tomcat ├── 1_scanner │ └── tomcat_baseline_scanner.sh ├── 2_info │ └── 192.168.220.143_tomcat_info.xml ├── 3_parse │ ├── tomcat_baseline_parse.py │ └── tomcat_baseline_parse_bak.py ├── 4_report │ ├── 192.168.220.143_tomcat_report.html │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── jquery-3.3.1.min.js │ │ │ └── popper.min.js │ └── highcharts │ │ ├── exporting.js │ │ ├── highcharts-3d.js │ │ └── highcharts.js ├── 5_parse │ └── tomcat_baseline_fix.py ├── 6_fix │ └── 192.168.220.143_tomcat_fix.sh └── ansible │ ├── sec.retry │ ├── sec.yml │ └── sec │ ├── excute_fix_script │ └── tasks │ │ └── main.yml │ ├── excute_scanner │ └── tasks │ │ └── main.yml │ └── gen_fix_script │ └── tasks │ └── main.yml └── 安全基线脚本使用指导V1.docx /README.md: -------------------------------------------------------------------------------- 1 | https://www.cnblogs.com/lsdb/p/10305139.html -------------------------------------------------------------------------------- /common/__pycache__/baseline_fix.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/common/__pycache__/baseline_fix.cpython-36.pyc -------------------------------------------------------------------------------- /common/__pycache__/baseline_param_parse.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/common/__pycache__/baseline_param_parse.cpython-36.pyc -------------------------------------------------------------------------------- /common/__pycache__/baseline_parse.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/common/__pycache__/baseline_parse.cpython-36.pyc -------------------------------------------------------------------------------- /common/baseline_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/common/baseline_fix.py -------------------------------------------------------------------------------- /common/baseline_param_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/common/baseline_param_parse.py -------------------------------------------------------------------------------- /common/baseline_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/common/baseline_parse.py -------------------------------------------------------------------------------- /mysql/1_scanner/mysql_baseline_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/1_scanner/mysql_baseline_scanner.sh -------------------------------------------------------------------------------- /mysql/2_info/10.10.7.1_mysql_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/2_info/10.10.7.1_mysql_info.xml -------------------------------------------------------------------------------- /mysql/2_info/192.168.220.143_mysql_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/2_info/192.168.220.143_mysql_info.xml -------------------------------------------------------------------------------- /mysql/2_info/192.168.56.138_mysql_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/2_info/192.168.56.138_mysql_info.xml -------------------------------------------------------------------------------- /mysql/3_parse/mysql_baseline_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/3_parse/mysql_baseline_parse.py -------------------------------------------------------------------------------- /mysql/4_report/10.10.7.1_mysql_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/10.10.7.1_mysql_report.html -------------------------------------------------------------------------------- /mysql/4_report/192.168.220.143_mysql_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/192.168.220.143_mysql_report.html -------------------------------------------------------------------------------- /mysql/4_report/192.168.56.138_mysql_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/192.168.56.138_mysql_report.html -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /mysql/4_report/bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /mysql/4_report/highcharts/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/highcharts/exporting.js -------------------------------------------------------------------------------- /mysql/4_report/highcharts/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/highcharts/highcharts-3d.js -------------------------------------------------------------------------------- /mysql/4_report/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/4_report/highcharts/highcharts.js -------------------------------------------------------------------------------- /mysql/5_parse/mysql_baseline_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/5_parse/mysql_baseline_fix.py -------------------------------------------------------------------------------- /mysql/6_fix/10.10.7.1_mysql_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/6_fix/10.10.7.1_mysql_fix.sh -------------------------------------------------------------------------------- /mysql/6_fix/192.168.220.143_mysql_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/6_fix/192.168.220.143_mysql_fix.sh -------------------------------------------------------------------------------- /mysql/6_fix/192.168.56.138_mysql_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/6_fix/192.168.56.138_mysql_fix.sh -------------------------------------------------------------------------------- /mysql/ansible/sec.retry: -------------------------------------------------------------------------------- 1 | 192.168.0.151 2 | -------------------------------------------------------------------------------- /mysql/ansible/sec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/ansible/sec.yml -------------------------------------------------------------------------------- /mysql/ansible/sec/excute_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/ansible/sec/excute_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /mysql/ansible/sec/excute_scanner/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/ansible/sec/excute_scanner/tasks/main.yml -------------------------------------------------------------------------------- /mysql/ansible/sec/gen_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/mysql/ansible/sec/gen_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /nginx/1_scanner/nginx_baseline_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/1_scanner/nginx_baseline_scanner.sh -------------------------------------------------------------------------------- /nginx/2_info/192.168.220.143_nginx_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/2_info/192.168.220.143_nginx_info.xml -------------------------------------------------------------------------------- /nginx/3_parse/nginx_baseline_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/3_parse/nginx_baseline_parse.py -------------------------------------------------------------------------------- /nginx/4_report/192.168.220.143_nginx_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/192.168.220.143_nginx_data.txt -------------------------------------------------------------------------------- /nginx/4_report/192.168.220.143_nginx_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/192.168.220.143_nginx_report.html -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /nginx/4_report/bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /nginx/4_report/highcharts/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/highcharts/exporting.js -------------------------------------------------------------------------------- /nginx/4_report/highcharts/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/highcharts/highcharts-3d.js -------------------------------------------------------------------------------- /nginx/4_report/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/4_report/highcharts/highcharts.js -------------------------------------------------------------------------------- /nginx/5_parse/nginx_baseline_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/5_parse/nginx_baseline_fix.py -------------------------------------------------------------------------------- /nginx/6_fix/192.168.220.143_nginx_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/6_fix/192.168.220.143_nginx_fix.sh -------------------------------------------------------------------------------- /nginx/7_log/192.168.220.143_nginx_fix.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/7_log/192.168.220.143_nginx_fix.log -------------------------------------------------------------------------------- /nginx/ansible/sec.retry: -------------------------------------------------------------------------------- 1 | 192.168.0.151 2 | -------------------------------------------------------------------------------- /nginx/ansible/sec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec.yml -------------------------------------------------------------------------------- /nginx/ansible/sec/client_fix/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/client_fix/tasks/main.yml -------------------------------------------------------------------------------- /nginx/ansible/sec/client_scan/files/192.168.0.152_os_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/client_scan/files/192.168.0.152_os_info.sh -------------------------------------------------------------------------------- /nginx/ansible/sec/client_scan/files/192.168.0.152_os_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/client_scan/files/192.168.0.152_os_info.xml -------------------------------------------------------------------------------- /nginx/ansible/sec/client_scan/files/os_baseline_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/client_scan/files/os_baseline_scanner.sh -------------------------------------------------------------------------------- /nginx/ansible/sec/client_scan/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/client_scan/tasks/main.yml -------------------------------------------------------------------------------- /nginx/ansible/sec/excute_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/excute_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /nginx/ansible/sec/excute_scanner/files/192.168.0.152_os_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/excute_scanner/files/192.168.0.152_os_info.sh -------------------------------------------------------------------------------- /nginx/ansible/sec/excute_scanner/files/192.168.0.152_os_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/excute_scanner/files/192.168.0.152_os_info.xml -------------------------------------------------------------------------------- /nginx/ansible/sec/excute_scanner/files/os_baseline_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/excute_scanner/files/os_baseline_scanner.sh -------------------------------------------------------------------------------- /nginx/ansible/sec/excute_scanner/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/excute_scanner/tasks/main.yml -------------------------------------------------------------------------------- /nginx/ansible/sec/gen_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/gen_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /nginx/ansible/sec/server/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/nginx/ansible/sec/server/tasks/main.yml -------------------------------------------------------------------------------- /os/1_scanner/os_baseline_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/1_scanner/os_baseline_scanner.sh -------------------------------------------------------------------------------- /os/2_info/10.10.7.3_os_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/2_info/10.10.7.3_os_info.xml -------------------------------------------------------------------------------- /os/2_info/192.168.0.2_os_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/2_info/192.168.0.2_os_info.xml -------------------------------------------------------------------------------- /os/2_info/192.168.220.143_os_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/2_info/192.168.220.143_os_info.xml -------------------------------------------------------------------------------- /os/2_info/192.168.56.138_os_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/2_info/192.168.56.138_os_info.xml -------------------------------------------------------------------------------- /os/3_parse/os_baseline_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/3_parse/os_baseline_parse.py -------------------------------------------------------------------------------- /os/3_parse/os_baseline_parse_bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/3_parse/os_baseline_parse_bak.py -------------------------------------------------------------------------------- /os/4_report/10.10.7.3_os_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/10.10.7.3_os_data.txt -------------------------------------------------------------------------------- /os/4_report/10.10.7.3_os_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/10.10.7.3_os_report.html -------------------------------------------------------------------------------- /os/4_report/192.168.0.152_os_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/192.168.0.152_os_report.html -------------------------------------------------------------------------------- /os/4_report/192.168.0.2_os_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/192.168.0.2_os_data.txt -------------------------------------------------------------------------------- /os/4_report/192.168.0.2_os_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/192.168.0.2_os_report.html -------------------------------------------------------------------------------- /os/4_report/192.168.220.143_os_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/192.168.220.143_os_data.txt -------------------------------------------------------------------------------- /os/4_report/192.168.220.143_os_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/192.168.220.143_os_report.html -------------------------------------------------------------------------------- /os/4_report/192.168.56.138_os_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/192.168.56.138_os_data.txt -------------------------------------------------------------------------------- /os/4_report/192.168.56.138_os_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/192.168.56.138_os_report.html -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /os/4_report/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /os/4_report/bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /os/4_report/highcharts/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/highcharts/exporting.js -------------------------------------------------------------------------------- /os/4_report/highcharts/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/highcharts/highcharts-3d.js -------------------------------------------------------------------------------- /os/4_report/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/4_report/highcharts/highcharts.js -------------------------------------------------------------------------------- /os/5_parse/os_baseline_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/5_parse/os_baseline_fix.py -------------------------------------------------------------------------------- /os/6_fix/10.10.7.3_os_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/6_fix/10.10.7.3_os_fix.sh -------------------------------------------------------------------------------- /os/6_fix/192.168.0.152_os_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/6_fix/192.168.0.152_os_fix.sh -------------------------------------------------------------------------------- /os/6_fix/192.168.0.2_os_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/6_fix/192.168.0.2_os_fix.sh -------------------------------------------------------------------------------- /os/6_fix/192.168.220.143_os_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/6_fix/192.168.220.143_os_fix.sh -------------------------------------------------------------------------------- /os/6_fix/192.168.56.138_os_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/6_fix/192.168.56.138_os_fix.sh -------------------------------------------------------------------------------- /os/7_log/192.168.220.143_os_fix.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/7_log/192.168.220.143_os_fix.log -------------------------------------------------------------------------------- /os/ansible/sec.retry: -------------------------------------------------------------------------------- 1 | 192.168.0.151 2 | -------------------------------------------------------------------------------- /os/ansible/sec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/ansible/sec.yml -------------------------------------------------------------------------------- /os/ansible/sec/excute_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/ansible/sec/excute_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /os/ansible/sec/excute_scanner/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/ansible/sec/excute_scanner/tasks/main.yml -------------------------------------------------------------------------------- /os/ansible/sec/gen_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/os/ansible/sec/gen_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /redis/1_scanner/redis_baseline_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/1_scanner/redis_baseline_scanner.sh -------------------------------------------------------------------------------- /redis/2_info/10.10.7.4_redis_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/2_info/10.10.7.4_redis_info.xml -------------------------------------------------------------------------------- /redis/2_info/192.168.220.143_redis_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/2_info/192.168.220.143_redis_info.xml -------------------------------------------------------------------------------- /redis/3_parse/redis_baseline_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/3_parse/redis_baseline_parse.py -------------------------------------------------------------------------------- /redis/4_report/192.168.220.143_redis_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/192.168.220.143_redis_data.txt -------------------------------------------------------------------------------- /redis/4_report/192.168.220.143_redis_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/192.168.220.143_redis_report.html -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /redis/4_report/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /redis/4_report/bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /redis/4_report/highcharts/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/highcharts/exporting.js -------------------------------------------------------------------------------- /redis/4_report/highcharts/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/highcharts/highcharts-3d.js -------------------------------------------------------------------------------- /redis/4_report/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/4_report/highcharts/highcharts.js -------------------------------------------------------------------------------- /redis/5_parse/redis_baseline_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/5_parse/redis_baseline_fix.py -------------------------------------------------------------------------------- /redis/6_fix/192.168.220.143_redis_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/6_fix/192.168.220.143_redis_fix.sh -------------------------------------------------------------------------------- /redis/7_log/192.168.220.143_redis_fix.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/7_log/192.168.220.143_redis_fix.log -------------------------------------------------------------------------------- /redis/ansible/sec.retry: -------------------------------------------------------------------------------- 1 | 192.168.0.151 2 | -------------------------------------------------------------------------------- /redis/ansible/sec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/ansible/sec.yml -------------------------------------------------------------------------------- /redis/ansible/sec/excute_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/ansible/sec/excute_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /redis/ansible/sec/excute_scanner/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/ansible/sec/excute_scanner/tasks/main.yml -------------------------------------------------------------------------------- /redis/ansible/sec/gen_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/redis/ansible/sec/gen_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /tomcat/1_scanner/tomcat_baseline_scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/1_scanner/tomcat_baseline_scanner.sh -------------------------------------------------------------------------------- /tomcat/2_info/192.168.220.143_tomcat_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/2_info/192.168.220.143_tomcat_info.xml -------------------------------------------------------------------------------- /tomcat/3_parse/tomcat_baseline_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/3_parse/tomcat_baseline_parse.py -------------------------------------------------------------------------------- /tomcat/3_parse/tomcat_baseline_parse_bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/3_parse/tomcat_baseline_parse_bak.py -------------------------------------------------------------------------------- /tomcat/4_report/192.168.220.143_tomcat_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/192.168.220.143_tomcat_report.html -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /tomcat/4_report/bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /tomcat/4_report/highcharts/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/highcharts/exporting.js -------------------------------------------------------------------------------- /tomcat/4_report/highcharts/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/highcharts/highcharts-3d.js -------------------------------------------------------------------------------- /tomcat/4_report/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/4_report/highcharts/highcharts.js -------------------------------------------------------------------------------- /tomcat/5_parse/tomcat_baseline_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/5_parse/tomcat_baseline_fix.py -------------------------------------------------------------------------------- /tomcat/6_fix/192.168.220.143_tomcat_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/6_fix/192.168.220.143_tomcat_fix.sh -------------------------------------------------------------------------------- /tomcat/ansible/sec.retry: -------------------------------------------------------------------------------- 1 | 192.168.0.151 2 | -------------------------------------------------------------------------------- /tomcat/ansible/sec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/ansible/sec.yml -------------------------------------------------------------------------------- /tomcat/ansible/sec/excute_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/ansible/sec/excute_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /tomcat/ansible/sec/excute_scanner/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/ansible/sec/excute_scanner/tasks/main.yml -------------------------------------------------------------------------------- /tomcat/ansible/sec/gen_fix_script/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/tomcat/ansible/sec/gen_fix_script/tasks/main.yml -------------------------------------------------------------------------------- /安全基线脚本使用指导V1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyUp/Security-Baseline/HEAD/安全基线脚本使用指导V1.docx --------------------------------------------------------------------------------