Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simulator: add spearphishing, skimmer, alt dns, tor dns simulations #54

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Next Next commit
simulator: add spearphishing, skimmer, alt dns, tor dns simulations
  • Loading branch information
kmroz committed Nov 15, 2021
commit 0ac8e76c27edb5c1256b0d6a0f861d5406cde9bb
32 changes: 32 additions & 0 deletions cmd/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,38 @@ var allModules = []Module{
HeaderMsg: "Preparing a random sample of C2 IP:port pairs",
Timeout: 1 * time.Second,
},
Module{
Module: simulator.CreateModule(wisdom.NewWisdomHosts("spearphishing", wisdom.HostTypeDNS), new(simulator.DNSResolveSimulator)),
Name: "spearphishing",
Pipeline: PipelineDNS,
NumOfHosts: 5,
HeaderMsg: "Preparing a random sample of spear phishing domains",
Timeout: 1 * time.Second,
},
Module{
Module: simulator.CreateModule(wisdom.NewWisdomHosts("skimmer", wisdom.HostTypeDNS), new(simulator.DNSResolveSimulator)),
Name: "skimmer",
Pipeline: PipelineDNS,
NumOfHosts: 5,
HeaderMsg: "Preparing a random sample of web skimming domains",
Timeout: 1 * time.Second,
},
Module{
Module: simulator.CreateModule(wisdom.NewWisdomHosts("alt_dns", wisdom.HostTypeDNS), new(simulator.DNSResolveSimulator)),
Name: "alt-dns",
Pipeline: PipelineDNS,
NumOfHosts: 5,
HeaderMsg: "Preparing a random sample of alternate DNS root domains",
Timeout: 1 * time.Second,
},
Module{
Module: simulator.CreateModule(wisdom.NewWisdomHosts("tor_dns", wisdom.HostTypeDNS), new(simulator.DNSResolveSimulator)),
Name: "tor-dns",
Pipeline: PipelineDNS,
NumOfHosts: 5,
HeaderMsg: "Preparing a random sample of suspicious Tor DNS domains",
Timeout: 1 * time.Second,
},
Module{
Module: simulator.NewDGA(),
Name: "dga",
Expand Down