Latest Change 11/1/2016:
+ nosqlmap.py : Added web connectivity debugging output & Fixed crash setting options.
NoSQLMap is an open source Python tool designed to audit for as well as automate injection attacks and exploit default configuration weaknesses in NoSQL databases as well as web applications using NoSQL in order to disclose data from the database.
It is named as a tribute to Bernardo Damele and Miroslav’s Stampar’s popular SQL injection tool sqlmap, and its concepts are based on and extensions of Ming Chow’s excellent presentation at Defcon 21, “Abusing NoSQL Databases”. Presently the tool’s exploits are focused around MongoDB, but additional support for other NoSQL based platforms such as CouchDB, Redis, and Cassandra are planned in future releases.
Requirements
On a Debian or Red Hat based system, the setup.sh script may be run as root to automate the installation of NoSQLMap’s dependencies.
Varies based on features used:
+ Metasploit Framework
+ MongoDB
+ Python with PyMongo
+ httplib2
+ and urllib available.
Features:
– Automated MongoDB and CouchDB database enumeration and cloning attacks.
– Extraction of database names, users, and password hashes through MongoDB web applications.
– Scanning subnets or IP lists for MongoDB and CouchDB databases with default access and enumerating versions.
– Dictionary and brute force password cracking of recovered MongoDB and CouchDB hashes.
– PHP application parameter injection attacks against MongoClient to return all database records.
– Javascript function variable escaping and arbitrary code injection to return all database records.
– Timing based attacks similar to blind SQL injection to validate Javascript injection vulnerabilities with no feedback from the application.
Installation using git:
git clone https://github.com/tcstool/NoSQLMap && cd NoSQLMap python setup.py Debian/Ubuntu/Kali: Makesure all dependency has been install like Metasploit Framework & MongoDB. apt-get install mongodb (make sure you have privileges access/root user) sudo apt-get install python-pbkdf2 (don't use pip, error because letter & upper case PBKDF2) sudo apt-get install python-httplib2 sudo apt-get install python-ipcalc sudo apt-get install python-couchdb sudo apt-get install python-pymongo then run ./nosqlmap.py Update cd NoSQLMap git pull
Source : http://www.nosqlmap.net | Our post Before