├── .gitignore ├── COPYING ├── Dockerfile ├── LICENSE ├── README.md ├── contributions.md ├── coreconfigure.py ├── dbattacks ├── __init__.py ├── cassattacks.py ├── couchattacks.py ├── hbaseattacks.py ├── libs │ ├── __init__.py │ └── dump.py ├── mongoattacks.py ├── postattacks.py ├── redisattacks.py └── utils.py ├── dictionary ├── b.txt ├── pass-only.txt ├── pass.txt └── test-small-dict.txt ├── dump ├── couch │ └── .test ├── mongo │ └── .test ├── redis │ └── localhost.rdb └── test.txt ├── installformac-kali.sh ├── logs └── screenshots │ ├── .sample │ └── 192.168.1.4.png ├── nosqlframework.py ├── payload ├── directory-list-2.3-small.txt ├── files_enum.txt ├── js_inject.txt ├── js_time.txt ├── payload_couch.txt ├── payload_mongo.txt └── test_web.txt ├── reqs └── macosx │ └── libdnet-1.12.tgz ├── requirements.txt ├── sniff ├── __init__.py ├── sniffcouch.py ├── sniffcouch.py~ ├── sniffmongo.py ├── sniffmongo.py~ ├── sniffmongo2.py ├── sniffredis.py └── sniffredis.py~ └── webattacks ├── __init__.py └── nosqlweb.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/README.md -------------------------------------------------------------------------------- /contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/contributions.md -------------------------------------------------------------------------------- /coreconfigure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/coreconfigure.py -------------------------------------------------------------------------------- /dbattacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/__init__.py -------------------------------------------------------------------------------- /dbattacks/cassattacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/cassattacks.py -------------------------------------------------------------------------------- /dbattacks/couchattacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/couchattacks.py -------------------------------------------------------------------------------- /dbattacks/hbaseattacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/hbaseattacks.py -------------------------------------------------------------------------------- /dbattacks/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/libs/__init__.py -------------------------------------------------------------------------------- /dbattacks/libs/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/libs/dump.py -------------------------------------------------------------------------------- /dbattacks/mongoattacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/mongoattacks.py -------------------------------------------------------------------------------- /dbattacks/postattacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/postattacks.py -------------------------------------------------------------------------------- /dbattacks/redisattacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/redisattacks.py -------------------------------------------------------------------------------- /dbattacks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dbattacks/utils.py -------------------------------------------------------------------------------- /dictionary/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dictionary/b.txt -------------------------------------------------------------------------------- /dictionary/pass-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dictionary/pass-only.txt -------------------------------------------------------------------------------- /dictionary/pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dictionary/pass.txt -------------------------------------------------------------------------------- /dictionary/test-small-dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/dictionary/test-small-dict.txt -------------------------------------------------------------------------------- /dump/couch/.test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dump/mongo/.test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dump/redis/localhost.rdb: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dump/test.txt: -------------------------------------------------------------------------------- 1 | Place Dump files to this location 2 | -------------------------------------------------------------------------------- /installformac-kali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/installformac-kali.sh -------------------------------------------------------------------------------- /logs/screenshots/.sample: -------------------------------------------------------------------------------- 1 | testlog 2 | -------------------------------------------------------------------------------- /logs/screenshots/192.168.1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/logs/screenshots/192.168.1.4.png -------------------------------------------------------------------------------- /nosqlframework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/nosqlframework.py -------------------------------------------------------------------------------- /payload/directory-list-2.3-small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/payload/directory-list-2.3-small.txt -------------------------------------------------------------------------------- /payload/files_enum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/payload/files_enum.txt -------------------------------------------------------------------------------- /payload/js_inject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/payload/js_inject.txt -------------------------------------------------------------------------------- /payload/js_time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/payload/js_time.txt -------------------------------------------------------------------------------- /payload/payload_couch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/payload/payload_couch.txt -------------------------------------------------------------------------------- /payload/payload_mongo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/payload/payload_mongo.txt -------------------------------------------------------------------------------- /payload/test_web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/payload/test_web.txt -------------------------------------------------------------------------------- /reqs/macosx/libdnet-1.12.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/reqs/macosx/libdnet-1.12.tgz -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/requirements.txt -------------------------------------------------------------------------------- /sniff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/sniff/__init__.py -------------------------------------------------------------------------------- /sniff/sniffcouch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/sniff/sniffcouch.py -------------------------------------------------------------------------------- /sniff/sniffcouch.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/sniff/sniffcouch.py~ -------------------------------------------------------------------------------- /sniff/sniffmongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/sniff/sniffmongo.py -------------------------------------------------------------------------------- /sniff/sniffmongo.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/sniff/sniffmongo.py~ -------------------------------------------------------------------------------- /sniff/sniffmongo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/sniff/sniffmongo2.py -------------------------------------------------------------------------------- /sniff/sniffredis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/sniff/sniffredis.py -------------------------------------------------------------------------------- /sniff/sniffredis.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/sniff/sniffredis.py~ -------------------------------------------------------------------------------- /webattacks/__init__.py: -------------------------------------------------------------------------------- 1 | import nosqlweb 2 | -------------------------------------------------------------------------------- /webattacks/nosqlweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torque59/Nosql-Exploitation-Framework/HEAD/webattacks/nosqlweb.py --------------------------------------------------------------------------------