Giter Site home page Giter Site logo

dprcn's Introduction

๐Ÿ”ฌ dprcn

dpcrn aka dope recon is a module-oriented recon tool.

Why another recon tool

This started as a refactor of my existing recon-all-things script, which was cluttered and unexplicably unflexible. In the process of learning new things and / or having new ideas, I wanted something easy so I could quickly introduce new workflows or modifying the ones which are no longer useful. By creating this, things look a little more managable. Think of it as an orchestrator, if you will.

How it works

This is a module-oriented tool, which means it relies on two things:

  • external modules
  • a config file which dictates how those modules interact with one another (modules.json)

External modules

This can be pretty much anything.

Understanding modules.json

The modules.json file is used to describe a series of actions which when put together, result in a workflow as presented below:

{
    "setup":  {
        "should_run": "True",
        "modules":[
            {
                "description": "Initial setup",
                "should_run": true, 
                "instructions": [
                  "rm -rf {directory}",
                  "mkdir -p {directory}"
                ]
            }
    ]},
    "subdomains": {
        "should_run": true,
        "modules":[
            {
              "description": "Extract subdomains from crt.sh",
              "should_run": true, 
              "instructions": [
                  "curl -s https://crt.sh/?q=%25.{domain}\\&output=json",
                  "jq -r '.[].name_value'",
                  "grep -v '*' >> {directory}/domains/crtsh.subdomains"
                ]
            }
    ]}
    ...

Notice that both {domain} and {directory} are reserved words that get replaced by the actual values in runtime.

Should I use this?

Probably not. However, I would love to see some contributions. At the beginning, this was meant to be exclusive personal toy because I enjoy writing my own tools and adapt it to my very own needs. If, for whatever reason, you decide to give a go but think it sucks, feel free to fork it or replace it entirely for something better and let me know. I gladly use your version instead :)

dprcn's People

Contributors

hatecomputers avatar ryleysill93 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.