Skip to content

Commit 4906aac

Browse files
committed
Fix blacklist conflict
1 parent ab127f2 commit 4906aac

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

burstui

5.01 MB
Binary file not shown.

scan.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func (m model) startScan() (tea.Model, tea.Cmd) {
7878
m.logs = append(m.logs, "Could not count wordlist entries: "+wordCountErr.Error())
7979
}
8080

81-
args := []string{m.modeOptions[m.modeIndex], "-u", target, "-w", wordlistPath, "-s", statusCodes, "-t", threads}
81+
args := []string{m.modeOptions[m.modeIndex], "-u", target, "-w", wordlistPath, "-s", statusCodes, "-t", threads, "--status-codes-blacklist="}
8282
if m.modeOptions[m.modeIndex] == modeVhost {
8383
args = []string{m.modeOptions[m.modeIndex], "-u", target, "-w", wordlistPath, "-t", threads, "-xs", statusCodes, "--append-domain"}
8484
}

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package main
22

3-
var version = "v0.1.4"
3+
var version = "v0.1.5"
44
var commit = "none"
55
var commitDate = "unknown"

0 commit comments

Comments
 (0)