Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
akash0x53 committed Nov 21, 2014
1 parent af24dee commit 23e1f97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nosqlmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ def errorTest (errorCheck,testNum):
return True

else:
possAddrs.appends(str(postData))
possAddrs.append(str(postData))
return True
else:
return False
Expand Down Expand Up @@ -1151,7 +1151,7 @@ def checkResult(baseSize,respSize,testNum):
vulnAddrs.append(str(neDict))

elif testNum == 2:
vulnAddrs.apped(str(gtDict))
vulnAddrs.append(str(gtDict))
else:
vulnAddrs.append(str(postData))

Expand Down Expand Up @@ -1192,7 +1192,7 @@ def checkResult(baseSize,respSize,testNum):
else:
print "Possible injection."
if httpMethod == "GET":
possAddrs.appends(uriArray[testNum])
possAddrs.append(uriArray[testNum])
else:
if testNum == 1:
possAddrs.append(str(neDict))
Expand Down

0 comments on commit 23e1f97

Please sign in to comment.