Skip to content

Commit 34a4f3e

Browse files
author
cclss
committed
Enhance CDN detection for China and add MySQL export support
1 parent 9541069 commit 34a4f3e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,23 @@
33
https://github.com/projectdiscovery
44

55

6+
- 修改中国cdn 检测
7+
- 优先中国dns
8+
- 支持mysql导出
9+
```
10+
./naabu -host target.com -db 'root:password@tcp(192.168.1.x:3306)/scans'
11+
```
12+
```sql
13+
CREATE TABLE `port_scan_results` (
14+
`id` int(11) NOT NULL AUTO_INCREMENT,
15+
`domain` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
16+
`ip` varchar(45) NOT NULL,
17+
`port` int(11) NOT NULL,
18+
`protocol` varchar(10) ,
19+
`tls` varchar(10),
20+
`cdn` varchar(5),
21+
`cdn_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
22+
`time` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
23+
PRIMARY KEY (`id`)
24+
);
25+
```

0 commit comments

Comments
 (0)