Skip to content

Commit dcb77f0

Browse files
committed
915: add expandable code blocks; devices-using-commonly-exploited-ports
1 parent 0b30fdd commit dcb77f0

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

docs/reports/dbb-cookbook/devices-using-commonly-exploited-ports.mdx

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,18 @@ sidebar_position: 24
55

66
Devices using these commonly exploited ports:   20, 21, 22, 23, 25, 53, 80, 139, 443, 445, 1433, 1434, 3306, 3389, 8080.
77

8-
```sql
9-
select
10-
     ds.device_name
11-
     ,ds.device_type
12-
     ,ds.insecure_port_other_device
13-
from view_dbb_security_v2 ds
14-
where ds.insecure_port_other_device is not null
15-
order by ds.device_name
16-
```
8+
<details>
9+
<summary>Click to expand the code block</summary>
10+
```sql
11+
select
12+
     ds.device_name
13+
     ,ds.device_type
14+
     ,ds.insecure_port_other_device
15+
from view_dbb_security_v2 ds
16+
where ds.insecure_port_other_device is not null
17+
order by ds.device_name
18+
```
19+
</details>
1720

1821
**NOTES**
1922

0 commit comments

Comments
 (0)