-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathfofa_log.sql
executable file
·35 lines (28 loc) · 1014 Bytes
/
fofa_log.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Navicat Premium Data Transfer
Source Server : 127.0.0.1
Source Server Type : MySQL
Source Server Version : 80037
Source Host : 127.0.0.1:3306
Source Schema : vuln_scan_database
Target Server Type : MySQL
Target Server Version : 80037
File Encoding : 65001
Date: 25/11/2024 10:27:12
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for fofa_log
-- ----------------------------
DROP TABLE IF EXISTS `fofa_log`;
CREATE TABLE `fofa_log` (
`id` int(0) NOT NULL AUTO_INCREMENT,
`fofa_grammar` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL,
`file_path` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of fofa_log
-- ----------------------------
SET FOREIGN_KEY_CHECKS = 1;