We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9541069 commit 34a4f3eCopy full SHA for 34a4f3e
README.md
@@ -3,3 +3,23 @@
3
https://github.com/projectdiscovery
4
5
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