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
Description: # 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
        ```
        
        
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
Provides-Extra: docs
Provides-Extra: tests
Provides-Extra: dev
Provides-Extra: travis
