Code Monkey home page Code Monkey logo

burnrecon's Introduction

BurnRecon

Licence Python MongoDB Docker


Description

BurnRecon is a tool to automate and organize reconnaissance operations.

Built with โค๏ธ and:


Instalation

Run with docker: recommended ๐Ÿบ

git clone https://github.com/mswell/burnrecon.git
docker-compose up -d

If run without docker

Requirement: python 3.7 or higher

git clone https://github.com/mswell/burnrecon.git
cd burnrecon
./install_hacktools.sh
pip3 install -r requirements.txt

Requirement: docker and docker-compose

If you use a local instance mongodb, use docker-compose to start your local mongoDB.

docker-compose up -d mongo

Settings

If you use docker-compose to run burnrecon, your settings for DB connection are in the file docker-compose.yml,

version: '3.1'

services:
  app:
    build:
      context: .
      dockerfile: Dockerfile
    stdin_open: true
    tty: true
    depends_on:
      - mongo
    environment:
      DYNACONF_MONGO_INITDB_ROOT_USERNAME: 'root'
      DYNACONF_MONGO_INITDB_ROOT_PASSWORD: 'toor'
      DYNACONF_MONGO_DB_ADDRESS: 'mongo'
    networks:
      - backend

For tokens I recommended to use .secrets.yml.

You need to set your config in settings file.

[database]
address = 'localhost'

You need to set your secrets in the secrets file.

MONGO_DB_USER = 'root'
MONGO_DB_PASS = 'toor'
DISCORD_TOKEN = ''

Please remember to mv .secrets_example.toml to .secrets.toml


Usage

To use local cli see cli wiki

To use docker see docker wiki

Development

Read the CONTRIBUTING.md file.

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.