nosqli
nosqli copied to clipboard
Using JSON data
I'm trying to scan an endpoint that expects JSON data. Not quite sure on how to pass this to NoSQLi. Currently doing the following:
./nosqli_macos_v0.5.4 scan -t http://localhost:3000/readsWithoutJs -d "{"name": "Bram"}"
But this does not seem to work. Is this possible?
I'm very late to this, but this is a problem with your command, not the tool.
You need to enclose the json payload in '
instead of "
.
Might help future individuals i guess.