├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── Malcom ├── __init__.py ├── analytics │ ├── __init__.py │ ├── analytics.py │ └── messenger.py ├── auxiliary │ ├── __init__.py │ ├── geoIP │ │ └── README.md │ └── toolbox.py ├── celeryctl.py ├── config │ ├── __init__.py │ └── malconf.py ├── feeds │ ├── __init__.py │ ├── core │ │ ├── MalcomBaseFeed.py │ │ ├── __init__.py │ │ ├── feed.py │ │ └── messenger.py │ ├── internal │ │ ├── __init__.py │ │ └── internal_dump_dataset.py │ └── public │ │ ├── __init__.py │ │ ├── alexa.py │ │ ├── asprox_tracker.py │ │ ├── cybercrime_tracker.py │ │ ├── feodo_tracker.py │ │ ├── malcode_binaries.py │ │ ├── malware_domain_list.py │ │ ├── malware_domains_dot_com.py │ │ ├── malware_traffic_analysis.py │ │ ├── malwared_ru.py │ │ ├── palevo_tracker.py │ │ ├── tor_exit_nodes.py │ │ ├── zeus_tracker_binaries.py │ │ ├── zeus_tracker_configs.py │ │ └── zeus_tracker_dropzones.py ├── model │ ├── __init__.py │ ├── datatypes.py │ ├── model.py │ └── user_management.py ├── shmem │ ├── SharedData.py │ └── __init__.py ├── sniffer │ ├── __init__.py │ ├── captures │ │ └── __init__.py │ ├── flow.py │ ├── messenger.py │ ├── modules │ │ ├── __init__.py │ │ ├── base_module.py │ │ ├── passive_dns │ │ │ ├── __init__.py │ │ │ └── passive_dns.py │ │ ├── suricata │ │ │ ├── __init__.py │ │ │ ├── static │ │ │ │ └── style.css │ │ │ ├── suricata.conf.example │ │ │ └── suricata.py │ │ └── yarascan │ │ │ ├── __init__.py │ │ │ ├── http_get.yar │ │ │ ├── static │ │ │ └── yara.js │ │ │ └── yarascan.py │ ├── netsniffer.py │ └── tlsproxy │ │ ├── __init__.py │ │ ├── keys │ │ └── KEYS.md │ │ └── tlsproxy.py ├── tasks │ ├── __init__.py │ ├── mdl.py │ ├── other.py │ ├── scheduler.py │ ├── spyeye.py │ └── zeus.py └── web │ ├── __init__.py │ ├── api.py │ ├── messenger.py │ ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── custom_css │ │ ├── d3_graph.css │ │ ├── results.css │ │ └── style.css │ ├── custom_img │ │ ├── ajax-loader-old.gif │ │ ├── ajax-loader.gif │ │ └── ssl.png │ ├── custom_js │ │ ├── analytics_websockets.js │ │ ├── d3_functions.js │ │ ├── dataset.js │ │ ├── initialize_graph.js │ │ ├── misc.js │ │ ├── search.js │ │ └── sniffer_websockets.js │ ├── d3js │ │ └── d3.v3.min.js │ └── jquery │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-1.9.1.js │ │ ├── jquery-ui.css │ │ └── jquery-ui.js │ ├── templates │ ├── account.html │ ├── account │ │ ├── sessions.html │ │ └── settings.html │ ├── base.html │ ├── dataset.html │ ├── feeds.html │ ├── flash.html │ ├── index.html │ ├── login.html │ ├── network_session.html │ ├── network_session_new.html │ ├── nodes.html │ ├── populate.html │ ├── results.html │ └── search.html │ ├── webserver.py │ └── websockets.py ├── README.md ├── __init__.py ├── celeryconfig.py ├── disable_routing.sh ├── enable_routing.sh ├── forward_port.sh ├── integrity.py ├── malcom.conf.example ├── malcom.py ├── requirements.txt ├── screenshots ├── dataset-main.png ├── dataset-view.png ├── feeds.png ├── nodes-tomchop.png ├── nodes-zeus-highlight.png ├── nodes-zeus.png ├── p2p.png ├── sniffer-dataflow.png ├── sniffer-nodes.png ├── sniffer-payload-contents-2.png ├── sniffer-payload-contents.png └── sniffer-sessions.png └── test_feeds.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Malcom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/__init__.py -------------------------------------------------------------------------------- /Malcom/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/analytics/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/analytics/analytics.py -------------------------------------------------------------------------------- /Malcom/analytics/messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/analytics/messenger.py -------------------------------------------------------------------------------- /Malcom/auxiliary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/auxiliary/geoIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/auxiliary/geoIP/README.md -------------------------------------------------------------------------------- /Malcom/auxiliary/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/auxiliary/toolbox.py -------------------------------------------------------------------------------- /Malcom/celeryctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/celeryctl.py -------------------------------------------------------------------------------- /Malcom/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/config/malconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/config/malconf.py -------------------------------------------------------------------------------- /Malcom/feeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/feeds/core/MalcomBaseFeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/core/MalcomBaseFeed.py -------------------------------------------------------------------------------- /Malcom/feeds/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/core/__init__.py -------------------------------------------------------------------------------- /Malcom/feeds/core/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/core/feed.py -------------------------------------------------------------------------------- /Malcom/feeds/core/messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/core/messenger.py -------------------------------------------------------------------------------- /Malcom/feeds/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/feeds/internal/internal_dump_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/internal/internal_dump_dataset.py -------------------------------------------------------------------------------- /Malcom/feeds/public/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/feeds/public/alexa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/alexa.py -------------------------------------------------------------------------------- /Malcom/feeds/public/asprox_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/asprox_tracker.py -------------------------------------------------------------------------------- /Malcom/feeds/public/cybercrime_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/cybercrime_tracker.py -------------------------------------------------------------------------------- /Malcom/feeds/public/feodo_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/feodo_tracker.py -------------------------------------------------------------------------------- /Malcom/feeds/public/malcode_binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/malcode_binaries.py -------------------------------------------------------------------------------- /Malcom/feeds/public/malware_domain_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/malware_domain_list.py -------------------------------------------------------------------------------- /Malcom/feeds/public/malware_domains_dot_com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/malware_domains_dot_com.py -------------------------------------------------------------------------------- /Malcom/feeds/public/malware_traffic_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/malware_traffic_analysis.py -------------------------------------------------------------------------------- /Malcom/feeds/public/malwared_ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/malwared_ru.py -------------------------------------------------------------------------------- /Malcom/feeds/public/palevo_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/palevo_tracker.py -------------------------------------------------------------------------------- /Malcom/feeds/public/tor_exit_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/tor_exit_nodes.py -------------------------------------------------------------------------------- /Malcom/feeds/public/zeus_tracker_binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/zeus_tracker_binaries.py -------------------------------------------------------------------------------- /Malcom/feeds/public/zeus_tracker_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/zeus_tracker_configs.py -------------------------------------------------------------------------------- /Malcom/feeds/public/zeus_tracker_dropzones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/feeds/public/zeus_tracker_dropzones.py -------------------------------------------------------------------------------- /Malcom/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/model/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/model/datatypes.py -------------------------------------------------------------------------------- /Malcom/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/model/model.py -------------------------------------------------------------------------------- /Malcom/model/user_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/model/user_management.py -------------------------------------------------------------------------------- /Malcom/shmem/SharedData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/shmem/SharedData.py -------------------------------------------------------------------------------- /Malcom/shmem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/sniffer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/sniffer/captures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/sniffer/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/flow.py -------------------------------------------------------------------------------- /Malcom/sniffer/messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/messenger.py -------------------------------------------------------------------------------- /Malcom/sniffer/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/sniffer/modules/base_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/modules/base_module.py -------------------------------------------------------------------------------- /Malcom/sniffer/modules/passive_dns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/sniffer/modules/passive_dns/passive_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/modules/passive_dns/passive_dns.py -------------------------------------------------------------------------------- /Malcom/sniffer/modules/suricata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/sniffer/modules/suricata/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/modules/suricata/static/style.css -------------------------------------------------------------------------------- /Malcom/sniffer/modules/suricata/suricata.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/modules/suricata/suricata.conf.example -------------------------------------------------------------------------------- /Malcom/sniffer/modules/suricata/suricata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/modules/suricata/suricata.py -------------------------------------------------------------------------------- /Malcom/sniffer/modules/yarascan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/sniffer/modules/yarascan/http_get.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/modules/yarascan/http_get.yar -------------------------------------------------------------------------------- /Malcom/sniffer/modules/yarascan/static/yara.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/modules/yarascan/static/yara.js -------------------------------------------------------------------------------- /Malcom/sniffer/modules/yarascan/yarascan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/modules/yarascan/yarascan.py -------------------------------------------------------------------------------- /Malcom/sniffer/netsniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/netsniffer.py -------------------------------------------------------------------------------- /Malcom/sniffer/tlsproxy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/sniffer/tlsproxy/keys/KEYS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/tlsproxy/keys/KEYS.md -------------------------------------------------------------------------------- /Malcom/sniffer/tlsproxy/tlsproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/sniffer/tlsproxy/tlsproxy.py -------------------------------------------------------------------------------- /Malcom/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'pyt' 2 | -------------------------------------------------------------------------------- /Malcom/tasks/mdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/tasks/mdl.py -------------------------------------------------------------------------------- /Malcom/tasks/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/tasks/other.py -------------------------------------------------------------------------------- /Malcom/tasks/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/tasks/scheduler.py -------------------------------------------------------------------------------- /Malcom/tasks/spyeye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/tasks/spyeye.py -------------------------------------------------------------------------------- /Malcom/tasks/zeus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/tasks/zeus.py -------------------------------------------------------------------------------- /Malcom/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Malcom/web/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/api.py -------------------------------------------------------------------------------- /Malcom/web/messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/messenger.py -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Malcom/web/static/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/bootstrap/js/npm.js -------------------------------------------------------------------------------- /Malcom/web/static/custom_css/d3_graph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_css/d3_graph.css -------------------------------------------------------------------------------- /Malcom/web/static/custom_css/results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_css/results.css -------------------------------------------------------------------------------- /Malcom/web/static/custom_css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_css/style.css -------------------------------------------------------------------------------- /Malcom/web/static/custom_img/ajax-loader-old.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_img/ajax-loader-old.gif -------------------------------------------------------------------------------- /Malcom/web/static/custom_img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_img/ajax-loader.gif -------------------------------------------------------------------------------- /Malcom/web/static/custom_img/ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_img/ssl.png -------------------------------------------------------------------------------- /Malcom/web/static/custom_js/analytics_websockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_js/analytics_websockets.js -------------------------------------------------------------------------------- /Malcom/web/static/custom_js/d3_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_js/d3_functions.js -------------------------------------------------------------------------------- /Malcom/web/static/custom_js/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_js/dataset.js -------------------------------------------------------------------------------- /Malcom/web/static/custom_js/initialize_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_js/initialize_graph.js -------------------------------------------------------------------------------- /Malcom/web/static/custom_js/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_js/misc.js -------------------------------------------------------------------------------- /Malcom/web/static/custom_js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_js/search.js -------------------------------------------------------------------------------- /Malcom/web/static/custom_js/sniffer_websockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/custom_js/sniffer_websockets.js -------------------------------------------------------------------------------- /Malcom/web/static/d3js/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/d3js/d3.v3.min.js -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/animated-overlay.gif -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Malcom/web/static/jquery/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/jquery-1.9.1.js -------------------------------------------------------------------------------- /Malcom/web/static/jquery/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/jquery-ui.css -------------------------------------------------------------------------------- /Malcom/web/static/jquery/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/static/jquery/jquery-ui.js -------------------------------------------------------------------------------- /Malcom/web/templates/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/account.html -------------------------------------------------------------------------------- /Malcom/web/templates/account/sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/account/sessions.html -------------------------------------------------------------------------------- /Malcom/web/templates/account/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/account/settings.html -------------------------------------------------------------------------------- /Malcom/web/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/base.html -------------------------------------------------------------------------------- /Malcom/web/templates/dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/dataset.html -------------------------------------------------------------------------------- /Malcom/web/templates/feeds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/feeds.html -------------------------------------------------------------------------------- /Malcom/web/templates/flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/flash.html -------------------------------------------------------------------------------- /Malcom/web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/index.html -------------------------------------------------------------------------------- /Malcom/web/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/login.html -------------------------------------------------------------------------------- /Malcom/web/templates/network_session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/network_session.html -------------------------------------------------------------------------------- /Malcom/web/templates/network_session_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/network_session_new.html -------------------------------------------------------------------------------- /Malcom/web/templates/nodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/nodes.html -------------------------------------------------------------------------------- /Malcom/web/templates/populate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/populate.html -------------------------------------------------------------------------------- /Malcom/web/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/results.html -------------------------------------------------------------------------------- /Malcom/web/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/templates/search.html -------------------------------------------------------------------------------- /Malcom/web/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/webserver.py -------------------------------------------------------------------------------- /Malcom/web/websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/Malcom/web/websockets.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celeryconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/celeryconfig.py -------------------------------------------------------------------------------- /disable_routing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/disable_routing.sh -------------------------------------------------------------------------------- /enable_routing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/enable_routing.sh -------------------------------------------------------------------------------- /forward_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/forward_port.sh -------------------------------------------------------------------------------- /integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/integrity.py -------------------------------------------------------------------------------- /malcom.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/malcom.conf.example -------------------------------------------------------------------------------- /malcom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/malcom.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/dataset-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/dataset-main.png -------------------------------------------------------------------------------- /screenshots/dataset-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/dataset-view.png -------------------------------------------------------------------------------- /screenshots/feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/feeds.png -------------------------------------------------------------------------------- /screenshots/nodes-tomchop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/nodes-tomchop.png -------------------------------------------------------------------------------- /screenshots/nodes-zeus-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/nodes-zeus-highlight.png -------------------------------------------------------------------------------- /screenshots/nodes-zeus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/nodes-zeus.png -------------------------------------------------------------------------------- /screenshots/p2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/p2p.png -------------------------------------------------------------------------------- /screenshots/sniffer-dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/sniffer-dataflow.png -------------------------------------------------------------------------------- /screenshots/sniffer-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/sniffer-nodes.png -------------------------------------------------------------------------------- /screenshots/sniffer-payload-contents-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/sniffer-payload-contents-2.png -------------------------------------------------------------------------------- /screenshots/sniffer-payload-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/sniffer-payload-contents.png -------------------------------------------------------------------------------- /screenshots/sniffer-sessions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/screenshots/sniffer-sessions.png -------------------------------------------------------------------------------- /test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomchop/malcom/HEAD/test_feeds.py --------------------------------------------------------------------------------