All Projects → archival-0x → Doxbox

archival-0x / Doxbox

Licence: mit
web-based OSINT and reconaissance toolkit

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Doxbox

Hrshell
HRShell is an HTTPS/HTTP reverse shell built with flask. It is an advanced C2 server with many features & capabilities.
Stars: ✭ 193 (-4.46%)
Mutual labels:  flask, pentesting
Ok ip proxy pool
🍿爬虫代理IP池(proxy pool) python🍟一个还ok的IP代理池
Stars: ✭ 196 (-2.97%)
Mutual labels:  flask
Flango
A Django template for using Flask for the frontend, Django for the backend.
Stars: ✭ 188 (-6.93%)
Mutual labels:  flask
Quokka
LOOKING FOR NEW MAINTAINER - Quokka is a Content Management System - `docker run --rm -it -p 5000:5000 quokka/quokka`
Stars: ✭ 2,198 (+988.12%)
Mutual labels:  flask
Sentimentanalysis
Sentiment analysis neural network trained by fine-tuning BERT, ALBERT, or DistilBERT on the Stanford Sentiment Treebank.
Stars: ✭ 186 (-7.92%)
Mutual labels:  flask
Livetv mining
直播网站数据采集
Stars: ✭ 188 (-6.93%)
Mutual labels:  flask
Flask table
Because writing HTML is fiddly and all of your tables are basically the same
Stars: ✭ 187 (-7.43%)
Mutual labels:  flask
Fdsploit
File Inclusion & Directory Traversal fuzzing, enumeration & exploitation tool.
Stars: ✭ 199 (-1.49%)
Mutual labels:  pentesting
Mosint
An automated e-mail OSINT tool
Stars: ✭ 184 (-8.91%)
Mutual labels:  pentesting
Flask Dropzone
Upload file in Flask application with Dropzone.js
Stars: ✭ 191 (-5.45%)
Mutual labels:  flask
Delbot
It understands your voice commands, searches news and knowledge sources, and summarizes and reads out content to you.
Stars: ✭ 191 (-5.45%)
Mutual labels:  flask
Getjs
A tool to fastly get all javascript sources/files
Stars: ✭ 190 (-5.94%)
Mutual labels:  pentesting
Payjs faka
这个是基于payjs的发卡平台。
Stars: ✭ 194 (-3.96%)
Mutual labels:  flask
Betterbackdoor
A backdoor with a multitude of features.
Stars: ✭ 195 (-3.47%)
Mutual labels:  pentesting
Dns Persist
DNS-Persist is a post-exploitation agent which uses DNS for command and control.
Stars: ✭ 191 (-5.45%)
Mutual labels:  pentesting
Webmap
A Python tool used to automate the execution of the following tools : Nmap , Nikto and Dirsearch but also to automate the report generation during a Web Penetration Testing
Stars: ✭ 188 (-6.93%)
Mutual labels:  pentesting
Cintruder
Captcha Intruder (CIntrud3r) is an automatic pentesting tool to bypass captchas.
Stars: ✭ 192 (-4.95%)
Mutual labels:  pentesting
Hawkeye
Hawkeye filesystem analysis tool
Stars: ✭ 202 (+0%)
Mutual labels:  pentesting
Flask Rbac
Flask-RBAC
Stars: ✭ 198 (-1.98%)
Mutual labels:  flask
Bolt Python
A framework to build Slack apps using Python
Stars: ✭ 190 (-5.94%)
Mutual labels:  flask

doxbox

Build Status

OSINT and active reconaissance built into a web application

intro

doxbox is a web application for OSINT and active reconaissance. It leverages various security tools and library APIs in order to conduct info-gathering and threat modeling. Built on top of Flask, it is perfect for self-hosting an instance during auditing.

install

doxbox currently utilizes Python 2.7.x due to various dependency clashes and depreciation.

Docker:

$ docker build -t doxbox .
$ docker run -d -p 5000:5000 doxbox

Manual:

$ git clone https://github.com/ex0dus-0x/doxbox && cd doxbox
$ # Initialize virtualenv if you wish
$ pip install -r requirements.txt
$ python run.py

config

Open config.py. Here, you will see all the environmental variables that the application utilizes. Three important fields you MUST be aware of if you plan to deploy to the web.

GOOGLEMAPS_API_KEY = "YOUR_API_KEY_HERE"
SECRET_KEY = 'SECRET_KEY_HERE'

GOOGLEMAPS_API_KEY denotes the Google Maps API Key. This is essential for the GeoIP module. You can obtain it here and change the variable accordingly.

SECRET_KEY is the private key utilized by WTForm's CSRF protection feature. If deployed, change it to your liking.

modules

Dox

Comprehensive info-gathering database for target(s). Using this data, the tester will be able to effectively understand their target, which is a critical point in the attacker's kill chain.

  • Secure database support, with delete and export (as .csv) options

GeoIP

Collects geolocation information on public IP addresses, in order to gather data on physical location during the reconaissance stage of the killchain.

  • Google Maps for accurate GeoIP visualization
  • API endpoint support

DNS Enum

Collections DNS information in the form of metadata, whether it be an address from a WHOIS lookup, or nameservers.

contribute

Send a pull request if you feel that anything should be changed, removed, optimized, etc. Issues are also great for reporting bugs.

license

mit

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].