Code Monkey home page Code Monkey logo

politoinc / egoalpha Goto Github PK

View Code? Open in Web Editor NEW
26.0 4.0 0.0 34.45 MB

EGO is a vulnerability scanner developed by chickenpwny at PolitoInc. It was created to provide a platform for hackers to store multiple projects in a REST API. Recognizing a need for such a tool, EGO was developed to utilize various open-source security tools and libraries to perform comprehensive reconnaissance scans.

Home Page: https://www.politoinc.com/

License: GNU General Public License v3.0

Python 81.90% CSS 1.99% HTML 15.79% JavaScript 0.06% Shell 0.25%
cve cybersecurity nmap nuclei python python3 scanner vulnerability-detection vulnerability-scanners

egoalpha's Introduction

EGO Vulnerability Scanner

EGO is a vulnerability scanner developed by chickenpwny at PolitoInc. It was created to provide a platform for hackers to store multiple projects in a REST API. Recognizing a need for such a tool, EGO was developed to utilize various open-source security tools and libraries to perform comprehensive reconnaissance scans.

Note: As this tool was developed by a single developer, it assumes a fair amount of technical knowledge and currently lacks documentation.

EGO provides a user-friendly GUI interface, eliminating the need for spreadsheets and files to record reconnaissance data. You can access the data using scripts or tools like Jupyter Notebook to interact with the database and identify vulnerabilities.

demo

improved

EGO also provides a REST API for reconnaissance agents to connect back to. This allows penetration testers to scan isolated networks and retrieve nmap logs using only the HTTP protocol.

Installation

  1. Install the required Python packages:
  2. Install Postgres and create a user named 'postgres'.
    sudo -i -u postgres psql
    CREATEUSER postgres;
    ALTER USER postgres WITH PASSWORD 'test';
    CREATE DATABASE test;
    \l -list
    \q
    
  3. In the settings.py file, change the DATABASES PASSWORD AND USER to the Postgres values.
  4. Install nmap:
    sudo apt-get install nmap
    
  5. Install nuclei: First we need to install go1.21 https://go.dev/doc/install
sudo apt-get update
wget https://go.dev/dl/go1.21.0.linux-amd64.tar.gz
sudo tar -xvf go1.21.0.linux-amd64.tar.gz
sudo mv go /usr/local
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
source ~/.profile

go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest

All settings and switches for the agents are controlled by the REST API. The agents find the REST API using /EGO_agent/EgoSettings.py.

Configuration

EgoAgentUser = "ego" EgoAgentPassWord = "password" HostAddress = "http://127.0.0.1" Port = "5000" api_accessKey = ""

Usage

To run EgoRecon.py:

python3 EgoRecon.py
vim /etc/systemd/system/EGORecon.service

[Unit]
Description=Interactsh
After=network.target

[Service]
Type=simple
User=root
UMask=007
ExecStart= python3 manage runserver 0.0.0.0:5000
Restart=on-failure

# Configures the time to wait before service is stopped forcefully.
TimeoutStopSec=300

[Install]
WantedBy=multi-user.target

To run the nuclei python wrapper:

python3 gnaw.py

To run the EGO custom web vulnerability scanner, mantis:

python3 mantis.py
pip3 install -r requirements.txt
pip3 install "censys==2.0.7; python_version > '3.8'" "censys==0.0.8; python_version <= '3.8'"

egoalpha's People

Contributors

chickenpwny avatar mallware avatar

Stargazers

 avatar unkn0wn_11 avatar  avatar farhan nadim pial avatar astral avatar the_nightmare_wolf avatar Aaron Meese avatar hirak0 avatar AVA avatar Steffen Gransow avatar Nasur Ullah avatar Vivaldo Chagas avatar Lav avatar Moshe Kaplan avatar  avatar  avatar Ali Shaterian avatar Pankaj Rawat avatar 13ug avatar Rafael  avatar Maxim Ausloos avatar  avatar dimey avatar socalledhacker avatar moo avatar  avatar

Watchers

 avatar  avatar unkn0wn_11 avatar  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.