Skip to content

Commit

Permalink
remove wordlists
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rckh committed Mar 12, 2022
1 parent ae0ec4a commit aa1dd29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ vaf_dev.exe
test
src/Vaf.exe
vaf
vaf.exe
vaf.exe
example_wordlists/
3 changes: 2 additions & 1 deletion src/vaf.nim
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ try:
if not ("[]" in url) and (requestMethod == "GET"):
log("error", "Please specify a fuzz area in the url, example: 'https://example.org/[]'")
quit(1)

if not (("[]" in postData) or ("[]" in url)) and (requestMethod == "POST"):
log("error", "Please specify a fuzz area in the post data or the url, example: '{\"username\": \"[]\"}' or 'https://example.org/[]'")
quit(1)
Expand Down Expand Up @@ -117,4 +118,4 @@ try:
except ShortCircuit as e:
if e.flag == "argparse_help":
echo p.help
quit(0)
quit(0)

0 comments on commit aa1dd29

Please sign in to comment.