Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
add pescan yall 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Aug 20, 2018
1 parent e670173 commit 00ac8b5
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .release/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.3.14
v0.3.15
4 changes: 2 additions & 2 deletions config/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#######################################################################

title = "Malice Runtime Configuration"
version = "v0.3.14"
version = "v0.3.15"

[author]
name = "blacktop"
Expand Down
83 changes: 83 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
version: "3"

services:
avg:
image: malice/avg
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
bitdefender:
image: malice/bitdefender
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
clamav:
image: malice/clamav
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
comodo:
image: malice/comodo
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
fprot:
image: malice/fprot
links:
- rethink
command: -t befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
volumes:
- ../data/samples:/malware:ro
networks:
- malice
# ELK
elk:
image: blacktop/elk
ports:
- "9200:9200"
- "80:80"
networks:
- malice
# LOGSTASH
logstash:
build: ./logstash
links:
- rethink
- elk:elasticsearch
networks:
- malice
# RETHINKDB
rethink:
container_name: rethink
image: rethinkdb
ports:
- "28015:28015"
- "8081:8080"
volumes:
- malice:/data
networks:
- malice

volumes:
? malice
? es_data

networks:
malice:
driver: bridge
4 changes: 2 additions & 2 deletions plugins/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions plugins/plugins.toml
Original file line number Diff line number Diff line change
Expand Up @@ -231,14 +231,15 @@ title = "Malice Plugin Configurations"
env = ["MALICE_TIMEOUT"]

[[plugin]]
enabled = false
name = "exe"
enabled = true
name = "pescan"
description = "PE - tool to triage portable executables"
category = "exe"
image = "malice/exe"
repository = "https://github.com/malice-plugins/exe.git"
image = "malice/pescan"
repository = "https://github.com/malice-plugins/pescan.git"
build = false
mime = "application/x-dosexec"
cmd = "scan"
env = ["MALICE_TIMEOUT"]

[[plugin]]
Expand Down

0 comments on commit 00ac8b5

Please sign in to comment.