We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cd9311 + 44a22f5 commit e9d0506Copy full SHA for e9d0506
1 file changed
nosqlmap.py
@@ -247,6 +247,9 @@ def options():
247
248
elif select == "3":
249
uri = raw_input("Enter URI Path (Press enter for no URI): ")
250
+ #Ensuring the URI path always starts with / and causes less errors
251
+ if uri[0] != "/":
252
+ uri = "/" + uri
253
print "\nURI Path set to " + uri + "\n"
254
optionSet[2] = True
255
0 commit comments