-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new example configuration files
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
scope: | ||
domains: # domain names to be in scope | ||
- example.com | ||
ips: # IP addresses to be in scope, multiple methods of inserting ip addresses can be used | ||
- 192.0.2.1 | ||
- 192.0.2.2 | ||
- 192.168.0.3-8 | ||
- 192.168.0.10-192.168.0.20 | ||
asns: # ASNs that are to be in scope | ||
- 1234 | ||
- 5678 | ||
cidrs: # CIDR ranges that are to be in scope | ||
- 192.0.2.0/24 | ||
- 192.0.2.128/25 | ||
ports: # ports to be used when actively reaching a service | ||
- 80 | ||
- 443 | ||
blacklist: # subdomains to be blacklisted | ||
- example.example1.com | ||
options: | ||
resolvers: | ||
- "../examples/resolvers.txt" # array of 1 path or multiple IPs to use as a resolver | ||
- 76.76.19.19 | ||
datasources: "./datasources.yaml" # the file path that will point to the data source configuration | ||
wordlist: # global wordlist(s) to uses | ||
- "./wordlists/deepmagic.com_top50kprefixes.txt" | ||
- "./wordlists/deepmagic.com_top500prefixes.txt" | ||
database: "postgres://username:password@localhost:5432/database?testing=works" # databases URI to be used when adding entries | ||
bruteforce: # specific option to use when brute forcing is needed | ||
enabled: true | ||
wordlists: # wordlist(s) to use that are specific to brute forcing | ||
- "./wordlists/subdomains-top1mil-5000.txt" | ||
alterations: # specific option to use when brute forcing is needed | ||
enabled: true | ||
wordlists: # wordlist(s) to use that are specific to alterations | ||
- "./wordlists/subdomains-top1mil-110000.txt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
datasources: | ||
- name: MyDataSource1 | ||
ttl: 3600 | ||
creds: | ||
Account1: | ||
username: username1 | ||
password: password1 | ||
apikey: apikey1 | ||
secret: secret1 | ||
Account2: | ||
username: username2 | ||
password: password2 | ||
apikey: apikey2 | ||
secret: secret2 | ||
- name: MyDataSource2 | ||
ttl: 7200 | ||
creds: | ||
Account1: | ||
username: username3 | ||
password: password3 | ||
apikey: apikey3 | ||
secret: secret3 | ||
Account2: | ||
username: username4 | ||
password: password4 | ||
apikey: apikey4 | ||
secret: secret4 | ||
|
||
# this is the global options that will be considered. For example, minimum_ttl would be a global option used to compare | ||
# the minimum_ttl to the other datasources ttl. | ||
global_options: | ||
minimum_ttl: 12345 |