Skip to content

Commit 9349dd9

Browse files
committed
Added in exclusions to the README file
1 parent 3ea8a3a commit 9349dd9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Dependencies will then be installed and Interlace will be added to your path as
1717
|------------|--------------------------------------------------------------------------------------------------------------|
1818
| -t | Specify a target or domain name either in comma-delimited format, CIDR notation, or as an individual host |
1919
| -tL | Specify a list of targets or domain names |
20+
| -e | Specify an exclusion either in comma-delimited format, CIDR notation, or as an individual host |
21+
| -eL | Specify a list of exclusions |
2022
| -threads | Specify the maximum number of threads to run at any one time (DEFAULT:5) |
2123
| -timeout | Specify a timeout value in seconds for any single thread (DEFAULT:600) |
2224
| -c | Specify a single command to execute over each target or domain |
@@ -136,6 +138,16 @@ vhostscan -t $target -oN _output_/_target_-vhosts.txt
136138
```
137139
This would output a file for each target in the specified output folder. You could also run multiple commands simply by adding them into the command file.
138140

141+
## Exclusions
142+
Interlace automatically excludes any hosts provided when specified via the `-e` or `-eL` arguments. These arguments are also compatible with the above-mentinoed range notations (CIDR, Glob, and dash)
143+
144+
To run a virtual host scan against every target within `192.168.12.0/24` despire targets within `192.168.12.0/26` using a direct command you could use:
145+
```bash
146+
interlace -t 192.168.12.0/24 -e 192.168.12.0/26 -c "vhostscan _target_ -oN _output_/_target_-vhosts.txt" -o ~/scans/ -threads 50
147+
```
148+
149+
150+
139151
# Authors and Thanks
140152
Originally written by Michael Skelton ([codingo](https://twitter.com/codingo_)) and Sajeeb Lohani ([sml555](https://twitter.com/sml555_)) with help from Charelle Collett ([@Charcol0x89](https://twitter.com/Charcol0x89)) for threading refactoring and overall approach, and Luke Stephens ([hakluke](https://twitter.com/hakluke)) for testing and approach.
141153

0 commit comments

Comments
 (0)