Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xkoda/pwnd-gpt
AI assisted incident response for any cyber issue. Clear malware, patch networks, isolate machines, perform active defence with guided terminal commands.
https://github.com/0xkoda/pwnd-gpt
ai cybersecurity gpt incident-response
Last synced: 9 days ago
JSON representation
AI assisted incident response for any cyber issue. Clear malware, patch networks, isolate machines, perform active defence with guided terminal commands.
- Host: GitHub
- URL: https://github.com/0xkoda/pwnd-gpt
- Owner: 0xKoda
- License: mit
- Created: 2023-05-04T03:37:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-17T22:04:08.000Z (about 1 year ago)
- Last Synced: 2023-10-17T23:22:13.939Z (about 1 year ago)
- Topics: ai, cybersecurity, gpt, incident-response
- Language: Rust
- Homepage:
- Size: 219 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pwnd-GPT
A CLI tool built with Rust that guides users through cybersecurity incident response using GPT-3.5-turbo powered assistance. Simply describe the incident, and recieve an incident response plan along with terminal commands and steps enabling faster incident response campaigns and active defence.
## Table of Contents
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)## Features
- Get step-by-step guidance on handling cybersecurity incidents.
- Interacts with OpenAI GPT-3.5 for advanced assistance.
- Identify and clear threats using command line tooling.*Note: Always check results for accuracy. GPT-4 may be used in due time to improve accuracy.*
## Installation
1. Ensure you have Rust and Cargo installed on your system. If not, follow the [official installation guide](https://www.rust-lang.org/tools/install).
2. Clone the repository:
```bash
git clone https://github.com/0xKoda/pwnd-GPT.git
```3. Change to the project directory:
```
cd pwnd-GPT
```4. Build the project
```
cargo build --release
```5. Add compiled binary to path
```
export PATH=$PATH:/path/to/pwnd-GPT/target/release
```## Usage
1. Set the OPENAI_API_KEY environment variable with your OpenAI API key:```
export OPENAI_API_KEY="your-api-key-here"
```
2. Run the CLI tool:```
pwnd-GPT
```Note: Input the issue you are having, if it is a malware infection, input "malware infection".
Be sure to input any tools you might have installed to assist with the incident response.
Chat GPT will guide you through the process.## Contributing
Contributions are welcome! Please feel free to submit a pull request or open an issue on the project's GitHub repository.## License
This project is licensed under the MIT License.