Skip to content
/ Blue Public
forked from itsmenaga/Blue

Blue is a web-panel designed to make reconnaissance faster and easier accessible.

Notifications You must be signed in to change notification settings

netspooky/Blue

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blue

Blue is a web-panel designed to make reconnaissance faster and easier accessible. Blue currently supports:

  • Subdomain Enumeration
  • Google Dorking
  • Email Harvesting
  • Software Detection
  • Data Leak Lookup (via WeLeakInfo)

We were initially going to host this ourself, but we simply don't have the time or resources to do so. For that reason, we have removed certain features from the public open-source version (employee scraping, returning actual data in the leak lookups, etc) since we aren't going to be hosting it ourself and cannot monitor for any misuse of these functionalities. We refuse to be responsible for such things -- hence why we have removed these features from the public version.

We will still add new features, so if you have suggestions then let us know or send in a PR!

Disclaimer

Blue has been designed for use against targets you are AUTHORIZED to test against. The authors of Blue are not responsible for any individual or group using this tool for reconnaissance for illegal activity.

Blue


To use email harvesting, you must add your Hunter.io API key in /app/home/routes.py on line 179.

If python -V return python2.X:

apt install python3-venv
python3 -m venv venv
source venv/bin/activate

Setup (with SQLite database)

Note that a postgres client is required to install psycopg2 regardless of configuration.

Clone this repository:

git clone https://github.com/0days/Blue

Install requirements:

pip install -r requirements.txt

Export and run:

export FLASK_APP=blue.py  (nix)  
set FLASK_APP=blue.py  (windows)  
flask run --host=0.0.0.0  

Setup (with PostgreSQL database - Ubuntu)

Clone this repository:

git clone https://github.com/0days/Blue

Install postgres and postgres clients

sudo apt-get install postgresql libpq-dev postgresql-client postgresql-client-common

Install nodejs

sudo apt-get install nodejs

Install requirements:

pip install -r requirements.txt

Setup your PostgreSQL database

sudo apt-get update  
sudo apt-get install -y postgresql libpq-dev  
sudo -u postgres psql -c "CREATE DATABASE blue;"  
sudo -u postgres psql -c "CREATE USER blue WITH PASSWORD 'your-password';"  
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE blue TO blue;"  

Export and run

export BLUE_CONFIG_MODE=Production  
export BLUE_DATABASE_PASSWORD=your-password  
export FLASK_APP=blue.py    
flask run --host=0.0.0.0  

Key config

Some API keys are required for this to run. Include your hunter.io API key within app/home/routes.py

In the future these should be included in a config file.


Credits

Daley Bee - https://twitter.com/daley
Dominik Penner - https://twitter.com/zer0pwn
Jake Bolam - https://twitter.com/jake_sec

About

Blue is a web-panel designed to make reconnaissance faster and easier accessible.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 46.3%
  • JavaScript 32.5%
  • Python 11.4%
  • HTML 9.8%