├── Godzilla.py ├── README.md ├── README_CN.md ├── __pycache__ ├── Godzilla.cpython-313.pyc ├── ai_analysis_core.cpython-313.pyc ├── binary_extraction.cpython-313.pyc ├── core_processing.cpython-313.pyc ├── examine.cpython-313.pyc ├── module.cpython-313.pyc ├── output_filtering.cpython-313.pyc ├── replay_request.cpython-313.pyc └── session_utils.cpython-313.pyc ├── ai_analysis_core.py ├── binary_extraction.py ├── config.yaml ├── core_processing.py ├── custom_extension ├── __pycache__ │ └── data_processing.cpython-313.pyc └── data_processing.py ├── examine.py ├── history └── trafficeye_data.json ├── ico ├── Apache.png ├── F5.png ├── Haproxy.png ├── IIS.png ├── Nginx.png ├── Tomcat.png ├── ai.png ├── allmenu_Notebook.png ├── analysis.png ├── analyze.png ├── clear.png ├── danger.png ├── dashboard.png ├── export.png ├── extract.png ├── fullscreen.png ├── intelligence.png ├── ip.png ├── json.png ├── l.png ├── loading.gif ├── log_notebook.png ├── logs.png ├── new.png ├── open.png ├── qrcode_for_gh_e911bdfdbe01_344.png ├── replay.png ├── report.png ├── save.png ├── settings.png ├── stats.png ├── status.png ├── stop.png ├── traffic.png ├── url.png ├── wxzf.jpg ├── 分析总揽.png └── 统计.png ├── img └── image-20250425103953985.png ├── lib ├── __pycache__ │ └── xdbSearcher.cpython-313.pyc ├── bench_test.py ├── cmdline.py ├── ip2region.xdb ├── iptest.py ├── search_test.py └── xdbSearcher.py ├── log_parsing ├── __pycache__ │ └── log_identification.cpython-313.pyc └── log_identification.py ├── main.py ├── modsec ├── modsec_crs.py ├── rules │ ├── APPLICATION-ATTACK-LFI.conf │ ├── REQUEST-901-INITIALIZATION.conf │ ├── REQUEST-931-APPLICATION-ATTACK-RFI.conf │ ├── REQUEST-932-APPLICATION-ATTACK-RCE.conf │ ├── REQUEST-942-APPLICATION-ATTACK-SQLI.conf │ ├── unix-shell.data │ └── windows-powershell-commands.data ├── rules_APPLICATION_ATTACK_LFI.py ├── rules_APPLICATION_ATTACK_RCE.py ├── rules_APPLICATION_ATTACK_RFI.py └── rules_APPLICATION_ATTACK_SQLI.py ├── modsec_crs.py ├── module.py ├── output_filtering.py ├── replay_request.py ├── rule_filtering.py ├── session_utils.py └── url_statistics.py /Godzilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/Godzilla.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/README_CN.md -------------------------------------------------------------------------------- /__pycache__/Godzilla.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/Godzilla.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/ai_analysis_core.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/ai_analysis_core.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/binary_extraction.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/binary_extraction.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/core_processing.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/core_processing.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/examine.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/examine.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/module.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/module.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/output_filtering.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/output_filtering.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/replay_request.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/replay_request.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/session_utils.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/__pycache__/session_utils.cpython-313.pyc -------------------------------------------------------------------------------- /ai_analysis_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ai_analysis_core.py -------------------------------------------------------------------------------- /binary_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/binary_extraction.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/config.yaml -------------------------------------------------------------------------------- /core_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/core_processing.py -------------------------------------------------------------------------------- /custom_extension/__pycache__/data_processing.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/custom_extension/__pycache__/data_processing.cpython-313.pyc -------------------------------------------------------------------------------- /custom_extension/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/custom_extension/data_processing.py -------------------------------------------------------------------------------- /examine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/examine.py -------------------------------------------------------------------------------- /history/trafficeye_data.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /ico/Apache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/Apache.png -------------------------------------------------------------------------------- /ico/F5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/F5.png -------------------------------------------------------------------------------- /ico/Haproxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/Haproxy.png -------------------------------------------------------------------------------- /ico/IIS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/IIS.png -------------------------------------------------------------------------------- /ico/Nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/Nginx.png -------------------------------------------------------------------------------- /ico/Tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/Tomcat.png -------------------------------------------------------------------------------- /ico/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/ai.png -------------------------------------------------------------------------------- /ico/allmenu_Notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/allmenu_Notebook.png -------------------------------------------------------------------------------- /ico/analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/analysis.png -------------------------------------------------------------------------------- /ico/analyze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/analyze.png -------------------------------------------------------------------------------- /ico/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/clear.png -------------------------------------------------------------------------------- /ico/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/danger.png -------------------------------------------------------------------------------- /ico/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/dashboard.png -------------------------------------------------------------------------------- /ico/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/export.png -------------------------------------------------------------------------------- /ico/extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/extract.png -------------------------------------------------------------------------------- /ico/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/fullscreen.png -------------------------------------------------------------------------------- /ico/intelligence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/intelligence.png -------------------------------------------------------------------------------- /ico/ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/ip.png -------------------------------------------------------------------------------- /ico/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/json.png -------------------------------------------------------------------------------- /ico/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/l.png -------------------------------------------------------------------------------- /ico/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/loading.gif -------------------------------------------------------------------------------- /ico/log_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/log_notebook.png -------------------------------------------------------------------------------- /ico/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/logs.png -------------------------------------------------------------------------------- /ico/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/new.png -------------------------------------------------------------------------------- /ico/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/open.png -------------------------------------------------------------------------------- /ico/qrcode_for_gh_e911bdfdbe01_344.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/qrcode_for_gh_e911bdfdbe01_344.png -------------------------------------------------------------------------------- /ico/replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/replay.png -------------------------------------------------------------------------------- /ico/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/report.png -------------------------------------------------------------------------------- /ico/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/save.png -------------------------------------------------------------------------------- /ico/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/settings.png -------------------------------------------------------------------------------- /ico/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/stats.png -------------------------------------------------------------------------------- /ico/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/status.png -------------------------------------------------------------------------------- /ico/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/stop.png -------------------------------------------------------------------------------- /ico/traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/traffic.png -------------------------------------------------------------------------------- /ico/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/url.png -------------------------------------------------------------------------------- /ico/wxzf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/wxzf.jpg -------------------------------------------------------------------------------- /ico/分析总揽.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/分析总揽.png -------------------------------------------------------------------------------- /ico/统计.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/ico/统计.png -------------------------------------------------------------------------------- /img/image-20250425103953985.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/img/image-20250425103953985.png -------------------------------------------------------------------------------- /lib/__pycache__/xdbSearcher.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/lib/__pycache__/xdbSearcher.cpython-313.pyc -------------------------------------------------------------------------------- /lib/bench_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/lib/bench_test.py -------------------------------------------------------------------------------- /lib/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/lib/cmdline.py -------------------------------------------------------------------------------- /lib/ip2region.xdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/lib/ip2region.xdb -------------------------------------------------------------------------------- /lib/iptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/lib/iptest.py -------------------------------------------------------------------------------- /lib/search_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/lib/search_test.py -------------------------------------------------------------------------------- /lib/xdbSearcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/lib/xdbSearcher.py -------------------------------------------------------------------------------- /log_parsing/__pycache__/log_identification.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/log_parsing/__pycache__/log_identification.cpython-313.pyc -------------------------------------------------------------------------------- /log_parsing/log_identification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/log_parsing/log_identification.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/main.py -------------------------------------------------------------------------------- /modsec/modsec_crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/modsec_crs.py -------------------------------------------------------------------------------- /modsec/rules/APPLICATION-ATTACK-LFI.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules/APPLICATION-ATTACK-LFI.conf -------------------------------------------------------------------------------- /modsec/rules/REQUEST-901-INITIALIZATION.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules/REQUEST-901-INITIALIZATION.conf -------------------------------------------------------------------------------- /modsec/rules/REQUEST-931-APPLICATION-ATTACK-RFI.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules/REQUEST-931-APPLICATION-ATTACK-RFI.conf -------------------------------------------------------------------------------- /modsec/rules/REQUEST-932-APPLICATION-ATTACK-RCE.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules/REQUEST-932-APPLICATION-ATTACK-RCE.conf -------------------------------------------------------------------------------- /modsec/rules/REQUEST-942-APPLICATION-ATTACK-SQLI.conf : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules/REQUEST-942-APPLICATION-ATTACK-SQLI.conf -------------------------------------------------------------------------------- /modsec/rules/unix-shell.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules/unix-shell.data -------------------------------------------------------------------------------- /modsec/rules/windows-powershell-commands.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules/windows-powershell-commands.data -------------------------------------------------------------------------------- /modsec/rules_APPLICATION_ATTACK_LFI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules_APPLICATION_ATTACK_LFI.py -------------------------------------------------------------------------------- /modsec/rules_APPLICATION_ATTACK_RCE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules_APPLICATION_ATTACK_RCE.py -------------------------------------------------------------------------------- /modsec/rules_APPLICATION_ATTACK_RFI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules_APPLICATION_ATTACK_RFI.py -------------------------------------------------------------------------------- /modsec/rules_APPLICATION_ATTACK_SQLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec/rules_APPLICATION_ATTACK_SQLI.py -------------------------------------------------------------------------------- /modsec_crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/modsec_crs.py -------------------------------------------------------------------------------- /module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/module.py -------------------------------------------------------------------------------- /output_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/output_filtering.py -------------------------------------------------------------------------------- /replay_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/replay_request.py -------------------------------------------------------------------------------- /rule_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/rule_filtering.py -------------------------------------------------------------------------------- /session_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/session_utils.py -------------------------------------------------------------------------------- /url_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearnerDev/TrafficEye/HEAD/url_statistics.py --------------------------------------------------------------------------------