Skip to content

Commit 58cb99d

Browse files
committed
Update readme
1 parent ac6a99e commit 58cb99d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Subdominator.exe -d sub.example.com
3333
-t, --threads <threads> Number of domains to check at once [default: 50]
3434
-v, --verbose Print extra information
3535
-eu, --exclude-unlikely Exclude unlikely (edge-case) fingerprints
36-
-c, --csv <csv> Heading to parse for CSV file. Forces -l to read as CSV instead of line-delimited
36+
-c, --csv <csv> Column index or heading to parse for CSV file. Forces -l to read as CSV instead of line-delimited
3737
--validate Validate the takeovers are exploitable (where possible)
3838
--version Show version information
3939
-?, -h, --help Show help and usage information

Subdominator/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static async Task Main(string[] args)
2525
var optionThreads = new Option<int>(new[] { "-t", "--threads" }, () => 50, "Number of domains to check at once");
2626
var optionVerbose = new Option<bool>(new[] { "-v", "--verbose" }, "Print extra information");
2727
var optionExcludeUnlikely = new Option<bool>(new[] { "-eu", "--exclude-unlikely" }, "Exclude unlikely (edge-case) fingerprints");
28-
var optionCsv = new Option<string>(new[] { "-c", "--csv" }, "Heading or column number to parse for CSV file. Forces -l to read as CSV instead of line-delimited");
28+
var optionCsv = new Option<string>(new[] { "-c", "--csv" }, "Heading or column index to parse for CSV file. Forces -l to read as CSV instead of line-delimited");
2929
var optionValidate = new Option<bool>(new[] { "--validate" }, "Validate the takeovers are exploitable (where possible)");
3030

3131
rootCommand.AddOption(optionDomain);

0 commit comments

Comments
 (0)