Skip to content

Commit

Permalink
Update scopeCheck.go
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhack-repo authored Mar 25, 2023
1 parent 74e7f38 commit e2ab31f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scopeCheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ func main() {
// open stdin as a scanner. That makes it super easy
// to deal with line-delimited input
sc := bufio.NewScanner(os.Stdin)
buf := make([]byte, 0, 64*1024)
sc.Buffer(buf, 1024*1024)
for sc.Scan() {
// send each line (a domain) on the jobs channel
jobs <- sc.Text()
Expand Down

0 comments on commit e2ab31f

Please sign in to comment.