Metadata-Version: 2.1
Name: pentest-helper
Version: 0.0.1
Summary: Help init and run basic commands during a pentest assessment
Home-page: https://github.com/nazime/pentest_helper
Author: Nazime LAKEHAL
Author-email: nazime.lkh@gmail.com
Maintainer: Nazime LAKEHAL
Maintainer-email: nazime.lkh@gmail.com
License: MIT
Project-URL: Documentation, https://pentest_helper.readthedocs.org/
Project-URL: Bug Tracker, https://github.com/nazime/pentest_helper/issues
Project-URL: Source Code, https://github.com/nazime/pentest_helper
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: koalak
Provides-Extra: dev
Requires-Dist: coverage ; extra == 'dev'
Requires-Dist: hypothesis ; extra == 'dev'
Requires-Dist: pytest (>=4.3.0) ; extra == 'dev'
Requires-Dist: mkdocs ; extra == 'dev'
Requires-Dist: pre-commit ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocs ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: coverage ; extra == 'tests'
Requires-Dist: hypothesis ; extra == 'tests'
Requires-Dist: pytest (>=4.3.0) ; extra == 'tests'
Provides-Extra: travis
Requires-Dist: coverage ; extra == 'travis'
Requires-Dist: hypothesis ; extra == 'travis'
Requires-Dist: pytest (>=4.3.0) ; extra == 'travis'
Requires-Dist: mkdocs ; extra == 'travis'
Requires-Dist: pre-commit ; extra == 'travis'
Requires-Dist: tox ; extra == 'travis'
Requires-Dist: codecov ; extra == 'travis'

# pentest_helper
Quick scripts that helps me during a pentest assessment and OSCP exams to initiate
folder structure and running basic commands like nmap.

## Instalation

```bash
pipx install pentest_helper
```

## Usage

### Initiating folder structure

```bash
# Create a new mission structure
pentest_helper init oscp_boxes --hosts 1.1.1.1 2.2.2.2

# Showing the created structure
tree oscp_boxes/
oscp_boxes/
├── cmd_outputs
├── custom_rockyou.txt
├── exclude_scope.txt
├── hosts
│   ├── 1.1.1.1
│   │   ├── loots
│   │   ├── ntlm_hashes.txt
│   │   ├── passwords.txt
│   │   ├── scans
│   │   │   └── nmap
│   │   ├── userntlmhashes.txt
│   │   ├── userpass.txt
│   │   ├── users.txt
│   │   └── wordlist.txt
│   └── 2.2.2.2
│       ├── loots
│       ├── ntlm_hashes.txt
│       ├── passwords.txt
│       ├── scans
│       │   └── nmap
│       ├── userntlmhashes.txt
│       ├── userpass.txt
│       ├── users.txt
│       └── wordlist.txt
├── ip
│   └── all.ip.txt
├── loots
├── notes.md
├── ntlm_hashes.txt
├── passwords.txt
├── scans
│   └── nmap
├── scope.txt
├── screenshots
├── userntlmhashes.txt
├── userpass.txt
├── users.txt
└── wordlist.txt

15 directories, 23 files


# Adding a new host
cd oscp_boxes
pentest_helper init_host 3.3.3.3

# Show new structure
tree

├── cmd_outputs
├── custom_rockyou.txt
├── exclude_scope.txt
├── hosts
│   ├── 1.1.1.1
│   │   ├── loots
│   │   ├── ntlm_hashes.txt
│   │   ├── passwords.txt
│   │   ├── scans
│   │   │   └── nmap
│   │   ├── userntlmhashes.txt
│   │   ├── userpass.txt
│   │   ├── users.txt
│   │   └── wordlist.txt
│   ├── 2.2.2.2
│   │   ├── loots
│   │   ├── ntlm_hashes.txt
│   │   ├── passwords.txt
│   │   ├── scans
│   │   │   └── nmap
│   │   ├── userntlmhashes.txt
│   │   ├── userpass.txt
│   │   ├── users.txt
│   │   └── wordlist.txt
│   └── 3.3.3.3
│       ├── loots
│       ├── ntlm_hashes.txt
│       ├── passwords.txt
│       ├── scans
│       │   └── nmap
│       ├── userntlmhashes.txt
│       ├── userpass.txt
│       ├── users.txt
│       └── wordlist.txt
├── ip
│   └── all.ip.txt
├── loots
├── notes.md
├── ntlm_hashes.txt
├── passwords.txt
├── scans
│   └── nmap
├── scope.txt
├── screenshots
├── userntlmhashes.txt
├── userpass.txt
├── users.txt
└── wordlist.txt

19 directories, 29 files
```



