Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
diff --git a/README.md b/README.md
index b4a7ee5..3155574 100644
--- a/README.md
+++ b/README.md
@@ -1,68 +1,112 @@
-  
-# Beelzebub
-[](https://postimg.cc/yWfPNqH7)
+# Beelzebub: A Highly Secure Honeypot Framework with Low Code and Virtualization using GPT-3
-A secure honeypot framework low code, extremely easy to configure by yaml ๐
+[](https://github.com/mariocandela/beelzebub/actions/workflows/ci.yml) [](https://github.com/mariocandela/beelzebub/actions/workflows/docker-image.yml) [](https://github.com/mariocandela/beelzebub/actions/workflows/codeql.yml)
-## OpenAI GPT integration
-How to integrate with OpenAI GPT-3: [`Medium Article`](https://medium.com/@mario.candela.personal/how-to-build-a-highly-effective-honeypot-with-beelzebub-and-chatgpt-a2f0f05b3e1)
+## Overview
+
+Beelzebub is an advanced honeypot framework designed to provide a highly secure environment for detecting and analyzing cyber attacks. It offers a low code approach for easy implementation and utilizes virtualization techniques powered by GPT-3, the OpenAI language model.
+
+
+
+## OpenAI GPT Integration
+
+Learn how to integrate Beelzebub with OpenAI GPT-3 by referring to our comprehensive guide on Medium: [Medium Article](https://medium.com/@mario.candela.personal/how-to-build-a-highly-effective-honeypot-with-beelzebub-and-chatgpt-a2f0f05b3e1)
+
+For a visual representation of the integration, you can explore the following diagram:
[](https://static.swimlanes.io/24d6634a381aa8eb0decf5bac7ae214d.png)
-## Telegram bot realtime attacks
+## Telegram Bot for Real-Time Attacks
- bot: [`telegram channel`](https://t.me/beelzebubhoneypot)
+Stay updated on real-time attacks by joining our dedicated Telegram channel: [Telegram Channel](https://t.me/beelzebubhoneypot)
-## Examples
+## Examples
-[`mariocandela/beelzebub-example`](https://github.com/mariocandela/beelzebub-example)
+To better understand the capabilities of Beelzebub, you can explore our example repository: [mariocandela/beelzebub-example](https://github.com/mariocandela/beelzebub-example)
## Quick Start
-Using [`docker-compose`](https://docs.docker.com/compose/)
+We provide two quick start options for build and run Beelzebub: using Docker Compose or the Go compiler.
-```bash
-$ docker-compose build
-$ docker-compose up -d
- ```
+### Using Docker Compose
-Using [`go compiler`](https://go.dev/doc/install)
+1. Build the Docker images:
-```bash
-$ go mod download
-$ go build
-$ ./beelzebub
- ```
+ ```bash
+ $ docker-compose build
+ ```
-### Unit Test:
+2. Start Beelzebub in detached mode:
+
+ ```bash
+ $ docker-compose up -d
+ ```
+
+### Using Go Compiler
+
+1. Download the necessary Go modules:
+
+ ```bash
+ $ go mod download
+ ```
+
+2. Build the Beelzebub executable:
+
+ ```bash
+ $ go build
+ ```
+
+3. Run Beelzebub:
+
+ ```bash
+ $ ./beelzebub
+ ```
+
+## Testing
+
+We provide two types of tests: unit tests and integration tests.
+
+### Unit Tests
+
+To run unit tests:
```bash
$ make test.unit
- ```
+```
-### Integration test:
+### Integration Tests
+
+To run integration tests:
-Run integration testing
```bash
$ make test.integration
- ```
+```
+## Key Features
-## Features
+Beelzebub offers a wide range of features to enhance your honeypot environment:
-- OpenAPI ChatBot GPT-3 Linux virtualization
+- OpenAPI ChatBot GPT-3 Linux virtualization
- SSH Honeypot
- HTTP Honeypot
- TCP Honeypot
-- Prometheus openmetrics
-- Docker
+- Prometheus openmetrics integration
+- Docker integration
- RabbitMQ integration
-## Example configuration service
+## Example Configuration
-The configurations are inside the /configurations/services directory, just add a new file for each service/port.
+Beelzebub allows easy configuration for different services and ports. Simply create a new file for each service/port within the `/configurations/services` directory.
-### Example HTTP Honeypot on 80 port
+To execute Beelzebub with your custom path, use the following command:
+
+```bash
+$ ./beelzebub --confCore ./configurations/beelzebub.yaml --confServices ./configurations/services/
+```
+
+Here are some example configurations for different honeypot scenarios:
+
+#### Example HTTP Honeypot on Port 80
###### http-80.yaml
@@ -72,26 +116,62 @@ protocol: "http"
address: ":80"
description: "Wordpress 6.0"
commands:
- - regex: "index.php"
- handler: ""
+ - regex: "^(/index.php|/index.html|/)$"
+ handler:
+
+
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!