├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── common.hpp ├── configuration ├── bruteforce │ ├── charrdos.json │ ├── cldaprdos.json │ ├── dnsrdos.json │ ├── dnsscan.json │ ├── httpscan.json │ ├── httpsscan.json │ ├── icmpscan.json │ ├── icmpsdos.json │ ├── memcachedrdos.json │ ├── ntprdos.json │ ├── ntpscan.json │ ├── riprdos.json │ ├── rstsdos.json │ ├── sqlscan.json │ ├── ssdprdos.json │ ├── sshscan.json │ ├── synsdos.json │ └── udpsdos.json ├── lrscan │ ├── dns_lrscan.json │ ├── http_lrscan.json │ ├── icmp_lrscan.json │ ├── netbios_lrscan.json │ ├── rdp_lrscan.json │ ├── smtp_lrscan.json │ ├── snmp_lrscan.json │ ├── ssh_lrscan.json │ ├── telnet_lrscan.json │ └── vlc_lrscan.json ├── malware │ ├── adload.json │ ├── bitcoinminer.json │ ├── ccleaner.json │ ├── coinminer.json │ ├── dridex.json │ ├── emotet.json │ ├── feiwo.json │ ├── koler.json │ ├── magic.json │ ├── mazarbot.json │ ├── mobidash.json │ ├── penetho.json │ ├── plankton.json │ ├── ransombo.json │ ├── sality.json │ ├── snojan.json │ ├── svpeng.json │ ├── thbot.json │ ├── trickbot.json │ ├── trickster.json │ ├── trojanminer.json │ ├── wannalocker.json │ ├── webcompanion.json │ └── zsone.json ├── misc │ ├── ackport.json │ ├── crossfirela.json │ ├── crossfiremd.json │ ├── crossfiresm.json │ ├── ipidaddr.json │ ├── ipidport.json │ ├── lrtcpdos02.json │ ├── lrtcpdos05.json │ ├── lrtcpdos10.json │ ├── spam1.json │ ├── spam100.json │ ├── spam50.json │ ├── sshpwdla.json │ ├── sshpwdmd.json │ ├── sshpwdsm.json │ ├── telnetpwdla.json │ ├── telnetpwdmd.json │ └── telnetpwdsm.json └── web │ ├── agentinject.json │ ├── codeinject.json │ ├── csfr.json │ ├── oracle.json │ ├── paraminject.json │ ├── persistence.json │ ├── scrapy.json │ ├── sslscan.json │ ├── webshell.json │ └── xss.json ├── dataset_construct ├── CMakeLists.txt ├── basic_dataset.cpp └── basic_dataset.hpp ├── env ├── install_all.sh ├── install_pcapp.sh └── install_z3.sh ├── flow_construct ├── CMakeLists.txt ├── explicit_constructor.cpp ├── explicit_constructor.hpp └── flow_define.hpp ├── graph_analyze ├── CMakeLists.txt ├── detector_main.hpp ├── edge_constructor.cpp ├── edge_constructor.hpp ├── edge_define.cpp ├── edge_define.hpp ├── graph_analysis.cpp ├── graph_analysis_basic.cpp ├── graph_analysis_long.cpp ├── graph_analysis_short.cpp ├── graph_component.cpp ├── graph_construct.cpp ├── graph_define.cpp └── graph_define.hpp ├── init.sh ├── main.cpp ├── option.hpp ├── packet_parse ├── CMakeLists.txt ├── packet_basic.hpp ├── packet_info.hpp ├── pcap_parser.cpp ├── pcap_parser.hpp └── pcpp_common.hpp ├── result_analyze ├── basic_analyzer.py ├── batch_analyzer.py ├── common.py └── configure.json └── script ├── clean.sh ├── expand.sh ├── rebuild.sh ├── run_all_brute.sh ├── run_all_lrscan.sh ├── run_all_malware.sh ├── run_all_misc.sh └── run_all_web.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/README.md -------------------------------------------------------------------------------- /common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/common.hpp -------------------------------------------------------------------------------- /configuration/bruteforce/charrdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/charrdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/cldaprdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/cldaprdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/dnsrdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/dnsrdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/dnsscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/dnsscan.json -------------------------------------------------------------------------------- /configuration/bruteforce/httpscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/httpscan.json -------------------------------------------------------------------------------- /configuration/bruteforce/httpsscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/httpsscan.json -------------------------------------------------------------------------------- /configuration/bruteforce/icmpscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/icmpscan.json -------------------------------------------------------------------------------- /configuration/bruteforce/icmpsdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/icmpsdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/memcachedrdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/memcachedrdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/ntprdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/ntprdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/ntpscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/ntpscan.json -------------------------------------------------------------------------------- /configuration/bruteforce/riprdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/riprdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/rstsdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/rstsdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/sqlscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/sqlscan.json -------------------------------------------------------------------------------- /configuration/bruteforce/ssdprdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/ssdprdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/sshscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/sshscan.json -------------------------------------------------------------------------------- /configuration/bruteforce/synsdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/synsdos.json -------------------------------------------------------------------------------- /configuration/bruteforce/udpsdos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/bruteforce/udpsdos.json -------------------------------------------------------------------------------- /configuration/lrscan/dns_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/dns_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/http_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/http_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/icmp_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/icmp_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/netbios_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/netbios_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/rdp_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/rdp_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/smtp_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/smtp_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/snmp_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/snmp_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/ssh_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/ssh_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/telnet_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/telnet_lrscan.json -------------------------------------------------------------------------------- /configuration/lrscan/vlc_lrscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/lrscan/vlc_lrscan.json -------------------------------------------------------------------------------- /configuration/malware/adload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/adload.json -------------------------------------------------------------------------------- /configuration/malware/bitcoinminer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/bitcoinminer.json -------------------------------------------------------------------------------- /configuration/malware/ccleaner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/ccleaner.json -------------------------------------------------------------------------------- /configuration/malware/coinminer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/coinminer.json -------------------------------------------------------------------------------- /configuration/malware/dridex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/dridex.json -------------------------------------------------------------------------------- /configuration/malware/emotet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/emotet.json -------------------------------------------------------------------------------- /configuration/malware/feiwo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/feiwo.json -------------------------------------------------------------------------------- /configuration/malware/koler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/koler.json -------------------------------------------------------------------------------- /configuration/malware/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/magic.json -------------------------------------------------------------------------------- /configuration/malware/mazarbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/mazarbot.json -------------------------------------------------------------------------------- /configuration/malware/mobidash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/mobidash.json -------------------------------------------------------------------------------- /configuration/malware/penetho.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/penetho.json -------------------------------------------------------------------------------- /configuration/malware/plankton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/plankton.json -------------------------------------------------------------------------------- /configuration/malware/ransombo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/ransombo.json -------------------------------------------------------------------------------- /configuration/malware/sality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/sality.json -------------------------------------------------------------------------------- /configuration/malware/snojan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/snojan.json -------------------------------------------------------------------------------- /configuration/malware/svpeng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/svpeng.json -------------------------------------------------------------------------------- /configuration/malware/thbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/thbot.json -------------------------------------------------------------------------------- /configuration/malware/trickbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/trickbot.json -------------------------------------------------------------------------------- /configuration/malware/trickster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/trickster.json -------------------------------------------------------------------------------- /configuration/malware/trojanminer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/trojanminer.json -------------------------------------------------------------------------------- /configuration/malware/wannalocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/wannalocker.json -------------------------------------------------------------------------------- /configuration/malware/webcompanion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/webcompanion.json -------------------------------------------------------------------------------- /configuration/malware/zsone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/malware/zsone.json -------------------------------------------------------------------------------- /configuration/misc/ackport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/ackport.json -------------------------------------------------------------------------------- /configuration/misc/crossfirela.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/crossfirela.json -------------------------------------------------------------------------------- /configuration/misc/crossfiremd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/crossfiremd.json -------------------------------------------------------------------------------- /configuration/misc/crossfiresm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/crossfiresm.json -------------------------------------------------------------------------------- /configuration/misc/ipidaddr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/ipidaddr.json -------------------------------------------------------------------------------- /configuration/misc/ipidport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/ipidport.json -------------------------------------------------------------------------------- /configuration/misc/lrtcpdos02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/lrtcpdos02.json -------------------------------------------------------------------------------- /configuration/misc/lrtcpdos05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/lrtcpdos05.json -------------------------------------------------------------------------------- /configuration/misc/lrtcpdos10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/lrtcpdos10.json -------------------------------------------------------------------------------- /configuration/misc/spam1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/spam1.json -------------------------------------------------------------------------------- /configuration/misc/spam100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/spam100.json -------------------------------------------------------------------------------- /configuration/misc/spam50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/spam50.json -------------------------------------------------------------------------------- /configuration/misc/sshpwdla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/sshpwdla.json -------------------------------------------------------------------------------- /configuration/misc/sshpwdmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/sshpwdmd.json -------------------------------------------------------------------------------- /configuration/misc/sshpwdsm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/sshpwdsm.json -------------------------------------------------------------------------------- /configuration/misc/telnetpwdla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/telnetpwdla.json -------------------------------------------------------------------------------- /configuration/misc/telnetpwdmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/telnetpwdmd.json -------------------------------------------------------------------------------- /configuration/misc/telnetpwdsm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/misc/telnetpwdsm.json -------------------------------------------------------------------------------- /configuration/web/agentinject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/agentinject.json -------------------------------------------------------------------------------- /configuration/web/codeinject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/codeinject.json -------------------------------------------------------------------------------- /configuration/web/csfr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/csfr.json -------------------------------------------------------------------------------- /configuration/web/oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/oracle.json -------------------------------------------------------------------------------- /configuration/web/paraminject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/paraminject.json -------------------------------------------------------------------------------- /configuration/web/persistence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/persistence.json -------------------------------------------------------------------------------- /configuration/web/scrapy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/scrapy.json -------------------------------------------------------------------------------- /configuration/web/sslscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/sslscan.json -------------------------------------------------------------------------------- /configuration/web/webshell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/webshell.json -------------------------------------------------------------------------------- /configuration/web/xss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/configuration/web/xss.json -------------------------------------------------------------------------------- /dataset_construct/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/dataset_construct/CMakeLists.txt -------------------------------------------------------------------------------- /dataset_construct/basic_dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/dataset_construct/basic_dataset.cpp -------------------------------------------------------------------------------- /dataset_construct/basic_dataset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/dataset_construct/basic_dataset.hpp -------------------------------------------------------------------------------- /env/install_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/env/install_all.sh -------------------------------------------------------------------------------- /env/install_pcapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/env/install_pcapp.sh -------------------------------------------------------------------------------- /env/install_z3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/env/install_z3.sh -------------------------------------------------------------------------------- /flow_construct/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/flow_construct/CMakeLists.txt -------------------------------------------------------------------------------- /flow_construct/explicit_constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/flow_construct/explicit_constructor.cpp -------------------------------------------------------------------------------- /flow_construct/explicit_constructor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/flow_construct/explicit_constructor.hpp -------------------------------------------------------------------------------- /flow_construct/flow_define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/flow_construct/flow_define.hpp -------------------------------------------------------------------------------- /graph_analyze/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/CMakeLists.txt -------------------------------------------------------------------------------- /graph_analyze/detector_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/detector_main.hpp -------------------------------------------------------------------------------- /graph_analyze/edge_constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/edge_constructor.cpp -------------------------------------------------------------------------------- /graph_analyze/edge_constructor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/edge_constructor.hpp -------------------------------------------------------------------------------- /graph_analyze/edge_define.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/edge_define.cpp -------------------------------------------------------------------------------- /graph_analyze/edge_define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/edge_define.hpp -------------------------------------------------------------------------------- /graph_analyze/graph_analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/graph_analysis.cpp -------------------------------------------------------------------------------- /graph_analyze/graph_analysis_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/graph_analysis_basic.cpp -------------------------------------------------------------------------------- /graph_analyze/graph_analysis_long.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/graph_analysis_long.cpp -------------------------------------------------------------------------------- /graph_analyze/graph_analysis_short.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/graph_analysis_short.cpp -------------------------------------------------------------------------------- /graph_analyze/graph_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/graph_component.cpp -------------------------------------------------------------------------------- /graph_analyze/graph_construct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/graph_construct.cpp -------------------------------------------------------------------------------- /graph_analyze/graph_define.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/graph_define.cpp -------------------------------------------------------------------------------- /graph_analyze/graph_define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/graph_analyze/graph_define.hpp -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/init.sh -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/main.cpp -------------------------------------------------------------------------------- /option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/option.hpp -------------------------------------------------------------------------------- /packet_parse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/packet_parse/CMakeLists.txt -------------------------------------------------------------------------------- /packet_parse/packet_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/packet_parse/packet_basic.hpp -------------------------------------------------------------------------------- /packet_parse/packet_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/packet_parse/packet_info.hpp -------------------------------------------------------------------------------- /packet_parse/pcap_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/packet_parse/pcap_parser.cpp -------------------------------------------------------------------------------- /packet_parse/pcap_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/packet_parse/pcap_parser.hpp -------------------------------------------------------------------------------- /packet_parse/pcpp_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/packet_parse/pcpp_common.hpp -------------------------------------------------------------------------------- /result_analyze/basic_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/result_analyze/basic_analyzer.py -------------------------------------------------------------------------------- /result_analyze/batch_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/result_analyze/batch_analyzer.py -------------------------------------------------------------------------------- /result_analyze/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/result_analyze/common.py -------------------------------------------------------------------------------- /result_analyze/configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/result_analyze/configure.json -------------------------------------------------------------------------------- /script/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/script/clean.sh -------------------------------------------------------------------------------- /script/expand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/script/expand.sh -------------------------------------------------------------------------------- /script/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/script/rebuild.sh -------------------------------------------------------------------------------- /script/run_all_brute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/script/run_all_brute.sh -------------------------------------------------------------------------------- /script/run_all_lrscan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/script/run_all_lrscan.sh -------------------------------------------------------------------------------- /script/run_all_malware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/script/run_all_malware.sh -------------------------------------------------------------------------------- /script/run_all_misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/script/run_all_misc.sh -------------------------------------------------------------------------------- /script/run_all_web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchuanpu/HyperVision/HEAD/script/run_all_web.sh --------------------------------------------------------------------------------