├── Data ├── WebShell │ ├── asp │ │ └── webshell_asp.txt │ ├── jsp │ │ └── webshell_jsp.txt │ └── php │ │ └── webshell_php.txt ├── check │ └── check.txt └── normal │ ├── asp │ └── normal_asp.txt │ ├── jsp │ └── normal_jsp.txt │ └── php │ └── normal_php.txt ├── LICENSE ├── README.md ├── check.py ├── logo.png ├── train_asp.py ├── train_jsp.py └── train_php.py /Data/WebShell/asp/webshell_asp.txt: -------------------------------------------------------------------------------- 1 | asp类型的webshell黑样本请放在该文件夹下 -------------------------------------------------------------------------------- /Data/WebShell/jsp/webshell_jsp.txt: -------------------------------------------------------------------------------- 1 | jsp类型的webshell黑样本请放在该文件夹下 -------------------------------------------------------------------------------- /Data/WebShell/php/webshell_php.txt: -------------------------------------------------------------------------------- 1 | php类型的webshell黑样本请放在该文件夹下 -------------------------------------------------------------------------------- /Data/check/check.txt: -------------------------------------------------------------------------------- 1 | 待检测的3种类型文件请放在该文件夹下 -------------------------------------------------------------------------------- /Data/normal/asp/normal_asp.txt: -------------------------------------------------------------------------------- 1 | 正常的asp白样本请放在该文件夹下 -------------------------------------------------------------------------------- /Data/normal/jsp/normal_jsp.txt: -------------------------------------------------------------------------------- 1 | 正常的jsp白样本请放在该文件夹下 -------------------------------------------------------------------------------- /Data/normal/php/normal_php.txt: -------------------------------------------------------------------------------- 1 | 正常的php白样本请放在该文件夹下 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coldwave96/WebShell-AIHunter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coldwave96/WebShell-AIHunter/HEAD/README.md -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coldwave96/WebShell-AIHunter/HEAD/check.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coldwave96/WebShell-AIHunter/HEAD/logo.png -------------------------------------------------------------------------------- /train_asp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coldwave96/WebShell-AIHunter/HEAD/train_asp.py -------------------------------------------------------------------------------- /train_jsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coldwave96/WebShell-AIHunter/HEAD/train_jsp.py -------------------------------------------------------------------------------- /train_php.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coldwave96/WebShell-AIHunter/HEAD/train_php.py --------------------------------------------------------------------------------