Skip to content

Commit

Permalink
Fixed lagging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pelaohxc committed Jul 15, 2020
1 parent ed08fc2 commit 3bd8a84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# postMessageFinder v1.2.1 release
# postMessageFinder v1.2.3 release

by [@xpl0ited1](https://www.twitter.com/xploited1)

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ func fetchURL(url string, headers arrayFlags) ([]byte, error) {
req.Header.Add(h[0], h[1])
}

fmt.Printf("[+] Checking %s\n", url)
resp, err := http.DefaultClient.Do(req)
if err != nil{
return nil, err
Expand All @@ -76,6 +75,7 @@ func fetchURL(url string, headers arrayFlags) ([]byte, error) {
}

func checkPostMessage(bytes []byte, url string){
fmt.Printf("[+] Checking %s\n", url)
body := string(bytes)
lbody := strings.ToLower(body)
abody := strings.Split(lbody, "\n")
Expand Down

0 comments on commit 3bd8a84

Please sign in to comment.