1
mirror of https://github.com/jakejarvis/awesome-shodan-queries synced 2024-11-23 15:06:31 +01:00

PostgreSQL && OpenSSH

product:"PostgreSQL" "authentication failed" port:5432
product:"OpenSSH" "diffie-hellman-group1-sha1"
product:"OpenSSH" "3des-cbc"
product:"OpenSSH" version:"5.9,6.0,6.2"
This commit is contained in:
azuk4r 2024-09-28 12:41:10 +02:00 committed by GitHub
parent f6af17543b
commit d31751cfc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -322,6 +322,10 @@ Misconfigured or exposed instances lacking proper authentication.
"mysql" port:3306 -authentication
```
### Exposed PostgreSQL Databases [🔎 →](https://www.shodan.io/search?query=product%3A%22PostgreSQL%22+%22authentication+failed%22+port%3A5432)
```
product:"PostgreSQL" "authentication failed" port:5432
```
### Jenkins CI [🔎 →](https://www.shodan.io/search?query=%22X-Jenkins%22+%22Set-Cookie%3A+JSESSIONID%22+http.title%3A%22Dashboard%22)
@ -477,6 +481,25 @@ HP-ILO-4 !"HP-ILO-4/2.53" !"HP-ILO-4/2.54" !"HP-ILO-4/2.55" !"HP-ILO-4/2.60" !"H
```
---
## OpenSSH
### Servers Using Weak Diffie-Hellman Key Exchange [🔎 →](https://www.shodan.io/search?query=product%3A%22OpenSSH%22+%22diffie-hellman-group1-sha1%22)
```
product:"OpenSSH" "diffie-hellman-group1-sha1"
```
### Servers Using Deprecated Triple DES (3DES) Encryption [🔎 →](https://www.shodan.io/search?query=product%3A%22OpenSSH%22+%223des-cbc%22)
```
product:"OpenSSH" "3des-cbc"
```
### Servers Running Vulnerable OpenSSH Versions (5.9, 6.0, 6.2) [🔎 →](https://www.shodan.io/search?query=product%3A%22OpenSSH%22+version%3A%225.9%2C6.0%2C6.2%22)
```
product:"OpenSSH" version:"5.9,6.0,6.2"
```
---