├── .gitignore ├── LICENSE ├── README.md ├── checklinux1.0 ├── checklinux.sh ├── del.exp ├── get.exp ├── hosts.txt ├── login.sh ├── put.exp ├── readme.txt └── sh.exp ├── checklinux2.0 ├── checklinux.sh ├── del.exp ├── get.exp ├── hosts.txt ├── login.sh ├── put.exp ├── readme.txt └── sh.exp ├── linux_drop_port.sh ├── sftp.sh ├── win ├── firewall.bat ├── firewall_del.bat ├── ipsec.bat ├── ipsec1.bat ├── ipsec2.bat ├── ipsec3.bat ├── windows2003_drop_port.bat └── windows2008_drop_port.bat └── wwwroot.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.pdb 3 | *.user 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/README.md -------------------------------------------------------------------------------- /checklinux1.0/checklinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux1.0/checklinux.sh -------------------------------------------------------------------------------- /checklinux1.0/del.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux1.0/del.exp -------------------------------------------------------------------------------- /checklinux1.0/get.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux1.0/get.exp -------------------------------------------------------------------------------- /checklinux1.0/hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux1.0/hosts.txt -------------------------------------------------------------------------------- /checklinux1.0/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux1.0/login.sh -------------------------------------------------------------------------------- /checklinux1.0/put.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux1.0/put.exp -------------------------------------------------------------------------------- /checklinux1.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux1.0/readme.txt -------------------------------------------------------------------------------- /checklinux1.0/sh.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux1.0/sh.exp -------------------------------------------------------------------------------- /checklinux2.0/checklinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux2.0/checklinux.sh -------------------------------------------------------------------------------- /checklinux2.0/del.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux2.0/del.exp -------------------------------------------------------------------------------- /checklinux2.0/get.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux2.0/get.exp -------------------------------------------------------------------------------- /checklinux2.0/hosts.txt: -------------------------------------------------------------------------------- 1 | 192.168.56.101~root~qweqwe123@~nothing 2 | -------------------------------------------------------------------------------- /checklinux2.0/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux2.0/login.sh -------------------------------------------------------------------------------- /checklinux2.0/put.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux2.0/put.exp -------------------------------------------------------------------------------- /checklinux2.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux2.0/readme.txt -------------------------------------------------------------------------------- /checklinux2.0/sh.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/checklinux2.0/sh.exp -------------------------------------------------------------------------------- /linux_drop_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/linux_drop_port.sh -------------------------------------------------------------------------------- /sftp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/sftp.sh -------------------------------------------------------------------------------- /win/firewall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/win/firewall.bat -------------------------------------------------------------------------------- /win/firewall_del.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/win/firewall_del.bat -------------------------------------------------------------------------------- /win/ipsec.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/win/ipsec.bat -------------------------------------------------------------------------------- /win/ipsec1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/win/ipsec1.bat -------------------------------------------------------------------------------- /win/ipsec2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/win/ipsec2.bat -------------------------------------------------------------------------------- /win/ipsec3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/win/ipsec3.bat -------------------------------------------------------------------------------- /win/windows2003_drop_port.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/win/windows2003_drop_port.bat -------------------------------------------------------------------------------- /win/windows2008_drop_port.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/win/windows2008_drop_port.bat -------------------------------------------------------------------------------- /wwwroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppabc/security_check/HEAD/wwwroot.sh --------------------------------------------------------------------------------