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
Prev Previous commit
simulator: drop alt-dns and tor-dns simulations for now
  • Loading branch information
kmroz committed Nov 15, 2021
commit b2d430dd132600effde80f09181ed30f34daad0e
16 changes: 0 additions & 16 deletions cmd/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,22 +206,6 @@ var allModules = []Module{
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