Metadata-Version: 2.1
Name: autohack
Version: 0.13
Summary: This package does automated vulnerability enumeration and recommends exploits.
Home-page: https://github.com/sudouser2010/autohack
Author: "Hadron Davinci"
Project-URL: Bug Tracker, https://github.com/sudouser2010/autohack/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4==4.12.3
Requires-Dist: lxml==5.3.0
Requires-Dist: toml==0.10.2

# Auto Hack
* note the setup steps described here are being beta-tested.

## This package does automated vulnerability enumeration and recommends exploits.<br><br>

### How to Run on Non Kali-Linux Operating System (Recommended)
* Clone repo
* cd into repo
* Build image

    ```
    docker build -t autohack .
    ```
* Run as terminal inside container
  ```
  docker run -it autohack
  ```
  
* Run as terminal inside container and mount local folder called portal
  ```
  docker run -ti -v ${PWD}/portal:/root/portal autohack 
  ```

* Run AutoHack

  ```
  autohack -i <some ip address>
  ```
  
---  

### How to Run on Kali-Linux Operating System
* Install AutoHack Python Package

    ```
    pip install autohack
    ```
* Run AutoHack
  ```
  autohack -i <some ip address>
  ```
