docs: ✏️ minor doc update to v0.1.1

This commit is contained in:
Grey_D
2023-04-09 01:29:29 +08:00
parent 797370edac
commit 9704aa2b3a
2 changed files with 5 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
# PentestGPT
v0.1.1, 09/04/2023
## Introduction
**PentestGPT** is a penetration testing tool empowered by **ChatGPT**. It is designed to automate the penetration testing process. It is built on top of ChatGPT and operate in an interactive mode to guide penetration testers in both overall progress and specific operations.
@@ -13,7 +14,9 @@ The project is still in its early stage. Feel free to raise any issues when usin
## Examples
1. To start, run `python3 main.py`.
1. Configure the keys in `config.py`. You may follow a sample by `cp config/chatgpt_config_sample.py. config/chatgpt_config.py`.
2. To start, run `python3 main.py`.
3. The tool works similar to *msfconsole*. Follow the guidance to perform penetration testing.
## Development
- [ ] Add chunk processing

View File

@@ -37,7 +37,7 @@ if __name__ == "__main__":
text = chatGPTAgent.send_message(task_prompt_2, conversation_id)
# load the documentation
with open("outputs/container_api.json", "r") as f:
with open("../outputs/container_api.json", "r") as f:
container_api = json.load(f)
for key, value in container_api.items():
if key == "title":