├── .gitignore ├── Project_Report.pdf ├── Readme.txt ├── System Security Project Presentation.pptx └── waf ├── Makefile ├── WAF_Page_File ├── WAF_Param_File ├── admin_config ├── anomaly_detection_phase.c ├── build.sh ├── mod_waf.c ├── mod_waf.h ├── mod_waf.la ├── mod_waf.lo ├── modules.mk ├── signatures ├── waf_detection_mode.c ├── waf_file_operations.h ├── waf_generate_profile.c ├── waf_parse_signature.c └── waf_train_mode.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/.gitignore -------------------------------------------------------------------------------- /Project_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/Project_Report.pdf -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/Readme.txt -------------------------------------------------------------------------------- /System Security Project Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/System Security Project Presentation.pptx -------------------------------------------------------------------------------- /waf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/Makefile -------------------------------------------------------------------------------- /waf/WAF_Page_File: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/WAF_Page_File -------------------------------------------------------------------------------- /waf/WAF_Param_File: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/WAF_Param_File -------------------------------------------------------------------------------- /waf/admin_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/admin_config -------------------------------------------------------------------------------- /waf/anomaly_detection_phase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/anomaly_detection_phase.c -------------------------------------------------------------------------------- /waf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/build.sh -------------------------------------------------------------------------------- /waf/mod_waf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/mod_waf.c -------------------------------------------------------------------------------- /waf/mod_waf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/mod_waf.h -------------------------------------------------------------------------------- /waf/mod_waf.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/mod_waf.la -------------------------------------------------------------------------------- /waf/mod_waf.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/mod_waf.lo -------------------------------------------------------------------------------- /waf/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/modules.mk -------------------------------------------------------------------------------- /waf/signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/signatures -------------------------------------------------------------------------------- /waf/waf_detection_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/waf_detection_mode.c -------------------------------------------------------------------------------- /waf/waf_file_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/waf_file_operations.h -------------------------------------------------------------------------------- /waf/waf_generate_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/waf_generate_profile.c -------------------------------------------------------------------------------- /waf/waf_parse_signature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/waf_parse_signature.c -------------------------------------------------------------------------------- /waf/waf_train_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnapal12/Web-Application-Firewall/HEAD/waf/waf_train_mode.c --------------------------------------------------------------------------------