Giter VIP home page Giter VIP logo

blue's Introduction

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)

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 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  

Credits

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

blue's People

Contributors

0days avatar joshuamart avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.