├── .DS_Store ├── .gitattributes ├── .gitignore ├── LICENSE ├── MLAlgorithms ├── .DS_Store ├── .idea │ ├── .gitignore │ ├── MLAlgorithms.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── other.xml │ └── vcs.xml ├── DataProcessor.py └── SVM.py ├── README.md └── WebPackageSniffer ├── .idea ├── .gitignore ├── WebPackageSniffer.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml └── Sniffer.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/LICENSE -------------------------------------------------------------------------------- /MLAlgorithms/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/.DS_Store -------------------------------------------------------------------------------- /MLAlgorithms/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /MLAlgorithms/.idea/MLAlgorithms.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/.idea/MLAlgorithms.iml -------------------------------------------------------------------------------- /MLAlgorithms/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /MLAlgorithms/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/.idea/misc.xml -------------------------------------------------------------------------------- /MLAlgorithms/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/.idea/modules.xml -------------------------------------------------------------------------------- /MLAlgorithms/.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/.idea/other.xml -------------------------------------------------------------------------------- /MLAlgorithms/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/.idea/vcs.xml -------------------------------------------------------------------------------- /MLAlgorithms/DataProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/DataProcessor.py -------------------------------------------------------------------------------- /MLAlgorithms/SVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/MLAlgorithms/SVM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Machine Learning Based Intrution Detection System 2 | 基于机器学习的入侵检测系统 3 | -------------------------------------------------------------------------------- /WebPackageSniffer/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /WebPackageSniffer/.idea/WebPackageSniffer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/WebPackageSniffer/.idea/WebPackageSniffer.iml -------------------------------------------------------------------------------- /WebPackageSniffer/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/WebPackageSniffer/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /WebPackageSniffer/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/WebPackageSniffer/.idea/misc.xml -------------------------------------------------------------------------------- /WebPackageSniffer/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/WebPackageSniffer/.idea/modules.xml -------------------------------------------------------------------------------- /WebPackageSniffer/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/WebPackageSniffer/.idea/vcs.xml -------------------------------------------------------------------------------- /WebPackageSniffer/Sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamJQ/Machine-Learning-Based-Intrution-Detection-System/HEAD/WebPackageSniffer/Sniffer.py --------------------------------------------------------------------------------