metasploit-credential 3.0.2 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/lib/metasploit/credential/version.rb +1 -1
- data/spec/dummy/config/database.yml +2 -2
- data/spec/dummy/db/structure.sql +276 -281
- metadata +7 -7
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1bd1a25d33a75f05ae66ecf0338244f42182befa
|
|
4
|
+
data.tar.gz: a6de105af8b273b54a8511d93feda6e898989646
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a31344e1b66e9eb047cc2de01c83a15801e56d059886391afa6da270af36ffe53d70bfe8c23bc0bffe7fad2b1cef95062b4fdddaa1d63ba525e7b02a51b474d
|
|
7
|
+
data.tar.gz: 6ac1c230cd5e5e09dc538428bd1426e11fc0f5b365217f4d5acd09ddea94b08d2c7caebd3d4563963d513508c73c4bb5fda48201336ef221cb24b6f1e169bc2d
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
development: &pgsql
|
|
2
2
|
adapter: postgresql
|
|
3
|
-
database: metasploit-
|
|
3
|
+
database: metasploit-credential_development0
|
|
4
4
|
username: msf
|
|
5
5
|
password: pass123
|
|
6
6
|
host: localhost
|
|
@@ -10,4 +10,4 @@ development: &pgsql
|
|
|
10
10
|
min_messages: warning
|
|
11
11
|
test:
|
|
12
12
|
<<: *pgsql
|
|
13
|
-
database: metasploit-
|
|
13
|
+
database: metasploit-credential_test0
|
data/spec/dummy/db/structure.sql
CHANGED
|
@@ -2,17 +2,12 @@
|
|
|
2
2
|
-- PostgreSQL database dump
|
|
3
3
|
--
|
|
4
4
|
|
|
5
|
-
-- Dumped from database version 9.6.1
|
|
6
|
-
-- Dumped by pg_dump version 9.6.1
|
|
7
|
-
|
|
8
5
|
SET statement_timeout = 0;
|
|
9
6
|
SET lock_timeout = 0;
|
|
10
|
-
SET idle_in_transaction_session_timeout = 0;
|
|
11
7
|
SET client_encoding = 'UTF8';
|
|
12
8
|
SET standard_conforming_strings = on;
|
|
13
9
|
SET check_function_bodies = false;
|
|
14
10
|
SET client_min_messages = warning;
|
|
15
|
-
SET row_security = off;
|
|
16
11
|
|
|
17
12
|
--
|
|
18
13
|
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
|
|
@@ -35,7 +30,7 @@ SET default_tablespace = '';
|
|
|
35
30
|
SET default_with_oids = false;
|
|
36
31
|
|
|
37
32
|
--
|
|
38
|
-
-- Name: api_keys; Type: TABLE; Schema: public; Owner:
|
|
33
|
+
-- Name: api_keys; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
39
34
|
--
|
|
40
35
|
|
|
41
36
|
CREATE TABLE api_keys (
|
|
@@ -66,7 +61,7 @@ ALTER SEQUENCE api_keys_id_seq OWNED BY api_keys.id;
|
|
|
66
61
|
|
|
67
62
|
|
|
68
63
|
--
|
|
69
|
-
-- Name: automatic_exploitation_match_results; Type: TABLE; Schema: public; Owner:
|
|
64
|
+
-- Name: automatic_exploitation_match_results; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
70
65
|
--
|
|
71
66
|
|
|
72
67
|
CREATE TABLE automatic_exploitation_match_results (
|
|
@@ -99,7 +94,7 @@ ALTER SEQUENCE automatic_exploitation_match_results_id_seq OWNED BY automatic_ex
|
|
|
99
94
|
|
|
100
95
|
|
|
101
96
|
--
|
|
102
|
-
-- Name: automatic_exploitation_match_sets; Type: TABLE; Schema: public; Owner:
|
|
97
|
+
-- Name: automatic_exploitation_match_sets; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
103
98
|
--
|
|
104
99
|
|
|
105
100
|
CREATE TABLE automatic_exploitation_match_sets (
|
|
@@ -131,7 +126,7 @@ ALTER SEQUENCE automatic_exploitation_match_sets_id_seq OWNED BY automatic_explo
|
|
|
131
126
|
|
|
132
127
|
|
|
133
128
|
--
|
|
134
|
-
-- Name: automatic_exploitation_matches; Type: TABLE; Schema: public; Owner:
|
|
129
|
+
-- Name: automatic_exploitation_matches; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
135
130
|
--
|
|
136
131
|
|
|
137
132
|
CREATE TABLE automatic_exploitation_matches (
|
|
@@ -168,7 +163,7 @@ ALTER SEQUENCE automatic_exploitation_matches_id_seq OWNED BY automatic_exploita
|
|
|
168
163
|
|
|
169
164
|
|
|
170
165
|
--
|
|
171
|
-
-- Name: automatic_exploitation_runs; Type: TABLE; Schema: public; Owner:
|
|
166
|
+
-- Name: automatic_exploitation_runs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
172
167
|
--
|
|
173
168
|
|
|
174
169
|
CREATE TABLE automatic_exploitation_runs (
|
|
@@ -201,7 +196,7 @@ ALTER SEQUENCE automatic_exploitation_runs_id_seq OWNED BY automatic_exploitatio
|
|
|
201
196
|
|
|
202
197
|
|
|
203
198
|
--
|
|
204
|
-
-- Name: clients; Type: TABLE; Schema: public; Owner:
|
|
199
|
+
-- Name: clients; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
205
200
|
--
|
|
206
201
|
|
|
207
202
|
CREATE TABLE clients (
|
|
@@ -235,7 +230,7 @@ ALTER SEQUENCE clients_id_seq OWNED BY clients.id;
|
|
|
235
230
|
|
|
236
231
|
|
|
237
232
|
--
|
|
238
|
-
-- Name: credential_cores_tasks; Type: TABLE; Schema: public; Owner:
|
|
233
|
+
-- Name: credential_cores_tasks; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
239
234
|
--
|
|
240
235
|
|
|
241
236
|
CREATE TABLE credential_cores_tasks (
|
|
@@ -245,7 +240,7 @@ CREATE TABLE credential_cores_tasks (
|
|
|
245
240
|
|
|
246
241
|
|
|
247
242
|
--
|
|
248
|
-
-- Name: credential_logins_tasks; Type: TABLE; Schema: public; Owner:
|
|
243
|
+
-- Name: credential_logins_tasks; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
249
244
|
--
|
|
250
245
|
|
|
251
246
|
CREATE TABLE credential_logins_tasks (
|
|
@@ -255,7 +250,7 @@ CREATE TABLE credential_logins_tasks (
|
|
|
255
250
|
|
|
256
251
|
|
|
257
252
|
--
|
|
258
|
-
-- Name: creds; Type: TABLE; Schema: public; Owner:
|
|
253
|
+
-- Name: creds; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
259
254
|
--
|
|
260
255
|
|
|
261
256
|
CREATE TABLE creds (
|
|
@@ -293,7 +288,7 @@ ALTER SEQUENCE creds_id_seq OWNED BY creds.id;
|
|
|
293
288
|
|
|
294
289
|
|
|
295
290
|
--
|
|
296
|
-
-- Name: events; Type: TABLE; Schema: public; Owner:
|
|
291
|
+
-- Name: events; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
297
292
|
--
|
|
298
293
|
|
|
299
294
|
CREATE TABLE events (
|
|
@@ -330,7 +325,7 @@ ALTER SEQUENCE events_id_seq OWNED BY events.id;
|
|
|
330
325
|
|
|
331
326
|
|
|
332
327
|
--
|
|
333
|
-
-- Name: exploit_attempts; Type: TABLE; Schema: public; Owner:
|
|
328
|
+
-- Name: exploit_attempts; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
334
329
|
--
|
|
335
330
|
|
|
336
331
|
CREATE TABLE exploit_attempts (
|
|
@@ -371,7 +366,7 @@ ALTER SEQUENCE exploit_attempts_id_seq OWNED BY exploit_attempts.id;
|
|
|
371
366
|
|
|
372
367
|
|
|
373
368
|
--
|
|
374
|
-
-- Name: exploited_hosts; Type: TABLE; Schema: public; Owner:
|
|
369
|
+
-- Name: exploited_hosts; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
375
370
|
--
|
|
376
371
|
|
|
377
372
|
CREATE TABLE exploited_hosts (
|
|
@@ -406,7 +401,7 @@ ALTER SEQUENCE exploited_hosts_id_seq OWNED BY exploited_hosts.id;
|
|
|
406
401
|
|
|
407
402
|
|
|
408
403
|
--
|
|
409
|
-
-- Name: host_details; Type: TABLE; Schema: public; Owner:
|
|
404
|
+
-- Name: host_details; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
410
405
|
--
|
|
411
406
|
|
|
412
407
|
CREATE TABLE host_details (
|
|
@@ -442,7 +437,7 @@ ALTER SEQUENCE host_details_id_seq OWNED BY host_details.id;
|
|
|
442
437
|
|
|
443
438
|
|
|
444
439
|
--
|
|
445
|
-
-- Name: hosts; Type: TABLE; Schema: public; Owner:
|
|
440
|
+
-- Name: hosts; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
446
441
|
--
|
|
447
442
|
|
|
448
443
|
CREATE TABLE hosts (
|
|
@@ -496,7 +491,7 @@ ALTER SEQUENCE hosts_id_seq OWNED BY hosts.id;
|
|
|
496
491
|
|
|
497
492
|
|
|
498
493
|
--
|
|
499
|
-
-- Name: hosts_tags; Type: TABLE; Schema: public; Owner:
|
|
494
|
+
-- Name: hosts_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
500
495
|
--
|
|
501
496
|
|
|
502
497
|
CREATE TABLE hosts_tags (
|
|
@@ -526,7 +521,7 @@ ALTER SEQUENCE hosts_tags_id_seq OWNED BY hosts_tags.id;
|
|
|
526
521
|
|
|
527
522
|
|
|
528
523
|
--
|
|
529
|
-
-- Name: listeners; Type: TABLE; Schema: public; Owner:
|
|
524
|
+
-- Name: listeners; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
530
525
|
--
|
|
531
526
|
|
|
532
527
|
CREATE TABLE listeners (
|
|
@@ -565,7 +560,7 @@ ALTER SEQUENCE listeners_id_seq OWNED BY listeners.id;
|
|
|
565
560
|
|
|
566
561
|
|
|
567
562
|
--
|
|
568
|
-
-- Name: loots; Type: TABLE; Schema: public; Owner:
|
|
563
|
+
-- Name: loots; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
569
564
|
--
|
|
570
565
|
|
|
571
566
|
CREATE TABLE loots (
|
|
@@ -605,7 +600,7 @@ ALTER SEQUENCE loots_id_seq OWNED BY loots.id;
|
|
|
605
600
|
|
|
606
601
|
|
|
607
602
|
--
|
|
608
|
-
-- Name: macros; Type: TABLE; Schema: public; Owner:
|
|
603
|
+
-- Name: macros; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
609
604
|
--
|
|
610
605
|
|
|
611
606
|
CREATE TABLE macros (
|
|
@@ -640,7 +635,7 @@ ALTER SEQUENCE macros_id_seq OWNED BY macros.id;
|
|
|
640
635
|
|
|
641
636
|
|
|
642
637
|
--
|
|
643
|
-
-- Name: metasploit_credential_cores; Type: TABLE; Schema: public; Owner:
|
|
638
|
+
-- Name: metasploit_credential_cores; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
644
639
|
--
|
|
645
640
|
|
|
646
641
|
CREATE TABLE metasploit_credential_cores (
|
|
@@ -677,7 +672,7 @@ ALTER SEQUENCE metasploit_credential_cores_id_seq OWNED BY metasploit_credential
|
|
|
677
672
|
|
|
678
673
|
|
|
679
674
|
--
|
|
680
|
-
-- Name: metasploit_credential_logins; Type: TABLE; Schema: public; Owner:
|
|
675
|
+
-- Name: metasploit_credential_logins; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
681
676
|
--
|
|
682
677
|
|
|
683
678
|
CREATE TABLE metasploit_credential_logins (
|
|
@@ -712,7 +707,7 @@ ALTER SEQUENCE metasploit_credential_logins_id_seq OWNED BY metasploit_credentia
|
|
|
712
707
|
|
|
713
708
|
|
|
714
709
|
--
|
|
715
|
-
-- Name: metasploit_credential_origin_cracked_passwords; Type: TABLE; Schema: public; Owner:
|
|
710
|
+
-- Name: metasploit_credential_origin_cracked_passwords; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
716
711
|
--
|
|
717
712
|
|
|
718
713
|
CREATE TABLE metasploit_credential_origin_cracked_passwords (
|
|
@@ -743,7 +738,7 @@ ALTER SEQUENCE metasploit_credential_origin_cracked_passwords_id_seq OWNED BY me
|
|
|
743
738
|
|
|
744
739
|
|
|
745
740
|
--
|
|
746
|
-
-- Name: metasploit_credential_origin_imports; Type: TABLE; Schema: public; Owner:
|
|
741
|
+
-- Name: metasploit_credential_origin_imports; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
747
742
|
--
|
|
748
743
|
|
|
749
744
|
CREATE TABLE metasploit_credential_origin_imports (
|
|
@@ -775,7 +770,7 @@ ALTER SEQUENCE metasploit_credential_origin_imports_id_seq OWNED BY metasploit_c
|
|
|
775
770
|
|
|
776
771
|
|
|
777
772
|
--
|
|
778
|
-
-- Name: metasploit_credential_origin_manuals; Type: TABLE; Schema: public; Owner:
|
|
773
|
+
-- Name: metasploit_credential_origin_manuals; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
779
774
|
--
|
|
780
775
|
|
|
781
776
|
CREATE TABLE metasploit_credential_origin_manuals (
|
|
@@ -806,7 +801,7 @@ ALTER SEQUENCE metasploit_credential_origin_manuals_id_seq OWNED BY metasploit_c
|
|
|
806
801
|
|
|
807
802
|
|
|
808
803
|
--
|
|
809
|
-
-- Name: metasploit_credential_origin_services; Type: TABLE; Schema: public; Owner:
|
|
804
|
+
-- Name: metasploit_credential_origin_services; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
810
805
|
--
|
|
811
806
|
|
|
812
807
|
CREATE TABLE metasploit_credential_origin_services (
|
|
@@ -838,7 +833,7 @@ ALTER SEQUENCE metasploit_credential_origin_services_id_seq OWNED BY metasploit_
|
|
|
838
833
|
|
|
839
834
|
|
|
840
835
|
--
|
|
841
|
-
-- Name: metasploit_credential_origin_sessions; Type: TABLE; Schema: public; Owner:
|
|
836
|
+
-- Name: metasploit_credential_origin_sessions; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
842
837
|
--
|
|
843
838
|
|
|
844
839
|
CREATE TABLE metasploit_credential_origin_sessions (
|
|
@@ -870,7 +865,7 @@ ALTER SEQUENCE metasploit_credential_origin_sessions_id_seq OWNED BY metasploit_
|
|
|
870
865
|
|
|
871
866
|
|
|
872
867
|
--
|
|
873
|
-
-- Name: metasploit_credential_privates; Type: TABLE; Schema: public; Owner:
|
|
868
|
+
-- Name: metasploit_credential_privates; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
874
869
|
--
|
|
875
870
|
|
|
876
871
|
CREATE TABLE metasploit_credential_privates (
|
|
@@ -903,7 +898,7 @@ ALTER SEQUENCE metasploit_credential_privates_id_seq OWNED BY metasploit_credent
|
|
|
903
898
|
|
|
904
899
|
|
|
905
900
|
--
|
|
906
|
-
-- Name: metasploit_credential_publics; Type: TABLE; Schema: public; Owner:
|
|
901
|
+
-- Name: metasploit_credential_publics; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
907
902
|
--
|
|
908
903
|
|
|
909
904
|
CREATE TABLE metasploit_credential_publics (
|
|
@@ -935,7 +930,7 @@ ALTER SEQUENCE metasploit_credential_publics_id_seq OWNED BY metasploit_credenti
|
|
|
935
930
|
|
|
936
931
|
|
|
937
932
|
--
|
|
938
|
-
-- Name: metasploit_credential_realms; Type: TABLE; Schema: public; Owner:
|
|
933
|
+
-- Name: metasploit_credential_realms; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
939
934
|
--
|
|
940
935
|
|
|
941
936
|
CREATE TABLE metasploit_credential_realms (
|
|
@@ -967,7 +962,7 @@ ALTER SEQUENCE metasploit_credential_realms_id_seq OWNED BY metasploit_credentia
|
|
|
967
962
|
|
|
968
963
|
|
|
969
964
|
--
|
|
970
|
-
-- Name: mod_refs; Type: TABLE; Schema: public; Owner:
|
|
965
|
+
-- Name: mod_refs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
971
966
|
--
|
|
972
967
|
|
|
973
968
|
CREATE TABLE mod_refs (
|
|
@@ -998,7 +993,7 @@ ALTER SEQUENCE mod_refs_id_seq OWNED BY mod_refs.id;
|
|
|
998
993
|
|
|
999
994
|
|
|
1000
995
|
--
|
|
1001
|
-
-- Name: module_actions; Type: TABLE; Schema: public; Owner:
|
|
996
|
+
-- Name: module_actions; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1002
997
|
--
|
|
1003
998
|
|
|
1004
999
|
CREATE TABLE module_actions (
|
|
@@ -1028,7 +1023,7 @@ ALTER SEQUENCE module_actions_id_seq OWNED BY module_actions.id;
|
|
|
1028
1023
|
|
|
1029
1024
|
|
|
1030
1025
|
--
|
|
1031
|
-
-- Name: module_archs; Type: TABLE; Schema: public; Owner:
|
|
1026
|
+
-- Name: module_archs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1032
1027
|
--
|
|
1033
1028
|
|
|
1034
1029
|
CREATE TABLE module_archs (
|
|
@@ -1058,7 +1053,7 @@ ALTER SEQUENCE module_archs_id_seq OWNED BY module_archs.id;
|
|
|
1058
1053
|
|
|
1059
1054
|
|
|
1060
1055
|
--
|
|
1061
|
-
-- Name: module_authors; Type: TABLE; Schema: public; Owner:
|
|
1056
|
+
-- Name: module_authors; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1062
1057
|
--
|
|
1063
1058
|
|
|
1064
1059
|
CREATE TABLE module_authors (
|
|
@@ -1089,7 +1084,7 @@ ALTER SEQUENCE module_authors_id_seq OWNED BY module_authors.id;
|
|
|
1089
1084
|
|
|
1090
1085
|
|
|
1091
1086
|
--
|
|
1092
|
-
-- Name: module_details; Type: TABLE; Schema: public; Owner:
|
|
1087
|
+
-- Name: module_details; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1093
1088
|
--
|
|
1094
1089
|
|
|
1095
1090
|
CREATE TABLE module_details (
|
|
@@ -1132,7 +1127,7 @@ ALTER SEQUENCE module_details_id_seq OWNED BY module_details.id;
|
|
|
1132
1127
|
|
|
1133
1128
|
|
|
1134
1129
|
--
|
|
1135
|
-
-- Name: module_mixins; Type: TABLE; Schema: public; Owner:
|
|
1130
|
+
-- Name: module_mixins; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1136
1131
|
--
|
|
1137
1132
|
|
|
1138
1133
|
CREATE TABLE module_mixins (
|
|
@@ -1162,7 +1157,7 @@ ALTER SEQUENCE module_mixins_id_seq OWNED BY module_mixins.id;
|
|
|
1162
1157
|
|
|
1163
1158
|
|
|
1164
1159
|
--
|
|
1165
|
-
-- Name: module_platforms; Type: TABLE; Schema: public; Owner:
|
|
1160
|
+
-- Name: module_platforms; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1166
1161
|
--
|
|
1167
1162
|
|
|
1168
1163
|
CREATE TABLE module_platforms (
|
|
@@ -1192,7 +1187,7 @@ ALTER SEQUENCE module_platforms_id_seq OWNED BY module_platforms.id;
|
|
|
1192
1187
|
|
|
1193
1188
|
|
|
1194
1189
|
--
|
|
1195
|
-
-- Name: module_refs; Type: TABLE; Schema: public; Owner:
|
|
1190
|
+
-- Name: module_refs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1196
1191
|
--
|
|
1197
1192
|
|
|
1198
1193
|
CREATE TABLE module_refs (
|
|
@@ -1222,7 +1217,7 @@ ALTER SEQUENCE module_refs_id_seq OWNED BY module_refs.id;
|
|
|
1222
1217
|
|
|
1223
1218
|
|
|
1224
1219
|
--
|
|
1225
|
-
-- Name: module_runs; Type: TABLE; Schema: public; Owner:
|
|
1220
|
+
-- Name: module_runs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1226
1221
|
--
|
|
1227
1222
|
|
|
1228
1223
|
CREATE TABLE module_runs (
|
|
@@ -1264,7 +1259,7 @@ ALTER SEQUENCE module_runs_id_seq OWNED BY module_runs.id;
|
|
|
1264
1259
|
|
|
1265
1260
|
|
|
1266
1261
|
--
|
|
1267
|
-
-- Name: module_targets; Type: TABLE; Schema: public; Owner:
|
|
1262
|
+
-- Name: module_targets; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1268
1263
|
--
|
|
1269
1264
|
|
|
1270
1265
|
CREATE TABLE module_targets (
|
|
@@ -1295,7 +1290,7 @@ ALTER SEQUENCE module_targets_id_seq OWNED BY module_targets.id;
|
|
|
1295
1290
|
|
|
1296
1291
|
|
|
1297
1292
|
--
|
|
1298
|
-
-- Name: nexpose_consoles; Type: TABLE; Schema: public; Owner:
|
|
1293
|
+
-- Name: nexpose_consoles; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1299
1294
|
--
|
|
1300
1295
|
|
|
1301
1296
|
CREATE TABLE nexpose_consoles (
|
|
@@ -1336,7 +1331,7 @@ ALTER SEQUENCE nexpose_consoles_id_seq OWNED BY nexpose_consoles.id;
|
|
|
1336
1331
|
|
|
1337
1332
|
|
|
1338
1333
|
--
|
|
1339
|
-
-- Name: notes; Type: TABLE; Schema: public; Owner:
|
|
1334
|
+
-- Name: notes; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1340
1335
|
--
|
|
1341
1336
|
|
|
1342
1337
|
CREATE TABLE notes (
|
|
@@ -1374,7 +1369,7 @@ ALTER SEQUENCE notes_id_seq OWNED BY notes.id;
|
|
|
1374
1369
|
|
|
1375
1370
|
|
|
1376
1371
|
--
|
|
1377
|
-
-- Name: profiles; Type: TABLE; Schema: public; Owner:
|
|
1372
|
+
-- Name: profiles; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1378
1373
|
--
|
|
1379
1374
|
|
|
1380
1375
|
CREATE TABLE profiles (
|
|
@@ -1408,7 +1403,7 @@ ALTER SEQUENCE profiles_id_seq OWNED BY profiles.id;
|
|
|
1408
1403
|
|
|
1409
1404
|
|
|
1410
1405
|
--
|
|
1411
|
-
-- Name: refs; Type: TABLE; Schema: public; Owner:
|
|
1406
|
+
-- Name: refs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1412
1407
|
--
|
|
1413
1408
|
|
|
1414
1409
|
CREATE TABLE refs (
|
|
@@ -1440,7 +1435,7 @@ ALTER SEQUENCE refs_id_seq OWNED BY refs.id;
|
|
|
1440
1435
|
|
|
1441
1436
|
|
|
1442
1437
|
--
|
|
1443
|
-
-- Name: report_templates; Type: TABLE; Schema: public; Owner:
|
|
1438
|
+
-- Name: report_templates; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1444
1439
|
--
|
|
1445
1440
|
|
|
1446
1441
|
CREATE TABLE report_templates (
|
|
@@ -1474,7 +1469,7 @@ ALTER SEQUENCE report_templates_id_seq OWNED BY report_templates.id;
|
|
|
1474
1469
|
|
|
1475
1470
|
|
|
1476
1471
|
--
|
|
1477
|
-
-- Name: reports; Type: TABLE; Schema: public; Owner:
|
|
1472
|
+
-- Name: reports; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1478
1473
|
--
|
|
1479
1474
|
|
|
1480
1475
|
CREATE TABLE reports (
|
|
@@ -1512,7 +1507,7 @@ ALTER SEQUENCE reports_id_seq OWNED BY reports.id;
|
|
|
1512
1507
|
|
|
1513
1508
|
|
|
1514
1509
|
--
|
|
1515
|
-
-- Name: routes; Type: TABLE; Schema: public; Owner:
|
|
1510
|
+
-- Name: routes; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1516
1511
|
--
|
|
1517
1512
|
|
|
1518
1513
|
CREATE TABLE routes (
|
|
@@ -1543,7 +1538,7 @@ ALTER SEQUENCE routes_id_seq OWNED BY routes.id;
|
|
|
1543
1538
|
|
|
1544
1539
|
|
|
1545
1540
|
--
|
|
1546
|
-
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner:
|
|
1541
|
+
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1547
1542
|
--
|
|
1548
1543
|
|
|
1549
1544
|
CREATE TABLE schema_migrations (
|
|
@@ -1552,7 +1547,7 @@ CREATE TABLE schema_migrations (
|
|
|
1552
1547
|
|
|
1553
1548
|
|
|
1554
1549
|
--
|
|
1555
|
-
-- Name: services; Type: TABLE; Schema: public; Owner:
|
|
1550
|
+
-- Name: services; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1556
1551
|
--
|
|
1557
1552
|
|
|
1558
1553
|
CREATE TABLE services (
|
|
@@ -1588,7 +1583,7 @@ ALTER SEQUENCE services_id_seq OWNED BY services.id;
|
|
|
1588
1583
|
|
|
1589
1584
|
|
|
1590
1585
|
--
|
|
1591
|
-
-- Name: session_events; Type: TABLE; Schema: public; Owner:
|
|
1586
|
+
-- Name: session_events; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1592
1587
|
--
|
|
1593
1588
|
|
|
1594
1589
|
CREATE TABLE session_events (
|
|
@@ -1623,7 +1618,7 @@ ALTER SEQUENCE session_events_id_seq OWNED BY session_events.id;
|
|
|
1623
1618
|
|
|
1624
1619
|
|
|
1625
1620
|
--
|
|
1626
|
-
-- Name: sessions; Type: TABLE; Schema: public; Owner:
|
|
1621
|
+
-- Name: sessions; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1627
1622
|
--
|
|
1628
1623
|
|
|
1629
1624
|
CREATE TABLE sessions (
|
|
@@ -1665,7 +1660,7 @@ ALTER SEQUENCE sessions_id_seq OWNED BY sessions.id;
|
|
|
1665
1660
|
|
|
1666
1661
|
|
|
1667
1662
|
--
|
|
1668
|
-
-- Name: tags; Type: TABLE; Schema: public; Owner:
|
|
1663
|
+
-- Name: tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1669
1664
|
--
|
|
1670
1665
|
|
|
1671
1666
|
CREATE TABLE tags (
|
|
@@ -1701,7 +1696,7 @@ ALTER SEQUENCE tags_id_seq OWNED BY tags.id;
|
|
|
1701
1696
|
|
|
1702
1697
|
|
|
1703
1698
|
--
|
|
1704
|
-
-- Name: task_creds; Type: TABLE; Schema: public; Owner:
|
|
1699
|
+
-- Name: task_creds; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1705
1700
|
--
|
|
1706
1701
|
|
|
1707
1702
|
CREATE TABLE task_creds (
|
|
@@ -1733,7 +1728,7 @@ ALTER SEQUENCE task_creds_id_seq OWNED BY task_creds.id;
|
|
|
1733
1728
|
|
|
1734
1729
|
|
|
1735
1730
|
--
|
|
1736
|
-
-- Name: task_hosts; Type: TABLE; Schema: public; Owner:
|
|
1731
|
+
-- Name: task_hosts; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1737
1732
|
--
|
|
1738
1733
|
|
|
1739
1734
|
CREATE TABLE task_hosts (
|
|
@@ -1765,7 +1760,7 @@ ALTER SEQUENCE task_hosts_id_seq OWNED BY task_hosts.id;
|
|
|
1765
1760
|
|
|
1766
1761
|
|
|
1767
1762
|
--
|
|
1768
|
-
-- Name: task_services; Type: TABLE; Schema: public; Owner:
|
|
1763
|
+
-- Name: task_services; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1769
1764
|
--
|
|
1770
1765
|
|
|
1771
1766
|
CREATE TABLE task_services (
|
|
@@ -1797,7 +1792,7 @@ ALTER SEQUENCE task_services_id_seq OWNED BY task_services.id;
|
|
|
1797
1792
|
|
|
1798
1793
|
|
|
1799
1794
|
--
|
|
1800
|
-
-- Name: task_sessions; Type: TABLE; Schema: public; Owner:
|
|
1795
|
+
-- Name: task_sessions; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1801
1796
|
--
|
|
1802
1797
|
|
|
1803
1798
|
CREATE TABLE task_sessions (
|
|
@@ -1829,7 +1824,7 @@ ALTER SEQUENCE task_sessions_id_seq OWNED BY task_sessions.id;
|
|
|
1829
1824
|
|
|
1830
1825
|
|
|
1831
1826
|
--
|
|
1832
|
-
-- Name: tasks; Type: TABLE; Schema: public; Owner:
|
|
1827
|
+
-- Name: tasks; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1833
1828
|
--
|
|
1834
1829
|
|
|
1835
1830
|
CREATE TABLE tasks (
|
|
@@ -1872,7 +1867,7 @@ ALTER SEQUENCE tasks_id_seq OWNED BY tasks.id;
|
|
|
1872
1867
|
|
|
1873
1868
|
|
|
1874
1869
|
--
|
|
1875
|
-
-- Name: users; Type: TABLE; Schema: public; Owner:
|
|
1870
|
+
-- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1876
1871
|
--
|
|
1877
1872
|
|
|
1878
1873
|
CREATE TABLE users (
|
|
@@ -1912,7 +1907,7 @@ ALTER SEQUENCE users_id_seq OWNED BY users.id;
|
|
|
1912
1907
|
|
|
1913
1908
|
|
|
1914
1909
|
--
|
|
1915
|
-
-- Name: vuln_attempts; Type: TABLE; Schema: public; Owner:
|
|
1910
|
+
-- Name: vuln_attempts; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1916
1911
|
--
|
|
1917
1912
|
|
|
1918
1913
|
CREATE TABLE vuln_attempts (
|
|
@@ -1949,7 +1944,7 @@ ALTER SEQUENCE vuln_attempts_id_seq OWNED BY vuln_attempts.id;
|
|
|
1949
1944
|
|
|
1950
1945
|
|
|
1951
1946
|
--
|
|
1952
|
-
-- Name: vuln_details; Type: TABLE; Schema: public; Owner:
|
|
1947
|
+
-- Name: vuln_details; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1953
1948
|
--
|
|
1954
1949
|
|
|
1955
1950
|
CREATE TABLE vuln_details (
|
|
@@ -1999,7 +1994,7 @@ ALTER SEQUENCE vuln_details_id_seq OWNED BY vuln_details.id;
|
|
|
1999
1994
|
|
|
2000
1995
|
|
|
2001
1996
|
--
|
|
2002
|
-
-- Name: vulns; Type: TABLE; Schema: public; Owner:
|
|
1997
|
+
-- Name: vulns; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2003
1998
|
--
|
|
2004
1999
|
|
|
2005
2000
|
CREATE TABLE vulns (
|
|
@@ -2038,7 +2033,7 @@ ALTER SEQUENCE vulns_id_seq OWNED BY vulns.id;
|
|
|
2038
2033
|
|
|
2039
2034
|
|
|
2040
2035
|
--
|
|
2041
|
-
-- Name: vulns_refs; Type: TABLE; Schema: public; Owner:
|
|
2036
|
+
-- Name: vulns_refs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2042
2037
|
--
|
|
2043
2038
|
|
|
2044
2039
|
CREATE TABLE vulns_refs (
|
|
@@ -2068,7 +2063,7 @@ ALTER SEQUENCE vulns_refs_id_seq OWNED BY vulns_refs.id;
|
|
|
2068
2063
|
|
|
2069
2064
|
|
|
2070
2065
|
--
|
|
2071
|
-
-- Name: web_forms; Type: TABLE; Schema: public; Owner:
|
|
2066
|
+
-- Name: web_forms; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2072
2067
|
--
|
|
2073
2068
|
|
|
2074
2069
|
CREATE TABLE web_forms (
|
|
@@ -2103,7 +2098,7 @@ ALTER SEQUENCE web_forms_id_seq OWNED BY web_forms.id;
|
|
|
2103
2098
|
|
|
2104
2099
|
|
|
2105
2100
|
--
|
|
2106
|
-
-- Name: web_pages; Type: TABLE; Schema: public; Owner:
|
|
2101
|
+
-- Name: web_pages; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2107
2102
|
--
|
|
2108
2103
|
|
|
2109
2104
|
CREATE TABLE web_pages (
|
|
@@ -2145,7 +2140,7 @@ ALTER SEQUENCE web_pages_id_seq OWNED BY web_pages.id;
|
|
|
2145
2140
|
|
|
2146
2141
|
|
|
2147
2142
|
--
|
|
2148
|
-
-- Name: web_sites; Type: TABLE; Schema: public; Owner:
|
|
2143
|
+
-- Name: web_sites; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2149
2144
|
--
|
|
2150
2145
|
|
|
2151
2146
|
CREATE TABLE web_sites (
|
|
@@ -2179,7 +2174,7 @@ ALTER SEQUENCE web_sites_id_seq OWNED BY web_sites.id;
|
|
|
2179
2174
|
|
|
2180
2175
|
|
|
2181
2176
|
--
|
|
2182
|
-
-- Name: web_vulns; Type: TABLE; Schema: public; Owner:
|
|
2177
|
+
-- Name: web_vulns; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2183
2178
|
--
|
|
2184
2179
|
|
|
2185
2180
|
CREATE TABLE web_vulns (
|
|
@@ -2225,7 +2220,7 @@ ALTER SEQUENCE web_vulns_id_seq OWNED BY web_vulns.id;
|
|
|
2225
2220
|
|
|
2226
2221
|
|
|
2227
2222
|
--
|
|
2228
|
-
-- Name: wmap_requests; Type: TABLE; Schema: public; Owner:
|
|
2223
|
+
-- Name: wmap_requests; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2229
2224
|
--
|
|
2230
2225
|
|
|
2231
2226
|
CREATE TABLE wmap_requests (
|
|
@@ -2267,7 +2262,7 @@ ALTER SEQUENCE wmap_requests_id_seq OWNED BY wmap_requests.id;
|
|
|
2267
2262
|
|
|
2268
2263
|
|
|
2269
2264
|
--
|
|
2270
|
-
-- Name: wmap_targets; Type: TABLE; Schema: public; Owner:
|
|
2265
|
+
-- Name: wmap_targets; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2271
2266
|
--
|
|
2272
2267
|
|
|
2273
2268
|
CREATE TABLE wmap_targets (
|
|
@@ -2302,7 +2297,7 @@ ALTER SEQUENCE wmap_targets_id_seq OWNED BY wmap_targets.id;
|
|
|
2302
2297
|
|
|
2303
2298
|
|
|
2304
2299
|
--
|
|
2305
|
-
-- Name: workspace_members; Type: TABLE; Schema: public; Owner:
|
|
2300
|
+
-- Name: workspace_members; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2306
2301
|
--
|
|
2307
2302
|
|
|
2308
2303
|
CREATE TABLE workspace_members (
|
|
@@ -2312,7 +2307,7 @@ CREATE TABLE workspace_members (
|
|
|
2312
2307
|
|
|
2313
2308
|
|
|
2314
2309
|
--
|
|
2315
|
-
-- Name: workspaces; Type: TABLE; Schema: public; Owner:
|
|
2310
|
+
-- Name: workspaces; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
2316
2311
|
--
|
|
2317
2312
|
|
|
2318
2313
|
CREATE TABLE workspaces (
|
|
@@ -2348,455 +2343,455 @@ ALTER SEQUENCE workspaces_id_seq OWNED BY workspaces.id;
|
|
|
2348
2343
|
|
|
2349
2344
|
|
|
2350
2345
|
--
|
|
2351
|
-
-- Name:
|
|
2346
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2352
2347
|
--
|
|
2353
2348
|
|
|
2354
2349
|
ALTER TABLE ONLY api_keys ALTER COLUMN id SET DEFAULT nextval('api_keys_id_seq'::regclass);
|
|
2355
2350
|
|
|
2356
2351
|
|
|
2357
2352
|
--
|
|
2358
|
-
-- Name:
|
|
2353
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2359
2354
|
--
|
|
2360
2355
|
|
|
2361
2356
|
ALTER TABLE ONLY automatic_exploitation_match_results ALTER COLUMN id SET DEFAULT nextval('automatic_exploitation_match_results_id_seq'::regclass);
|
|
2362
2357
|
|
|
2363
2358
|
|
|
2364
2359
|
--
|
|
2365
|
-
-- Name:
|
|
2360
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2366
2361
|
--
|
|
2367
2362
|
|
|
2368
2363
|
ALTER TABLE ONLY automatic_exploitation_match_sets ALTER COLUMN id SET DEFAULT nextval('automatic_exploitation_match_sets_id_seq'::regclass);
|
|
2369
2364
|
|
|
2370
2365
|
|
|
2371
2366
|
--
|
|
2372
|
-
-- Name:
|
|
2367
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2373
2368
|
--
|
|
2374
2369
|
|
|
2375
2370
|
ALTER TABLE ONLY automatic_exploitation_matches ALTER COLUMN id SET DEFAULT nextval('automatic_exploitation_matches_id_seq'::regclass);
|
|
2376
2371
|
|
|
2377
2372
|
|
|
2378
2373
|
--
|
|
2379
|
-
-- Name:
|
|
2374
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2380
2375
|
--
|
|
2381
2376
|
|
|
2382
2377
|
ALTER TABLE ONLY automatic_exploitation_runs ALTER COLUMN id SET DEFAULT nextval('automatic_exploitation_runs_id_seq'::regclass);
|
|
2383
2378
|
|
|
2384
2379
|
|
|
2385
2380
|
--
|
|
2386
|
-
-- Name:
|
|
2381
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2387
2382
|
--
|
|
2388
2383
|
|
|
2389
2384
|
ALTER TABLE ONLY clients ALTER COLUMN id SET DEFAULT nextval('clients_id_seq'::regclass);
|
|
2390
2385
|
|
|
2391
2386
|
|
|
2392
2387
|
--
|
|
2393
|
-
-- Name:
|
|
2388
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2394
2389
|
--
|
|
2395
2390
|
|
|
2396
2391
|
ALTER TABLE ONLY creds ALTER COLUMN id SET DEFAULT nextval('creds_id_seq'::regclass);
|
|
2397
2392
|
|
|
2398
2393
|
|
|
2399
2394
|
--
|
|
2400
|
-
-- Name:
|
|
2395
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2401
2396
|
--
|
|
2402
2397
|
|
|
2403
2398
|
ALTER TABLE ONLY events ALTER COLUMN id SET DEFAULT nextval('events_id_seq'::regclass);
|
|
2404
2399
|
|
|
2405
2400
|
|
|
2406
2401
|
--
|
|
2407
|
-
-- Name:
|
|
2402
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2408
2403
|
--
|
|
2409
2404
|
|
|
2410
2405
|
ALTER TABLE ONLY exploit_attempts ALTER COLUMN id SET DEFAULT nextval('exploit_attempts_id_seq'::regclass);
|
|
2411
2406
|
|
|
2412
2407
|
|
|
2413
2408
|
--
|
|
2414
|
-
-- Name:
|
|
2409
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2415
2410
|
--
|
|
2416
2411
|
|
|
2417
2412
|
ALTER TABLE ONLY exploited_hosts ALTER COLUMN id SET DEFAULT nextval('exploited_hosts_id_seq'::regclass);
|
|
2418
2413
|
|
|
2419
2414
|
|
|
2420
2415
|
--
|
|
2421
|
-
-- Name:
|
|
2416
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2422
2417
|
--
|
|
2423
2418
|
|
|
2424
2419
|
ALTER TABLE ONLY host_details ALTER COLUMN id SET DEFAULT nextval('host_details_id_seq'::regclass);
|
|
2425
2420
|
|
|
2426
2421
|
|
|
2427
2422
|
--
|
|
2428
|
-
-- Name:
|
|
2423
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2429
2424
|
--
|
|
2430
2425
|
|
|
2431
2426
|
ALTER TABLE ONLY hosts ALTER COLUMN id SET DEFAULT nextval('hosts_id_seq'::regclass);
|
|
2432
2427
|
|
|
2433
2428
|
|
|
2434
2429
|
--
|
|
2435
|
-
-- Name:
|
|
2430
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2436
2431
|
--
|
|
2437
2432
|
|
|
2438
2433
|
ALTER TABLE ONLY hosts_tags ALTER COLUMN id SET DEFAULT nextval('hosts_tags_id_seq'::regclass);
|
|
2439
2434
|
|
|
2440
2435
|
|
|
2441
2436
|
--
|
|
2442
|
-
-- Name:
|
|
2437
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2443
2438
|
--
|
|
2444
2439
|
|
|
2445
2440
|
ALTER TABLE ONLY listeners ALTER COLUMN id SET DEFAULT nextval('listeners_id_seq'::regclass);
|
|
2446
2441
|
|
|
2447
2442
|
|
|
2448
2443
|
--
|
|
2449
|
-
-- Name:
|
|
2444
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2450
2445
|
--
|
|
2451
2446
|
|
|
2452
2447
|
ALTER TABLE ONLY loots ALTER COLUMN id SET DEFAULT nextval('loots_id_seq'::regclass);
|
|
2453
2448
|
|
|
2454
2449
|
|
|
2455
2450
|
--
|
|
2456
|
-
-- Name:
|
|
2451
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2457
2452
|
--
|
|
2458
2453
|
|
|
2459
2454
|
ALTER TABLE ONLY macros ALTER COLUMN id SET DEFAULT nextval('macros_id_seq'::regclass);
|
|
2460
2455
|
|
|
2461
2456
|
|
|
2462
2457
|
--
|
|
2463
|
-
-- Name:
|
|
2458
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2464
2459
|
--
|
|
2465
2460
|
|
|
2466
2461
|
ALTER TABLE ONLY metasploit_credential_cores ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_cores_id_seq'::regclass);
|
|
2467
2462
|
|
|
2468
2463
|
|
|
2469
2464
|
--
|
|
2470
|
-
-- Name:
|
|
2465
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2471
2466
|
--
|
|
2472
2467
|
|
|
2473
2468
|
ALTER TABLE ONLY metasploit_credential_logins ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_logins_id_seq'::regclass);
|
|
2474
2469
|
|
|
2475
2470
|
|
|
2476
2471
|
--
|
|
2477
|
-
-- Name:
|
|
2472
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2478
2473
|
--
|
|
2479
2474
|
|
|
2480
2475
|
ALTER TABLE ONLY metasploit_credential_origin_cracked_passwords ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_origin_cracked_passwords_id_seq'::regclass);
|
|
2481
2476
|
|
|
2482
2477
|
|
|
2483
2478
|
--
|
|
2484
|
-
-- Name:
|
|
2479
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2485
2480
|
--
|
|
2486
2481
|
|
|
2487
2482
|
ALTER TABLE ONLY metasploit_credential_origin_imports ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_origin_imports_id_seq'::regclass);
|
|
2488
2483
|
|
|
2489
2484
|
|
|
2490
2485
|
--
|
|
2491
|
-
-- Name:
|
|
2486
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2492
2487
|
--
|
|
2493
2488
|
|
|
2494
2489
|
ALTER TABLE ONLY metasploit_credential_origin_manuals ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_origin_manuals_id_seq'::regclass);
|
|
2495
2490
|
|
|
2496
2491
|
|
|
2497
2492
|
--
|
|
2498
|
-
-- Name:
|
|
2493
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2499
2494
|
--
|
|
2500
2495
|
|
|
2501
2496
|
ALTER TABLE ONLY metasploit_credential_origin_services ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_origin_services_id_seq'::regclass);
|
|
2502
2497
|
|
|
2503
2498
|
|
|
2504
2499
|
--
|
|
2505
|
-
-- Name:
|
|
2500
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2506
2501
|
--
|
|
2507
2502
|
|
|
2508
2503
|
ALTER TABLE ONLY metasploit_credential_origin_sessions ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_origin_sessions_id_seq'::regclass);
|
|
2509
2504
|
|
|
2510
2505
|
|
|
2511
2506
|
--
|
|
2512
|
-
-- Name:
|
|
2507
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2513
2508
|
--
|
|
2514
2509
|
|
|
2515
2510
|
ALTER TABLE ONLY metasploit_credential_privates ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_privates_id_seq'::regclass);
|
|
2516
2511
|
|
|
2517
2512
|
|
|
2518
2513
|
--
|
|
2519
|
-
-- Name:
|
|
2514
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2520
2515
|
--
|
|
2521
2516
|
|
|
2522
2517
|
ALTER TABLE ONLY metasploit_credential_publics ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_publics_id_seq'::regclass);
|
|
2523
2518
|
|
|
2524
2519
|
|
|
2525
2520
|
--
|
|
2526
|
-
-- Name:
|
|
2521
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2527
2522
|
--
|
|
2528
2523
|
|
|
2529
2524
|
ALTER TABLE ONLY metasploit_credential_realms ALTER COLUMN id SET DEFAULT nextval('metasploit_credential_realms_id_seq'::regclass);
|
|
2530
2525
|
|
|
2531
2526
|
|
|
2532
2527
|
--
|
|
2533
|
-
-- Name:
|
|
2528
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2534
2529
|
--
|
|
2535
2530
|
|
|
2536
2531
|
ALTER TABLE ONLY mod_refs ALTER COLUMN id SET DEFAULT nextval('mod_refs_id_seq'::regclass);
|
|
2537
2532
|
|
|
2538
2533
|
|
|
2539
2534
|
--
|
|
2540
|
-
-- Name:
|
|
2535
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2541
2536
|
--
|
|
2542
2537
|
|
|
2543
2538
|
ALTER TABLE ONLY module_actions ALTER COLUMN id SET DEFAULT nextval('module_actions_id_seq'::regclass);
|
|
2544
2539
|
|
|
2545
2540
|
|
|
2546
2541
|
--
|
|
2547
|
-
-- Name:
|
|
2542
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2548
2543
|
--
|
|
2549
2544
|
|
|
2550
2545
|
ALTER TABLE ONLY module_archs ALTER COLUMN id SET DEFAULT nextval('module_archs_id_seq'::regclass);
|
|
2551
2546
|
|
|
2552
2547
|
|
|
2553
2548
|
--
|
|
2554
|
-
-- Name:
|
|
2549
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2555
2550
|
--
|
|
2556
2551
|
|
|
2557
2552
|
ALTER TABLE ONLY module_authors ALTER COLUMN id SET DEFAULT nextval('module_authors_id_seq'::regclass);
|
|
2558
2553
|
|
|
2559
2554
|
|
|
2560
2555
|
--
|
|
2561
|
-
-- Name:
|
|
2556
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2562
2557
|
--
|
|
2563
2558
|
|
|
2564
2559
|
ALTER TABLE ONLY module_details ALTER COLUMN id SET DEFAULT nextval('module_details_id_seq'::regclass);
|
|
2565
2560
|
|
|
2566
2561
|
|
|
2567
2562
|
--
|
|
2568
|
-
-- Name:
|
|
2563
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2569
2564
|
--
|
|
2570
2565
|
|
|
2571
2566
|
ALTER TABLE ONLY module_mixins ALTER COLUMN id SET DEFAULT nextval('module_mixins_id_seq'::regclass);
|
|
2572
2567
|
|
|
2573
2568
|
|
|
2574
2569
|
--
|
|
2575
|
-
-- Name:
|
|
2570
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2576
2571
|
--
|
|
2577
2572
|
|
|
2578
2573
|
ALTER TABLE ONLY module_platforms ALTER COLUMN id SET DEFAULT nextval('module_platforms_id_seq'::regclass);
|
|
2579
2574
|
|
|
2580
2575
|
|
|
2581
2576
|
--
|
|
2582
|
-
-- Name:
|
|
2577
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2583
2578
|
--
|
|
2584
2579
|
|
|
2585
2580
|
ALTER TABLE ONLY module_refs ALTER COLUMN id SET DEFAULT nextval('module_refs_id_seq'::regclass);
|
|
2586
2581
|
|
|
2587
2582
|
|
|
2588
2583
|
--
|
|
2589
|
-
-- Name:
|
|
2584
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2590
2585
|
--
|
|
2591
2586
|
|
|
2592
2587
|
ALTER TABLE ONLY module_runs ALTER COLUMN id SET DEFAULT nextval('module_runs_id_seq'::regclass);
|
|
2593
2588
|
|
|
2594
2589
|
|
|
2595
2590
|
--
|
|
2596
|
-
-- Name:
|
|
2591
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2597
2592
|
--
|
|
2598
2593
|
|
|
2599
2594
|
ALTER TABLE ONLY module_targets ALTER COLUMN id SET DEFAULT nextval('module_targets_id_seq'::regclass);
|
|
2600
2595
|
|
|
2601
2596
|
|
|
2602
2597
|
--
|
|
2603
|
-
-- Name:
|
|
2598
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2604
2599
|
--
|
|
2605
2600
|
|
|
2606
2601
|
ALTER TABLE ONLY nexpose_consoles ALTER COLUMN id SET DEFAULT nextval('nexpose_consoles_id_seq'::regclass);
|
|
2607
2602
|
|
|
2608
2603
|
|
|
2609
2604
|
--
|
|
2610
|
-
-- Name:
|
|
2605
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2611
2606
|
--
|
|
2612
2607
|
|
|
2613
2608
|
ALTER TABLE ONLY notes ALTER COLUMN id SET DEFAULT nextval('notes_id_seq'::regclass);
|
|
2614
2609
|
|
|
2615
2610
|
|
|
2616
2611
|
--
|
|
2617
|
-
-- Name:
|
|
2612
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2618
2613
|
--
|
|
2619
2614
|
|
|
2620
2615
|
ALTER TABLE ONLY profiles ALTER COLUMN id SET DEFAULT nextval('profiles_id_seq'::regclass);
|
|
2621
2616
|
|
|
2622
2617
|
|
|
2623
2618
|
--
|
|
2624
|
-
-- Name:
|
|
2619
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2625
2620
|
--
|
|
2626
2621
|
|
|
2627
2622
|
ALTER TABLE ONLY refs ALTER COLUMN id SET DEFAULT nextval('refs_id_seq'::regclass);
|
|
2628
2623
|
|
|
2629
2624
|
|
|
2630
2625
|
--
|
|
2631
|
-
-- Name:
|
|
2626
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2632
2627
|
--
|
|
2633
2628
|
|
|
2634
2629
|
ALTER TABLE ONLY report_templates ALTER COLUMN id SET DEFAULT nextval('report_templates_id_seq'::regclass);
|
|
2635
2630
|
|
|
2636
2631
|
|
|
2637
2632
|
--
|
|
2638
|
-
-- Name:
|
|
2633
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2639
2634
|
--
|
|
2640
2635
|
|
|
2641
2636
|
ALTER TABLE ONLY reports ALTER COLUMN id SET DEFAULT nextval('reports_id_seq'::regclass);
|
|
2642
2637
|
|
|
2643
2638
|
|
|
2644
2639
|
--
|
|
2645
|
-
-- Name:
|
|
2640
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2646
2641
|
--
|
|
2647
2642
|
|
|
2648
2643
|
ALTER TABLE ONLY routes ALTER COLUMN id SET DEFAULT nextval('routes_id_seq'::regclass);
|
|
2649
2644
|
|
|
2650
2645
|
|
|
2651
2646
|
--
|
|
2652
|
-
-- Name:
|
|
2647
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2653
2648
|
--
|
|
2654
2649
|
|
|
2655
2650
|
ALTER TABLE ONLY services ALTER COLUMN id SET DEFAULT nextval('services_id_seq'::regclass);
|
|
2656
2651
|
|
|
2657
2652
|
|
|
2658
2653
|
--
|
|
2659
|
-
-- Name:
|
|
2654
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2660
2655
|
--
|
|
2661
2656
|
|
|
2662
2657
|
ALTER TABLE ONLY session_events ALTER COLUMN id SET DEFAULT nextval('session_events_id_seq'::regclass);
|
|
2663
2658
|
|
|
2664
2659
|
|
|
2665
2660
|
--
|
|
2666
|
-
-- Name:
|
|
2661
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2667
2662
|
--
|
|
2668
2663
|
|
|
2669
2664
|
ALTER TABLE ONLY sessions ALTER COLUMN id SET DEFAULT nextval('sessions_id_seq'::regclass);
|
|
2670
2665
|
|
|
2671
2666
|
|
|
2672
2667
|
--
|
|
2673
|
-
-- Name:
|
|
2668
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2674
2669
|
--
|
|
2675
2670
|
|
|
2676
2671
|
ALTER TABLE ONLY tags ALTER COLUMN id SET DEFAULT nextval('tags_id_seq'::regclass);
|
|
2677
2672
|
|
|
2678
2673
|
|
|
2679
2674
|
--
|
|
2680
|
-
-- Name:
|
|
2675
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2681
2676
|
--
|
|
2682
2677
|
|
|
2683
2678
|
ALTER TABLE ONLY task_creds ALTER COLUMN id SET DEFAULT nextval('task_creds_id_seq'::regclass);
|
|
2684
2679
|
|
|
2685
2680
|
|
|
2686
2681
|
--
|
|
2687
|
-
-- Name:
|
|
2682
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2688
2683
|
--
|
|
2689
2684
|
|
|
2690
2685
|
ALTER TABLE ONLY task_hosts ALTER COLUMN id SET DEFAULT nextval('task_hosts_id_seq'::regclass);
|
|
2691
2686
|
|
|
2692
2687
|
|
|
2693
2688
|
--
|
|
2694
|
-
-- Name:
|
|
2689
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2695
2690
|
--
|
|
2696
2691
|
|
|
2697
2692
|
ALTER TABLE ONLY task_services ALTER COLUMN id SET DEFAULT nextval('task_services_id_seq'::regclass);
|
|
2698
2693
|
|
|
2699
2694
|
|
|
2700
2695
|
--
|
|
2701
|
-
-- Name:
|
|
2696
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2702
2697
|
--
|
|
2703
2698
|
|
|
2704
2699
|
ALTER TABLE ONLY task_sessions ALTER COLUMN id SET DEFAULT nextval('task_sessions_id_seq'::regclass);
|
|
2705
2700
|
|
|
2706
2701
|
|
|
2707
2702
|
--
|
|
2708
|
-
-- Name:
|
|
2703
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2709
2704
|
--
|
|
2710
2705
|
|
|
2711
2706
|
ALTER TABLE ONLY tasks ALTER COLUMN id SET DEFAULT nextval('tasks_id_seq'::regclass);
|
|
2712
2707
|
|
|
2713
2708
|
|
|
2714
2709
|
--
|
|
2715
|
-
-- Name:
|
|
2710
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2716
2711
|
--
|
|
2717
2712
|
|
|
2718
2713
|
ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
|
|
2719
2714
|
|
|
2720
2715
|
|
|
2721
2716
|
--
|
|
2722
|
-
-- Name:
|
|
2717
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2723
2718
|
--
|
|
2724
2719
|
|
|
2725
2720
|
ALTER TABLE ONLY vuln_attempts ALTER COLUMN id SET DEFAULT nextval('vuln_attempts_id_seq'::regclass);
|
|
2726
2721
|
|
|
2727
2722
|
|
|
2728
2723
|
--
|
|
2729
|
-
-- Name:
|
|
2724
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2730
2725
|
--
|
|
2731
2726
|
|
|
2732
2727
|
ALTER TABLE ONLY vuln_details ALTER COLUMN id SET DEFAULT nextval('vuln_details_id_seq'::regclass);
|
|
2733
2728
|
|
|
2734
2729
|
|
|
2735
2730
|
--
|
|
2736
|
-
-- Name:
|
|
2731
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2737
2732
|
--
|
|
2738
2733
|
|
|
2739
2734
|
ALTER TABLE ONLY vulns ALTER COLUMN id SET DEFAULT nextval('vulns_id_seq'::regclass);
|
|
2740
2735
|
|
|
2741
2736
|
|
|
2742
2737
|
--
|
|
2743
|
-
-- Name:
|
|
2738
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2744
2739
|
--
|
|
2745
2740
|
|
|
2746
2741
|
ALTER TABLE ONLY vulns_refs ALTER COLUMN id SET DEFAULT nextval('vulns_refs_id_seq'::regclass);
|
|
2747
2742
|
|
|
2748
2743
|
|
|
2749
2744
|
--
|
|
2750
|
-
-- Name:
|
|
2745
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2751
2746
|
--
|
|
2752
2747
|
|
|
2753
2748
|
ALTER TABLE ONLY web_forms ALTER COLUMN id SET DEFAULT nextval('web_forms_id_seq'::regclass);
|
|
2754
2749
|
|
|
2755
2750
|
|
|
2756
2751
|
--
|
|
2757
|
-
-- Name:
|
|
2752
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2758
2753
|
--
|
|
2759
2754
|
|
|
2760
2755
|
ALTER TABLE ONLY web_pages ALTER COLUMN id SET DEFAULT nextval('web_pages_id_seq'::regclass);
|
|
2761
2756
|
|
|
2762
2757
|
|
|
2763
2758
|
--
|
|
2764
|
-
-- Name:
|
|
2759
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2765
2760
|
--
|
|
2766
2761
|
|
|
2767
2762
|
ALTER TABLE ONLY web_sites ALTER COLUMN id SET DEFAULT nextval('web_sites_id_seq'::regclass);
|
|
2768
2763
|
|
|
2769
2764
|
|
|
2770
2765
|
--
|
|
2771
|
-
-- Name:
|
|
2766
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2772
2767
|
--
|
|
2773
2768
|
|
|
2774
2769
|
ALTER TABLE ONLY web_vulns ALTER COLUMN id SET DEFAULT nextval('web_vulns_id_seq'::regclass);
|
|
2775
2770
|
|
|
2776
2771
|
|
|
2777
2772
|
--
|
|
2778
|
-
-- Name:
|
|
2773
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2779
2774
|
--
|
|
2780
2775
|
|
|
2781
2776
|
ALTER TABLE ONLY wmap_requests ALTER COLUMN id SET DEFAULT nextval('wmap_requests_id_seq'::regclass);
|
|
2782
2777
|
|
|
2783
2778
|
|
|
2784
2779
|
--
|
|
2785
|
-
-- Name:
|
|
2780
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2786
2781
|
--
|
|
2787
2782
|
|
|
2788
2783
|
ALTER TABLE ONLY wmap_targets ALTER COLUMN id SET DEFAULT nextval('wmap_targets_id_seq'::regclass);
|
|
2789
2784
|
|
|
2790
2785
|
|
|
2791
2786
|
--
|
|
2792
|
-
-- Name:
|
|
2787
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2793
2788
|
--
|
|
2794
2789
|
|
|
2795
2790
|
ALTER TABLE ONLY workspaces ALTER COLUMN id SET DEFAULT nextval('workspaces_id_seq'::regclass);
|
|
2796
2791
|
|
|
2797
2792
|
|
|
2798
2793
|
--
|
|
2799
|
-
-- Name:
|
|
2794
|
+
-- Name: api_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2800
2795
|
--
|
|
2801
2796
|
|
|
2802
2797
|
ALTER TABLE ONLY api_keys
|
|
@@ -2804,7 +2799,7 @@ ALTER TABLE ONLY api_keys
|
|
|
2804
2799
|
|
|
2805
2800
|
|
|
2806
2801
|
--
|
|
2807
|
-
-- Name:
|
|
2802
|
+
-- Name: automatic_exploitation_match_results_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2808
2803
|
--
|
|
2809
2804
|
|
|
2810
2805
|
ALTER TABLE ONLY automatic_exploitation_match_results
|
|
@@ -2812,7 +2807,7 @@ ALTER TABLE ONLY automatic_exploitation_match_results
|
|
|
2812
2807
|
|
|
2813
2808
|
|
|
2814
2809
|
--
|
|
2815
|
-
-- Name:
|
|
2810
|
+
-- Name: automatic_exploitation_match_sets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2816
2811
|
--
|
|
2817
2812
|
|
|
2818
2813
|
ALTER TABLE ONLY automatic_exploitation_match_sets
|
|
@@ -2820,7 +2815,7 @@ ALTER TABLE ONLY automatic_exploitation_match_sets
|
|
|
2820
2815
|
|
|
2821
2816
|
|
|
2822
2817
|
--
|
|
2823
|
-
-- Name:
|
|
2818
|
+
-- Name: automatic_exploitation_matches_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2824
2819
|
--
|
|
2825
2820
|
|
|
2826
2821
|
ALTER TABLE ONLY automatic_exploitation_matches
|
|
@@ -2828,7 +2823,7 @@ ALTER TABLE ONLY automatic_exploitation_matches
|
|
|
2828
2823
|
|
|
2829
2824
|
|
|
2830
2825
|
--
|
|
2831
|
-
-- Name:
|
|
2826
|
+
-- Name: automatic_exploitation_runs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2832
2827
|
--
|
|
2833
2828
|
|
|
2834
2829
|
ALTER TABLE ONLY automatic_exploitation_runs
|
|
@@ -2836,7 +2831,7 @@ ALTER TABLE ONLY automatic_exploitation_runs
|
|
|
2836
2831
|
|
|
2837
2832
|
|
|
2838
2833
|
--
|
|
2839
|
-
-- Name:
|
|
2834
|
+
-- Name: clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2840
2835
|
--
|
|
2841
2836
|
|
|
2842
2837
|
ALTER TABLE ONLY clients
|
|
@@ -2844,7 +2839,7 @@ ALTER TABLE ONLY clients
|
|
|
2844
2839
|
|
|
2845
2840
|
|
|
2846
2841
|
--
|
|
2847
|
-
-- Name:
|
|
2842
|
+
-- Name: creds_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2848
2843
|
--
|
|
2849
2844
|
|
|
2850
2845
|
ALTER TABLE ONLY creds
|
|
@@ -2852,7 +2847,7 @@ ALTER TABLE ONLY creds
|
|
|
2852
2847
|
|
|
2853
2848
|
|
|
2854
2849
|
--
|
|
2855
|
-
-- Name:
|
|
2850
|
+
-- Name: events_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2856
2851
|
--
|
|
2857
2852
|
|
|
2858
2853
|
ALTER TABLE ONLY events
|
|
@@ -2860,7 +2855,7 @@ ALTER TABLE ONLY events
|
|
|
2860
2855
|
|
|
2861
2856
|
|
|
2862
2857
|
--
|
|
2863
|
-
-- Name:
|
|
2858
|
+
-- Name: exploit_attempts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2864
2859
|
--
|
|
2865
2860
|
|
|
2866
2861
|
ALTER TABLE ONLY exploit_attempts
|
|
@@ -2868,7 +2863,7 @@ ALTER TABLE ONLY exploit_attempts
|
|
|
2868
2863
|
|
|
2869
2864
|
|
|
2870
2865
|
--
|
|
2871
|
-
-- Name:
|
|
2866
|
+
-- Name: exploited_hosts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2872
2867
|
--
|
|
2873
2868
|
|
|
2874
2869
|
ALTER TABLE ONLY exploited_hosts
|
|
@@ -2876,7 +2871,7 @@ ALTER TABLE ONLY exploited_hosts
|
|
|
2876
2871
|
|
|
2877
2872
|
|
|
2878
2873
|
--
|
|
2879
|
-
-- Name:
|
|
2874
|
+
-- Name: host_details_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2880
2875
|
--
|
|
2881
2876
|
|
|
2882
2877
|
ALTER TABLE ONLY host_details
|
|
@@ -2884,7 +2879,7 @@ ALTER TABLE ONLY host_details
|
|
|
2884
2879
|
|
|
2885
2880
|
|
|
2886
2881
|
--
|
|
2887
|
-
-- Name:
|
|
2882
|
+
-- Name: hosts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2888
2883
|
--
|
|
2889
2884
|
|
|
2890
2885
|
ALTER TABLE ONLY hosts
|
|
@@ -2892,7 +2887,7 @@ ALTER TABLE ONLY hosts
|
|
|
2892
2887
|
|
|
2893
2888
|
|
|
2894
2889
|
--
|
|
2895
|
-
-- Name:
|
|
2890
|
+
-- Name: hosts_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2896
2891
|
--
|
|
2897
2892
|
|
|
2898
2893
|
ALTER TABLE ONLY hosts_tags
|
|
@@ -2900,7 +2895,7 @@ ALTER TABLE ONLY hosts_tags
|
|
|
2900
2895
|
|
|
2901
2896
|
|
|
2902
2897
|
--
|
|
2903
|
-
-- Name:
|
|
2898
|
+
-- Name: listeners_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2904
2899
|
--
|
|
2905
2900
|
|
|
2906
2901
|
ALTER TABLE ONLY listeners
|
|
@@ -2908,7 +2903,7 @@ ALTER TABLE ONLY listeners
|
|
|
2908
2903
|
|
|
2909
2904
|
|
|
2910
2905
|
--
|
|
2911
|
-
-- Name:
|
|
2906
|
+
-- Name: loots_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2912
2907
|
--
|
|
2913
2908
|
|
|
2914
2909
|
ALTER TABLE ONLY loots
|
|
@@ -2916,7 +2911,7 @@ ALTER TABLE ONLY loots
|
|
|
2916
2911
|
|
|
2917
2912
|
|
|
2918
2913
|
--
|
|
2919
|
-
-- Name:
|
|
2914
|
+
-- Name: macros_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2920
2915
|
--
|
|
2921
2916
|
|
|
2922
2917
|
ALTER TABLE ONLY macros
|
|
@@ -2924,7 +2919,7 @@ ALTER TABLE ONLY macros
|
|
|
2924
2919
|
|
|
2925
2920
|
|
|
2926
2921
|
--
|
|
2927
|
-
-- Name:
|
|
2922
|
+
-- Name: metasploit_credential_cores_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2928
2923
|
--
|
|
2929
2924
|
|
|
2930
2925
|
ALTER TABLE ONLY metasploit_credential_cores
|
|
@@ -2932,7 +2927,7 @@ ALTER TABLE ONLY metasploit_credential_cores
|
|
|
2932
2927
|
|
|
2933
2928
|
|
|
2934
2929
|
--
|
|
2935
|
-
-- Name:
|
|
2930
|
+
-- Name: metasploit_credential_logins_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2936
2931
|
--
|
|
2937
2932
|
|
|
2938
2933
|
ALTER TABLE ONLY metasploit_credential_logins
|
|
@@ -2940,7 +2935,7 @@ ALTER TABLE ONLY metasploit_credential_logins
|
|
|
2940
2935
|
|
|
2941
2936
|
|
|
2942
2937
|
--
|
|
2943
|
-
-- Name:
|
|
2938
|
+
-- Name: metasploit_credential_origin_cracked_passwords_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2944
2939
|
--
|
|
2945
2940
|
|
|
2946
2941
|
ALTER TABLE ONLY metasploit_credential_origin_cracked_passwords
|
|
@@ -2948,7 +2943,7 @@ ALTER TABLE ONLY metasploit_credential_origin_cracked_passwords
|
|
|
2948
2943
|
|
|
2949
2944
|
|
|
2950
2945
|
--
|
|
2951
|
-
-- Name:
|
|
2946
|
+
-- Name: metasploit_credential_origin_imports_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2952
2947
|
--
|
|
2953
2948
|
|
|
2954
2949
|
ALTER TABLE ONLY metasploit_credential_origin_imports
|
|
@@ -2956,7 +2951,7 @@ ALTER TABLE ONLY metasploit_credential_origin_imports
|
|
|
2956
2951
|
|
|
2957
2952
|
|
|
2958
2953
|
--
|
|
2959
|
-
-- Name:
|
|
2954
|
+
-- Name: metasploit_credential_origin_manuals_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2960
2955
|
--
|
|
2961
2956
|
|
|
2962
2957
|
ALTER TABLE ONLY metasploit_credential_origin_manuals
|
|
@@ -2964,7 +2959,7 @@ ALTER TABLE ONLY metasploit_credential_origin_manuals
|
|
|
2964
2959
|
|
|
2965
2960
|
|
|
2966
2961
|
--
|
|
2967
|
-
-- Name:
|
|
2962
|
+
-- Name: metasploit_credential_origin_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2968
2963
|
--
|
|
2969
2964
|
|
|
2970
2965
|
ALTER TABLE ONLY metasploit_credential_origin_services
|
|
@@ -2972,7 +2967,7 @@ ALTER TABLE ONLY metasploit_credential_origin_services
|
|
|
2972
2967
|
|
|
2973
2968
|
|
|
2974
2969
|
--
|
|
2975
|
-
-- Name:
|
|
2970
|
+
-- Name: metasploit_credential_origin_sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2976
2971
|
--
|
|
2977
2972
|
|
|
2978
2973
|
ALTER TABLE ONLY metasploit_credential_origin_sessions
|
|
@@ -2980,7 +2975,7 @@ ALTER TABLE ONLY metasploit_credential_origin_sessions
|
|
|
2980
2975
|
|
|
2981
2976
|
|
|
2982
2977
|
--
|
|
2983
|
-
-- Name:
|
|
2978
|
+
-- Name: metasploit_credential_privates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2984
2979
|
--
|
|
2985
2980
|
|
|
2986
2981
|
ALTER TABLE ONLY metasploit_credential_privates
|
|
@@ -2988,7 +2983,7 @@ ALTER TABLE ONLY metasploit_credential_privates
|
|
|
2988
2983
|
|
|
2989
2984
|
|
|
2990
2985
|
--
|
|
2991
|
-
-- Name:
|
|
2986
|
+
-- Name: metasploit_credential_publics_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2992
2987
|
--
|
|
2993
2988
|
|
|
2994
2989
|
ALTER TABLE ONLY metasploit_credential_publics
|
|
@@ -2996,7 +2991,7 @@ ALTER TABLE ONLY metasploit_credential_publics
|
|
|
2996
2991
|
|
|
2997
2992
|
|
|
2998
2993
|
--
|
|
2999
|
-
-- Name:
|
|
2994
|
+
-- Name: metasploit_credential_realms_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3000
2995
|
--
|
|
3001
2996
|
|
|
3002
2997
|
ALTER TABLE ONLY metasploit_credential_realms
|
|
@@ -3004,7 +2999,7 @@ ALTER TABLE ONLY metasploit_credential_realms
|
|
|
3004
2999
|
|
|
3005
3000
|
|
|
3006
3001
|
--
|
|
3007
|
-
-- Name:
|
|
3002
|
+
-- Name: mod_refs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3008
3003
|
--
|
|
3009
3004
|
|
|
3010
3005
|
ALTER TABLE ONLY mod_refs
|
|
@@ -3012,7 +3007,7 @@ ALTER TABLE ONLY mod_refs
|
|
|
3012
3007
|
|
|
3013
3008
|
|
|
3014
3009
|
--
|
|
3015
|
-
-- Name:
|
|
3010
|
+
-- Name: module_actions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3016
3011
|
--
|
|
3017
3012
|
|
|
3018
3013
|
ALTER TABLE ONLY module_actions
|
|
@@ -3020,7 +3015,7 @@ ALTER TABLE ONLY module_actions
|
|
|
3020
3015
|
|
|
3021
3016
|
|
|
3022
3017
|
--
|
|
3023
|
-
-- Name:
|
|
3018
|
+
-- Name: module_archs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3024
3019
|
--
|
|
3025
3020
|
|
|
3026
3021
|
ALTER TABLE ONLY module_archs
|
|
@@ -3028,7 +3023,7 @@ ALTER TABLE ONLY module_archs
|
|
|
3028
3023
|
|
|
3029
3024
|
|
|
3030
3025
|
--
|
|
3031
|
-
-- Name:
|
|
3026
|
+
-- Name: module_authors_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3032
3027
|
--
|
|
3033
3028
|
|
|
3034
3029
|
ALTER TABLE ONLY module_authors
|
|
@@ -3036,7 +3031,7 @@ ALTER TABLE ONLY module_authors
|
|
|
3036
3031
|
|
|
3037
3032
|
|
|
3038
3033
|
--
|
|
3039
|
-
-- Name:
|
|
3034
|
+
-- Name: module_details_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3040
3035
|
--
|
|
3041
3036
|
|
|
3042
3037
|
ALTER TABLE ONLY module_details
|
|
@@ -3044,7 +3039,7 @@ ALTER TABLE ONLY module_details
|
|
|
3044
3039
|
|
|
3045
3040
|
|
|
3046
3041
|
--
|
|
3047
|
-
-- Name:
|
|
3042
|
+
-- Name: module_mixins_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3048
3043
|
--
|
|
3049
3044
|
|
|
3050
3045
|
ALTER TABLE ONLY module_mixins
|
|
@@ -3052,7 +3047,7 @@ ALTER TABLE ONLY module_mixins
|
|
|
3052
3047
|
|
|
3053
3048
|
|
|
3054
3049
|
--
|
|
3055
|
-
-- Name:
|
|
3050
|
+
-- Name: module_platforms_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3056
3051
|
--
|
|
3057
3052
|
|
|
3058
3053
|
ALTER TABLE ONLY module_platforms
|
|
@@ -3060,7 +3055,7 @@ ALTER TABLE ONLY module_platforms
|
|
|
3060
3055
|
|
|
3061
3056
|
|
|
3062
3057
|
--
|
|
3063
|
-
-- Name:
|
|
3058
|
+
-- Name: module_refs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3064
3059
|
--
|
|
3065
3060
|
|
|
3066
3061
|
ALTER TABLE ONLY module_refs
|
|
@@ -3068,7 +3063,7 @@ ALTER TABLE ONLY module_refs
|
|
|
3068
3063
|
|
|
3069
3064
|
|
|
3070
3065
|
--
|
|
3071
|
-
-- Name:
|
|
3066
|
+
-- Name: module_runs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3072
3067
|
--
|
|
3073
3068
|
|
|
3074
3069
|
ALTER TABLE ONLY module_runs
|
|
@@ -3076,7 +3071,7 @@ ALTER TABLE ONLY module_runs
|
|
|
3076
3071
|
|
|
3077
3072
|
|
|
3078
3073
|
--
|
|
3079
|
-
-- Name:
|
|
3074
|
+
-- Name: module_targets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3080
3075
|
--
|
|
3081
3076
|
|
|
3082
3077
|
ALTER TABLE ONLY module_targets
|
|
@@ -3084,7 +3079,7 @@ ALTER TABLE ONLY module_targets
|
|
|
3084
3079
|
|
|
3085
3080
|
|
|
3086
3081
|
--
|
|
3087
|
-
-- Name:
|
|
3082
|
+
-- Name: nexpose_consoles_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3088
3083
|
--
|
|
3089
3084
|
|
|
3090
3085
|
ALTER TABLE ONLY nexpose_consoles
|
|
@@ -3092,7 +3087,7 @@ ALTER TABLE ONLY nexpose_consoles
|
|
|
3092
3087
|
|
|
3093
3088
|
|
|
3094
3089
|
--
|
|
3095
|
-
-- Name:
|
|
3090
|
+
-- Name: notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3096
3091
|
--
|
|
3097
3092
|
|
|
3098
3093
|
ALTER TABLE ONLY notes
|
|
@@ -3100,7 +3095,7 @@ ALTER TABLE ONLY notes
|
|
|
3100
3095
|
|
|
3101
3096
|
|
|
3102
3097
|
--
|
|
3103
|
-
-- Name:
|
|
3098
|
+
-- Name: profiles_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3104
3099
|
--
|
|
3105
3100
|
|
|
3106
3101
|
ALTER TABLE ONLY profiles
|
|
@@ -3108,7 +3103,7 @@ ALTER TABLE ONLY profiles
|
|
|
3108
3103
|
|
|
3109
3104
|
|
|
3110
3105
|
--
|
|
3111
|
-
-- Name:
|
|
3106
|
+
-- Name: refs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3112
3107
|
--
|
|
3113
3108
|
|
|
3114
3109
|
ALTER TABLE ONLY refs
|
|
@@ -3116,7 +3111,7 @@ ALTER TABLE ONLY refs
|
|
|
3116
3111
|
|
|
3117
3112
|
|
|
3118
3113
|
--
|
|
3119
|
-
-- Name:
|
|
3114
|
+
-- Name: report_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3120
3115
|
--
|
|
3121
3116
|
|
|
3122
3117
|
ALTER TABLE ONLY report_templates
|
|
@@ -3124,7 +3119,7 @@ ALTER TABLE ONLY report_templates
|
|
|
3124
3119
|
|
|
3125
3120
|
|
|
3126
3121
|
--
|
|
3127
|
-
-- Name:
|
|
3122
|
+
-- Name: reports_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3128
3123
|
--
|
|
3129
3124
|
|
|
3130
3125
|
ALTER TABLE ONLY reports
|
|
@@ -3132,7 +3127,7 @@ ALTER TABLE ONLY reports
|
|
|
3132
3127
|
|
|
3133
3128
|
|
|
3134
3129
|
--
|
|
3135
|
-
-- Name:
|
|
3130
|
+
-- Name: routes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3136
3131
|
--
|
|
3137
3132
|
|
|
3138
3133
|
ALTER TABLE ONLY routes
|
|
@@ -3140,7 +3135,7 @@ ALTER TABLE ONLY routes
|
|
|
3140
3135
|
|
|
3141
3136
|
|
|
3142
3137
|
--
|
|
3143
|
-
-- Name:
|
|
3138
|
+
-- Name: services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3144
3139
|
--
|
|
3145
3140
|
|
|
3146
3141
|
ALTER TABLE ONLY services
|
|
@@ -3148,7 +3143,7 @@ ALTER TABLE ONLY services
|
|
|
3148
3143
|
|
|
3149
3144
|
|
|
3150
3145
|
--
|
|
3151
|
-
-- Name:
|
|
3146
|
+
-- Name: session_events_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3152
3147
|
--
|
|
3153
3148
|
|
|
3154
3149
|
ALTER TABLE ONLY session_events
|
|
@@ -3156,7 +3151,7 @@ ALTER TABLE ONLY session_events
|
|
|
3156
3151
|
|
|
3157
3152
|
|
|
3158
3153
|
--
|
|
3159
|
-
-- Name:
|
|
3154
|
+
-- Name: sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3160
3155
|
--
|
|
3161
3156
|
|
|
3162
3157
|
ALTER TABLE ONLY sessions
|
|
@@ -3164,7 +3159,7 @@ ALTER TABLE ONLY sessions
|
|
|
3164
3159
|
|
|
3165
3160
|
|
|
3166
3161
|
--
|
|
3167
|
-
-- Name:
|
|
3162
|
+
-- Name: tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3168
3163
|
--
|
|
3169
3164
|
|
|
3170
3165
|
ALTER TABLE ONLY tags
|
|
@@ -3172,7 +3167,7 @@ ALTER TABLE ONLY tags
|
|
|
3172
3167
|
|
|
3173
3168
|
|
|
3174
3169
|
--
|
|
3175
|
-
-- Name:
|
|
3170
|
+
-- Name: task_creds_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3176
3171
|
--
|
|
3177
3172
|
|
|
3178
3173
|
ALTER TABLE ONLY task_creds
|
|
@@ -3180,7 +3175,7 @@ ALTER TABLE ONLY task_creds
|
|
|
3180
3175
|
|
|
3181
3176
|
|
|
3182
3177
|
--
|
|
3183
|
-
-- Name:
|
|
3178
|
+
-- Name: task_hosts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3184
3179
|
--
|
|
3185
3180
|
|
|
3186
3181
|
ALTER TABLE ONLY task_hosts
|
|
@@ -3188,7 +3183,7 @@ ALTER TABLE ONLY task_hosts
|
|
|
3188
3183
|
|
|
3189
3184
|
|
|
3190
3185
|
--
|
|
3191
|
-
-- Name:
|
|
3186
|
+
-- Name: task_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3192
3187
|
--
|
|
3193
3188
|
|
|
3194
3189
|
ALTER TABLE ONLY task_services
|
|
@@ -3196,7 +3191,7 @@ ALTER TABLE ONLY task_services
|
|
|
3196
3191
|
|
|
3197
3192
|
|
|
3198
3193
|
--
|
|
3199
|
-
-- Name:
|
|
3194
|
+
-- Name: task_sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3200
3195
|
--
|
|
3201
3196
|
|
|
3202
3197
|
ALTER TABLE ONLY task_sessions
|
|
@@ -3204,7 +3199,7 @@ ALTER TABLE ONLY task_sessions
|
|
|
3204
3199
|
|
|
3205
3200
|
|
|
3206
3201
|
--
|
|
3207
|
-
-- Name:
|
|
3202
|
+
-- Name: tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3208
3203
|
--
|
|
3209
3204
|
|
|
3210
3205
|
ALTER TABLE ONLY tasks
|
|
@@ -3212,7 +3207,7 @@ ALTER TABLE ONLY tasks
|
|
|
3212
3207
|
|
|
3213
3208
|
|
|
3214
3209
|
--
|
|
3215
|
-
-- Name:
|
|
3210
|
+
-- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3216
3211
|
--
|
|
3217
3212
|
|
|
3218
3213
|
ALTER TABLE ONLY users
|
|
@@ -3220,7 +3215,7 @@ ALTER TABLE ONLY users
|
|
|
3220
3215
|
|
|
3221
3216
|
|
|
3222
3217
|
--
|
|
3223
|
-
-- Name:
|
|
3218
|
+
-- Name: vuln_attempts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3224
3219
|
--
|
|
3225
3220
|
|
|
3226
3221
|
ALTER TABLE ONLY vuln_attempts
|
|
@@ -3228,7 +3223,7 @@ ALTER TABLE ONLY vuln_attempts
|
|
|
3228
3223
|
|
|
3229
3224
|
|
|
3230
3225
|
--
|
|
3231
|
-
-- Name:
|
|
3226
|
+
-- Name: vuln_details_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3232
3227
|
--
|
|
3233
3228
|
|
|
3234
3229
|
ALTER TABLE ONLY vuln_details
|
|
@@ -3236,7 +3231,7 @@ ALTER TABLE ONLY vuln_details
|
|
|
3236
3231
|
|
|
3237
3232
|
|
|
3238
3233
|
--
|
|
3239
|
-
-- Name:
|
|
3234
|
+
-- Name: vulns_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3240
3235
|
--
|
|
3241
3236
|
|
|
3242
3237
|
ALTER TABLE ONLY vulns
|
|
@@ -3244,7 +3239,7 @@ ALTER TABLE ONLY vulns
|
|
|
3244
3239
|
|
|
3245
3240
|
|
|
3246
3241
|
--
|
|
3247
|
-
-- Name:
|
|
3242
|
+
-- Name: vulns_refs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3248
3243
|
--
|
|
3249
3244
|
|
|
3250
3245
|
ALTER TABLE ONLY vulns_refs
|
|
@@ -3252,7 +3247,7 @@ ALTER TABLE ONLY vulns_refs
|
|
|
3252
3247
|
|
|
3253
3248
|
|
|
3254
3249
|
--
|
|
3255
|
-
-- Name:
|
|
3250
|
+
-- Name: web_forms_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3256
3251
|
--
|
|
3257
3252
|
|
|
3258
3253
|
ALTER TABLE ONLY web_forms
|
|
@@ -3260,7 +3255,7 @@ ALTER TABLE ONLY web_forms
|
|
|
3260
3255
|
|
|
3261
3256
|
|
|
3262
3257
|
--
|
|
3263
|
-
-- Name:
|
|
3258
|
+
-- Name: web_pages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3264
3259
|
--
|
|
3265
3260
|
|
|
3266
3261
|
ALTER TABLE ONLY web_pages
|
|
@@ -3268,7 +3263,7 @@ ALTER TABLE ONLY web_pages
|
|
|
3268
3263
|
|
|
3269
3264
|
|
|
3270
3265
|
--
|
|
3271
|
-
-- Name:
|
|
3266
|
+
-- Name: web_sites_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3272
3267
|
--
|
|
3273
3268
|
|
|
3274
3269
|
ALTER TABLE ONLY web_sites
|
|
@@ -3276,7 +3271,7 @@ ALTER TABLE ONLY web_sites
|
|
|
3276
3271
|
|
|
3277
3272
|
|
|
3278
3273
|
--
|
|
3279
|
-
-- Name:
|
|
3274
|
+
-- Name: web_vulns_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3280
3275
|
--
|
|
3281
3276
|
|
|
3282
3277
|
ALTER TABLE ONLY web_vulns
|
|
@@ -3284,7 +3279,7 @@ ALTER TABLE ONLY web_vulns
|
|
|
3284
3279
|
|
|
3285
3280
|
|
|
3286
3281
|
--
|
|
3287
|
-
-- Name:
|
|
3282
|
+
-- Name: wmap_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3288
3283
|
--
|
|
3289
3284
|
|
|
3290
3285
|
ALTER TABLE ONLY wmap_requests
|
|
@@ -3292,7 +3287,7 @@ ALTER TABLE ONLY wmap_requests
|
|
|
3292
3287
|
|
|
3293
3288
|
|
|
3294
3289
|
--
|
|
3295
|
-
-- Name:
|
|
3290
|
+
-- Name: wmap_targets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3296
3291
|
--
|
|
3297
3292
|
|
|
3298
3293
|
ALTER TABLE ONLY wmap_targets
|
|
@@ -3300,7 +3295,7 @@ ALTER TABLE ONLY wmap_targets
|
|
|
3300
3295
|
|
|
3301
3296
|
|
|
3302
3297
|
--
|
|
3303
|
-
-- Name:
|
|
3298
|
+
-- Name: workspaces_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3304
3299
|
--
|
|
3305
3300
|
|
|
3306
3301
|
ALTER TABLE ONLY workspaces
|
|
@@ -3308,511 +3303,511 @@ ALTER TABLE ONLY workspaces
|
|
|
3308
3303
|
|
|
3309
3304
|
|
|
3310
3305
|
--
|
|
3311
|
-
-- Name: index_automatic_exploitation_match_results_on_match_id; Type: INDEX; Schema: public; Owner:
|
|
3306
|
+
-- Name: index_automatic_exploitation_match_results_on_match_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3312
3307
|
--
|
|
3313
3308
|
|
|
3314
3309
|
CREATE INDEX index_automatic_exploitation_match_results_on_match_id ON automatic_exploitation_match_results USING btree (match_id);
|
|
3315
3310
|
|
|
3316
3311
|
|
|
3317
3312
|
--
|
|
3318
|
-
-- Name: index_automatic_exploitation_match_results_on_run_id; Type: INDEX; Schema: public; Owner:
|
|
3313
|
+
-- Name: index_automatic_exploitation_match_results_on_run_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3319
3314
|
--
|
|
3320
3315
|
|
|
3321
3316
|
CREATE INDEX index_automatic_exploitation_match_results_on_run_id ON automatic_exploitation_match_results USING btree (run_id);
|
|
3322
3317
|
|
|
3323
3318
|
|
|
3324
3319
|
--
|
|
3325
|
-
-- Name: index_automatic_exploitation_match_sets_on_user_id; Type: INDEX; Schema: public; Owner:
|
|
3320
|
+
-- Name: index_automatic_exploitation_match_sets_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3326
3321
|
--
|
|
3327
3322
|
|
|
3328
3323
|
CREATE INDEX index_automatic_exploitation_match_sets_on_user_id ON automatic_exploitation_match_sets USING btree (user_id);
|
|
3329
3324
|
|
|
3330
3325
|
|
|
3331
3326
|
--
|
|
3332
|
-
-- Name: index_automatic_exploitation_match_sets_on_workspace_id; Type: INDEX; Schema: public; Owner:
|
|
3327
|
+
-- Name: index_automatic_exploitation_match_sets_on_workspace_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3333
3328
|
--
|
|
3334
3329
|
|
|
3335
3330
|
CREATE INDEX index_automatic_exploitation_match_sets_on_workspace_id ON automatic_exploitation_match_sets USING btree (workspace_id);
|
|
3336
3331
|
|
|
3337
3332
|
|
|
3338
3333
|
--
|
|
3339
|
-
-- Name: index_automatic_exploitation_matches_on_module_detail_id; Type: INDEX; Schema: public; Owner:
|
|
3334
|
+
-- Name: index_automatic_exploitation_matches_on_module_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3340
3335
|
--
|
|
3341
3336
|
|
|
3342
3337
|
CREATE INDEX index_automatic_exploitation_matches_on_module_detail_id ON automatic_exploitation_matches USING btree (module_detail_id);
|
|
3343
3338
|
|
|
3344
3339
|
|
|
3345
3340
|
--
|
|
3346
|
-
-- Name: index_automatic_exploitation_matches_on_module_fullname; Type: INDEX; Schema: public; Owner:
|
|
3341
|
+
-- Name: index_automatic_exploitation_matches_on_module_fullname; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3347
3342
|
--
|
|
3348
3343
|
|
|
3349
3344
|
CREATE INDEX index_automatic_exploitation_matches_on_module_fullname ON automatic_exploitation_matches USING btree (module_fullname);
|
|
3350
3345
|
|
|
3351
3346
|
|
|
3352
3347
|
--
|
|
3353
|
-
-- Name: index_automatic_exploitation_runs_on_match_set_id; Type: INDEX; Schema: public; Owner:
|
|
3348
|
+
-- Name: index_automatic_exploitation_runs_on_match_set_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3354
3349
|
--
|
|
3355
3350
|
|
|
3356
3351
|
CREATE INDEX index_automatic_exploitation_runs_on_match_set_id ON automatic_exploitation_runs USING btree (match_set_id);
|
|
3357
3352
|
|
|
3358
3353
|
|
|
3359
3354
|
--
|
|
3360
|
-
-- Name: index_automatic_exploitation_runs_on_user_id; Type: INDEX; Schema: public; Owner:
|
|
3355
|
+
-- Name: index_automatic_exploitation_runs_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3361
3356
|
--
|
|
3362
3357
|
|
|
3363
3358
|
CREATE INDEX index_automatic_exploitation_runs_on_user_id ON automatic_exploitation_runs USING btree (user_id);
|
|
3364
3359
|
|
|
3365
3360
|
|
|
3366
3361
|
--
|
|
3367
|
-
-- Name: index_automatic_exploitation_runs_on_workspace_id; Type: INDEX; Schema: public; Owner:
|
|
3362
|
+
-- Name: index_automatic_exploitation_runs_on_workspace_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3368
3363
|
--
|
|
3369
3364
|
|
|
3370
3365
|
CREATE INDEX index_automatic_exploitation_runs_on_workspace_id ON automatic_exploitation_runs USING btree (workspace_id);
|
|
3371
3366
|
|
|
3372
3367
|
|
|
3373
3368
|
--
|
|
3374
|
-
-- Name: index_hosts_on_name; Type: INDEX; Schema: public; Owner:
|
|
3369
|
+
-- Name: index_hosts_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3375
3370
|
--
|
|
3376
3371
|
|
|
3377
3372
|
CREATE INDEX index_hosts_on_name ON hosts USING btree (name);
|
|
3378
3373
|
|
|
3379
3374
|
|
|
3380
3375
|
--
|
|
3381
|
-
-- Name: index_hosts_on_os_flavor; Type: INDEX; Schema: public; Owner:
|
|
3376
|
+
-- Name: index_hosts_on_os_flavor; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3382
3377
|
--
|
|
3383
3378
|
|
|
3384
3379
|
CREATE INDEX index_hosts_on_os_flavor ON hosts USING btree (os_flavor);
|
|
3385
3380
|
|
|
3386
3381
|
|
|
3387
3382
|
--
|
|
3388
|
-
-- Name: index_hosts_on_os_name; Type: INDEX; Schema: public; Owner:
|
|
3383
|
+
-- Name: index_hosts_on_os_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3389
3384
|
--
|
|
3390
3385
|
|
|
3391
3386
|
CREATE INDEX index_hosts_on_os_name ON hosts USING btree (os_name);
|
|
3392
3387
|
|
|
3393
3388
|
|
|
3394
3389
|
--
|
|
3395
|
-
-- Name: index_hosts_on_purpose; Type: INDEX; Schema: public; Owner:
|
|
3390
|
+
-- Name: index_hosts_on_purpose; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3396
3391
|
--
|
|
3397
3392
|
|
|
3398
3393
|
CREATE INDEX index_hosts_on_purpose ON hosts USING btree (purpose);
|
|
3399
3394
|
|
|
3400
3395
|
|
|
3401
3396
|
--
|
|
3402
|
-
-- Name: index_hosts_on_state; Type: INDEX; Schema: public; Owner:
|
|
3397
|
+
-- Name: index_hosts_on_state; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3403
3398
|
--
|
|
3404
3399
|
|
|
3405
3400
|
CREATE INDEX index_hosts_on_state ON hosts USING btree (state);
|
|
3406
3401
|
|
|
3407
3402
|
|
|
3408
3403
|
--
|
|
3409
|
-
-- Name: index_hosts_on_workspace_id_and_address; Type: INDEX; Schema: public; Owner:
|
|
3404
|
+
-- Name: index_hosts_on_workspace_id_and_address; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3410
3405
|
--
|
|
3411
3406
|
|
|
3412
3407
|
CREATE UNIQUE INDEX index_hosts_on_workspace_id_and_address ON hosts USING btree (workspace_id, address);
|
|
3413
3408
|
|
|
3414
3409
|
|
|
3415
3410
|
--
|
|
3416
|
-
-- Name: index_loots_on_module_run_id; Type: INDEX; Schema: public; Owner:
|
|
3411
|
+
-- Name: index_loots_on_module_run_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3417
3412
|
--
|
|
3418
3413
|
|
|
3419
3414
|
CREATE INDEX index_loots_on_module_run_id ON loots USING btree (module_run_id);
|
|
3420
3415
|
|
|
3421
3416
|
|
|
3422
3417
|
--
|
|
3423
|
-
-- Name: index_metasploit_credential_cores_on_origin_type_and_origin_id; Type: INDEX; Schema: public; Owner:
|
|
3418
|
+
-- Name: index_metasploit_credential_cores_on_origin_type_and_origin_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3424
3419
|
--
|
|
3425
3420
|
|
|
3426
3421
|
CREATE INDEX index_metasploit_credential_cores_on_origin_type_and_origin_id ON metasploit_credential_cores USING btree (origin_type, origin_id);
|
|
3427
3422
|
|
|
3428
3423
|
|
|
3429
3424
|
--
|
|
3430
|
-
-- Name: index_metasploit_credential_cores_on_private_id; Type: INDEX; Schema: public; Owner:
|
|
3425
|
+
-- Name: index_metasploit_credential_cores_on_private_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3431
3426
|
--
|
|
3432
3427
|
|
|
3433
3428
|
CREATE INDEX index_metasploit_credential_cores_on_private_id ON metasploit_credential_cores USING btree (private_id);
|
|
3434
3429
|
|
|
3435
3430
|
|
|
3436
3431
|
--
|
|
3437
|
-
-- Name: index_metasploit_credential_cores_on_public_id; Type: INDEX; Schema: public; Owner:
|
|
3432
|
+
-- Name: index_metasploit_credential_cores_on_public_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3438
3433
|
--
|
|
3439
3434
|
|
|
3440
3435
|
CREATE INDEX index_metasploit_credential_cores_on_public_id ON metasploit_credential_cores USING btree (public_id);
|
|
3441
3436
|
|
|
3442
3437
|
|
|
3443
3438
|
--
|
|
3444
|
-
-- Name: index_metasploit_credential_cores_on_realm_id; Type: INDEX; Schema: public; Owner:
|
|
3439
|
+
-- Name: index_metasploit_credential_cores_on_realm_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3445
3440
|
--
|
|
3446
3441
|
|
|
3447
3442
|
CREATE INDEX index_metasploit_credential_cores_on_realm_id ON metasploit_credential_cores USING btree (realm_id);
|
|
3448
3443
|
|
|
3449
3444
|
|
|
3450
3445
|
--
|
|
3451
|
-
-- Name: index_metasploit_credential_cores_on_workspace_id; Type: INDEX; Schema: public; Owner:
|
|
3446
|
+
-- Name: index_metasploit_credential_cores_on_workspace_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3452
3447
|
--
|
|
3453
3448
|
|
|
3454
3449
|
CREATE INDEX index_metasploit_credential_cores_on_workspace_id ON metasploit_credential_cores USING btree (workspace_id);
|
|
3455
3450
|
|
|
3456
3451
|
|
|
3457
3452
|
--
|
|
3458
|
-
-- Name: index_metasploit_credential_logins_on_core_id_and_service_id; Type: INDEX; Schema: public; Owner:
|
|
3453
|
+
-- Name: index_metasploit_credential_logins_on_core_id_and_service_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3459
3454
|
--
|
|
3460
3455
|
|
|
3461
3456
|
CREATE UNIQUE INDEX index_metasploit_credential_logins_on_core_id_and_service_id ON metasploit_credential_logins USING btree (core_id, service_id);
|
|
3462
3457
|
|
|
3463
3458
|
|
|
3464
3459
|
--
|
|
3465
|
-
-- Name: index_metasploit_credential_logins_on_service_id_and_core_id; Type: INDEX; Schema: public; Owner:
|
|
3460
|
+
-- Name: index_metasploit_credential_logins_on_service_id_and_core_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3466
3461
|
--
|
|
3467
3462
|
|
|
3468
3463
|
CREATE UNIQUE INDEX index_metasploit_credential_logins_on_service_id_and_core_id ON metasploit_credential_logins USING btree (service_id, core_id);
|
|
3469
3464
|
|
|
3470
3465
|
|
|
3471
3466
|
--
|
|
3472
|
-
-- Name: index_metasploit_credential_origin_imports_on_task_id; Type: INDEX; Schema: public; Owner:
|
|
3467
|
+
-- Name: index_metasploit_credential_origin_imports_on_task_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3473
3468
|
--
|
|
3474
3469
|
|
|
3475
3470
|
CREATE INDEX index_metasploit_credential_origin_imports_on_task_id ON metasploit_credential_origin_imports USING btree (task_id);
|
|
3476
3471
|
|
|
3477
3472
|
|
|
3478
3473
|
--
|
|
3479
|
-
-- Name: index_metasploit_credential_origin_manuals_on_user_id; Type: INDEX; Schema: public; Owner:
|
|
3474
|
+
-- Name: index_metasploit_credential_origin_manuals_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3480
3475
|
--
|
|
3481
3476
|
|
|
3482
3477
|
CREATE INDEX index_metasploit_credential_origin_manuals_on_user_id ON metasploit_credential_origin_manuals USING btree (user_id);
|
|
3483
3478
|
|
|
3484
3479
|
|
|
3485
3480
|
--
|
|
3486
|
-
-- Name: index_metasploit_credential_privates_on_type_and_data; Type: INDEX; Schema: public; Owner:
|
|
3481
|
+
-- Name: index_metasploit_credential_privates_on_type_and_data; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3487
3482
|
--
|
|
3488
3483
|
|
|
3489
3484
|
CREATE UNIQUE INDEX index_metasploit_credential_privates_on_type_and_data ON metasploit_credential_privates USING btree (type, data) WHERE (NOT ((type)::text = 'Metasploit::Credential::SSHKey'::text));
|
|
3490
3485
|
|
|
3491
3486
|
|
|
3492
3487
|
--
|
|
3493
|
-
-- Name: index_metasploit_credential_privates_on_type_and_data_sshkey; Type: INDEX; Schema: public; Owner:
|
|
3488
|
+
-- Name: index_metasploit_credential_privates_on_type_and_data_sshkey; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3494
3489
|
--
|
|
3495
3490
|
|
|
3496
3491
|
CREATE UNIQUE INDEX index_metasploit_credential_privates_on_type_and_data_sshkey ON metasploit_credential_privates USING btree (type, decode(md5(data), 'hex'::text)) WHERE ((type)::text = 'Metasploit::Credential::SSHKey'::text);
|
|
3497
3492
|
|
|
3498
3493
|
|
|
3499
3494
|
--
|
|
3500
|
-
-- Name: index_metasploit_credential_publics_on_username; Type: INDEX; Schema: public; Owner:
|
|
3495
|
+
-- Name: index_metasploit_credential_publics_on_username; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3501
3496
|
--
|
|
3502
3497
|
|
|
3503
3498
|
CREATE UNIQUE INDEX index_metasploit_credential_publics_on_username ON metasploit_credential_publics USING btree (username);
|
|
3504
3499
|
|
|
3505
3500
|
|
|
3506
3501
|
--
|
|
3507
|
-
-- Name: index_metasploit_credential_realms_on_key_and_value; Type: INDEX; Schema: public; Owner:
|
|
3502
|
+
-- Name: index_metasploit_credential_realms_on_key_and_value; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3508
3503
|
--
|
|
3509
3504
|
|
|
3510
3505
|
CREATE UNIQUE INDEX index_metasploit_credential_realms_on_key_and_value ON metasploit_credential_realms USING btree (key, value);
|
|
3511
3506
|
|
|
3512
3507
|
|
|
3513
3508
|
--
|
|
3514
|
-
-- Name: index_module_actions_on_detail_id; Type: INDEX; Schema: public; Owner:
|
|
3509
|
+
-- Name: index_module_actions_on_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3515
3510
|
--
|
|
3516
3511
|
|
|
3517
3512
|
CREATE INDEX index_module_actions_on_detail_id ON module_actions USING btree (detail_id);
|
|
3518
3513
|
|
|
3519
3514
|
|
|
3520
3515
|
--
|
|
3521
|
-
-- Name: index_module_archs_on_detail_id; Type: INDEX; Schema: public; Owner:
|
|
3516
|
+
-- Name: index_module_archs_on_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3522
3517
|
--
|
|
3523
3518
|
|
|
3524
3519
|
CREATE INDEX index_module_archs_on_detail_id ON module_archs USING btree (detail_id);
|
|
3525
3520
|
|
|
3526
3521
|
|
|
3527
3522
|
--
|
|
3528
|
-
-- Name: index_module_authors_on_detail_id; Type: INDEX; Schema: public; Owner:
|
|
3523
|
+
-- Name: index_module_authors_on_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3529
3524
|
--
|
|
3530
3525
|
|
|
3531
3526
|
CREATE INDEX index_module_authors_on_detail_id ON module_authors USING btree (detail_id);
|
|
3532
3527
|
|
|
3533
3528
|
|
|
3534
3529
|
--
|
|
3535
|
-
-- Name: index_module_details_on_description; Type: INDEX; Schema: public; Owner:
|
|
3530
|
+
-- Name: index_module_details_on_description; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3536
3531
|
--
|
|
3537
3532
|
|
|
3538
3533
|
CREATE INDEX index_module_details_on_description ON module_details USING btree (description);
|
|
3539
3534
|
|
|
3540
3535
|
|
|
3541
3536
|
--
|
|
3542
|
-
-- Name: index_module_details_on_mtype; Type: INDEX; Schema: public; Owner:
|
|
3537
|
+
-- Name: index_module_details_on_mtype; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3543
3538
|
--
|
|
3544
3539
|
|
|
3545
3540
|
CREATE INDEX index_module_details_on_mtype ON module_details USING btree (mtype);
|
|
3546
3541
|
|
|
3547
3542
|
|
|
3548
3543
|
--
|
|
3549
|
-
-- Name: index_module_details_on_name; Type: INDEX; Schema: public; Owner:
|
|
3544
|
+
-- Name: index_module_details_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3550
3545
|
--
|
|
3551
3546
|
|
|
3552
3547
|
CREATE INDEX index_module_details_on_name ON module_details USING btree (name);
|
|
3553
3548
|
|
|
3554
3549
|
|
|
3555
3550
|
--
|
|
3556
|
-
-- Name: index_module_details_on_refname; Type: INDEX; Schema: public; Owner:
|
|
3551
|
+
-- Name: index_module_details_on_refname; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3557
3552
|
--
|
|
3558
3553
|
|
|
3559
3554
|
CREATE INDEX index_module_details_on_refname ON module_details USING btree (refname);
|
|
3560
3555
|
|
|
3561
3556
|
|
|
3562
3557
|
--
|
|
3563
|
-
-- Name: index_module_mixins_on_detail_id; Type: INDEX; Schema: public; Owner:
|
|
3558
|
+
-- Name: index_module_mixins_on_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3564
3559
|
--
|
|
3565
3560
|
|
|
3566
3561
|
CREATE INDEX index_module_mixins_on_detail_id ON module_mixins USING btree (detail_id);
|
|
3567
3562
|
|
|
3568
3563
|
|
|
3569
3564
|
--
|
|
3570
|
-
-- Name: index_module_platforms_on_detail_id; Type: INDEX; Schema: public; Owner:
|
|
3565
|
+
-- Name: index_module_platforms_on_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3571
3566
|
--
|
|
3572
3567
|
|
|
3573
3568
|
CREATE INDEX index_module_platforms_on_detail_id ON module_platforms USING btree (detail_id);
|
|
3574
3569
|
|
|
3575
3570
|
|
|
3576
3571
|
--
|
|
3577
|
-
-- Name: index_module_refs_on_detail_id; Type: INDEX; Schema: public; Owner:
|
|
3572
|
+
-- Name: index_module_refs_on_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3578
3573
|
--
|
|
3579
3574
|
|
|
3580
3575
|
CREATE INDEX index_module_refs_on_detail_id ON module_refs USING btree (detail_id);
|
|
3581
3576
|
|
|
3582
3577
|
|
|
3583
3578
|
--
|
|
3584
|
-
-- Name: index_module_refs_on_name; Type: INDEX; Schema: public; Owner:
|
|
3579
|
+
-- Name: index_module_refs_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3585
3580
|
--
|
|
3586
3581
|
|
|
3587
3582
|
CREATE INDEX index_module_refs_on_name ON module_refs USING btree (name);
|
|
3588
3583
|
|
|
3589
3584
|
|
|
3590
3585
|
--
|
|
3591
|
-
-- Name: index_module_runs_on_session_id; Type: INDEX; Schema: public; Owner:
|
|
3586
|
+
-- Name: index_module_runs_on_session_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3592
3587
|
--
|
|
3593
3588
|
|
|
3594
3589
|
CREATE INDEX index_module_runs_on_session_id ON module_runs USING btree (session_id);
|
|
3595
3590
|
|
|
3596
3591
|
|
|
3597
3592
|
--
|
|
3598
|
-
-- Name: index_module_runs_on_user_id; Type: INDEX; Schema: public; Owner:
|
|
3593
|
+
-- Name: index_module_runs_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3599
3594
|
--
|
|
3600
3595
|
|
|
3601
3596
|
CREATE INDEX index_module_runs_on_user_id ON module_runs USING btree (user_id);
|
|
3602
3597
|
|
|
3603
3598
|
|
|
3604
3599
|
--
|
|
3605
|
-
-- Name: index_module_targets_on_detail_id; Type: INDEX; Schema: public; Owner:
|
|
3600
|
+
-- Name: index_module_targets_on_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3606
3601
|
--
|
|
3607
3602
|
|
|
3608
3603
|
CREATE INDEX index_module_targets_on_detail_id ON module_targets USING btree (detail_id);
|
|
3609
3604
|
|
|
3610
3605
|
|
|
3611
3606
|
--
|
|
3612
|
-
-- Name: index_notes_on_ntype; Type: INDEX; Schema: public; Owner:
|
|
3607
|
+
-- Name: index_notes_on_ntype; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3613
3608
|
--
|
|
3614
3609
|
|
|
3615
3610
|
CREATE INDEX index_notes_on_ntype ON notes USING btree (ntype);
|
|
3616
3611
|
|
|
3617
3612
|
|
|
3618
3613
|
--
|
|
3619
|
-
-- Name: index_notes_on_vuln_id; Type: INDEX; Schema: public; Owner:
|
|
3614
|
+
-- Name: index_notes_on_vuln_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3620
3615
|
--
|
|
3621
3616
|
|
|
3622
3617
|
CREATE INDEX index_notes_on_vuln_id ON notes USING btree (vuln_id);
|
|
3623
3618
|
|
|
3624
3619
|
|
|
3625
3620
|
--
|
|
3626
|
-
-- Name: index_refs_on_name; Type: INDEX; Schema: public; Owner:
|
|
3621
|
+
-- Name: index_refs_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3627
3622
|
--
|
|
3628
3623
|
|
|
3629
3624
|
CREATE INDEX index_refs_on_name ON refs USING btree (name);
|
|
3630
3625
|
|
|
3631
3626
|
|
|
3632
3627
|
--
|
|
3633
|
-
-- Name: index_services_on_host_id_and_port_and_proto; Type: INDEX; Schema: public; Owner:
|
|
3628
|
+
-- Name: index_services_on_host_id_and_port_and_proto; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3634
3629
|
--
|
|
3635
3630
|
|
|
3636
3631
|
CREATE UNIQUE INDEX index_services_on_host_id_and_port_and_proto ON services USING btree (host_id, port, proto);
|
|
3637
3632
|
|
|
3638
3633
|
|
|
3639
3634
|
--
|
|
3640
|
-
-- Name: index_services_on_name; Type: INDEX; Schema: public; Owner:
|
|
3635
|
+
-- Name: index_services_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3641
3636
|
--
|
|
3642
3637
|
|
|
3643
3638
|
CREATE INDEX index_services_on_name ON services USING btree (name);
|
|
3644
3639
|
|
|
3645
3640
|
|
|
3646
3641
|
--
|
|
3647
|
-
-- Name: index_services_on_port; Type: INDEX; Schema: public; Owner:
|
|
3642
|
+
-- Name: index_services_on_port; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3648
3643
|
--
|
|
3649
3644
|
|
|
3650
3645
|
CREATE INDEX index_services_on_port ON services USING btree (port);
|
|
3651
3646
|
|
|
3652
3647
|
|
|
3653
3648
|
--
|
|
3654
|
-
-- Name: index_services_on_proto; Type: INDEX; Schema: public; Owner:
|
|
3649
|
+
-- Name: index_services_on_proto; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3655
3650
|
--
|
|
3656
3651
|
|
|
3657
3652
|
CREATE INDEX index_services_on_proto ON services USING btree (proto);
|
|
3658
3653
|
|
|
3659
3654
|
|
|
3660
3655
|
--
|
|
3661
|
-
-- Name: index_services_on_state; Type: INDEX; Schema: public; Owner:
|
|
3656
|
+
-- Name: index_services_on_state; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3662
3657
|
--
|
|
3663
3658
|
|
|
3664
3659
|
CREATE INDEX index_services_on_state ON services USING btree (state);
|
|
3665
3660
|
|
|
3666
3661
|
|
|
3667
3662
|
--
|
|
3668
|
-
-- Name: index_sessions_on_module_run_id; Type: INDEX; Schema: public; Owner:
|
|
3663
|
+
-- Name: index_sessions_on_module_run_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3669
3664
|
--
|
|
3670
3665
|
|
|
3671
3666
|
CREATE INDEX index_sessions_on_module_run_id ON sessions USING btree (module_run_id);
|
|
3672
3667
|
|
|
3673
3668
|
|
|
3674
3669
|
--
|
|
3675
|
-
-- Name: index_vulns_on_name; Type: INDEX; Schema: public; Owner:
|
|
3670
|
+
-- Name: index_vulns_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3676
3671
|
--
|
|
3677
3672
|
|
|
3678
3673
|
CREATE INDEX index_vulns_on_name ON vulns USING btree (name);
|
|
3679
3674
|
|
|
3680
3675
|
|
|
3681
3676
|
--
|
|
3682
|
-
-- Name: index_vulns_on_origin_id; Type: INDEX; Schema: public; Owner:
|
|
3677
|
+
-- Name: index_vulns_on_origin_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3683
3678
|
--
|
|
3684
3679
|
|
|
3685
3680
|
CREATE INDEX index_vulns_on_origin_id ON vulns USING btree (origin_id);
|
|
3686
3681
|
|
|
3687
3682
|
|
|
3688
3683
|
--
|
|
3689
|
-
-- Name: index_web_forms_on_path; Type: INDEX; Schema: public; Owner:
|
|
3684
|
+
-- Name: index_web_forms_on_path; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3690
3685
|
--
|
|
3691
3686
|
|
|
3692
3687
|
CREATE INDEX index_web_forms_on_path ON web_forms USING btree (path);
|
|
3693
3688
|
|
|
3694
3689
|
|
|
3695
3690
|
--
|
|
3696
|
-
-- Name: index_web_pages_on_path; Type: INDEX; Schema: public; Owner:
|
|
3691
|
+
-- Name: index_web_pages_on_path; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3697
3692
|
--
|
|
3698
3693
|
|
|
3699
3694
|
CREATE INDEX index_web_pages_on_path ON web_pages USING btree (path);
|
|
3700
3695
|
|
|
3701
3696
|
|
|
3702
3697
|
--
|
|
3703
|
-
-- Name: index_web_pages_on_query; Type: INDEX; Schema: public; Owner:
|
|
3698
|
+
-- Name: index_web_pages_on_query; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3704
3699
|
--
|
|
3705
3700
|
|
|
3706
3701
|
CREATE INDEX index_web_pages_on_query ON web_pages USING btree (query);
|
|
3707
3702
|
|
|
3708
3703
|
|
|
3709
3704
|
--
|
|
3710
|
-
-- Name: index_web_sites_on_comments; Type: INDEX; Schema: public; Owner:
|
|
3705
|
+
-- Name: index_web_sites_on_comments; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3711
3706
|
--
|
|
3712
3707
|
|
|
3713
3708
|
CREATE INDEX index_web_sites_on_comments ON web_sites USING btree (comments);
|
|
3714
3709
|
|
|
3715
3710
|
|
|
3716
3711
|
--
|
|
3717
|
-
-- Name: index_web_sites_on_options; Type: INDEX; Schema: public; Owner:
|
|
3712
|
+
-- Name: index_web_sites_on_options; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3718
3713
|
--
|
|
3719
3714
|
|
|
3720
3715
|
CREATE INDEX index_web_sites_on_options ON web_sites USING btree (options);
|
|
3721
3716
|
|
|
3722
3717
|
|
|
3723
3718
|
--
|
|
3724
|
-
-- Name: index_web_sites_on_vhost; Type: INDEX; Schema: public; Owner:
|
|
3719
|
+
-- Name: index_web_sites_on_vhost; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3725
3720
|
--
|
|
3726
3721
|
|
|
3727
3722
|
CREATE INDEX index_web_sites_on_vhost ON web_sites USING btree (vhost);
|
|
3728
3723
|
|
|
3729
3724
|
|
|
3730
3725
|
--
|
|
3731
|
-
-- Name: index_web_vulns_on_method; Type: INDEX; Schema: public; Owner:
|
|
3726
|
+
-- Name: index_web_vulns_on_method; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3732
3727
|
--
|
|
3733
3728
|
|
|
3734
3729
|
CREATE INDEX index_web_vulns_on_method ON web_vulns USING btree (method);
|
|
3735
3730
|
|
|
3736
3731
|
|
|
3737
3732
|
--
|
|
3738
|
-
-- Name: index_web_vulns_on_name; Type: INDEX; Schema: public; Owner:
|
|
3733
|
+
-- Name: index_web_vulns_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3739
3734
|
--
|
|
3740
3735
|
|
|
3741
3736
|
CREATE INDEX index_web_vulns_on_name ON web_vulns USING btree (name);
|
|
3742
3737
|
|
|
3743
3738
|
|
|
3744
3739
|
--
|
|
3745
|
-
-- Name: index_web_vulns_on_path; Type: INDEX; Schema: public; Owner:
|
|
3740
|
+
-- Name: index_web_vulns_on_path; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3746
3741
|
--
|
|
3747
3742
|
|
|
3748
3743
|
CREATE INDEX index_web_vulns_on_path ON web_vulns USING btree (path);
|
|
3749
3744
|
|
|
3750
3745
|
|
|
3751
3746
|
--
|
|
3752
|
-
-- Name: originating_credential_cores; Type: INDEX; Schema: public; Owner:
|
|
3747
|
+
-- Name: originating_credential_cores; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3753
3748
|
--
|
|
3754
3749
|
|
|
3755
3750
|
CREATE INDEX originating_credential_cores ON metasploit_credential_origin_cracked_passwords USING btree (metasploit_credential_core_id);
|
|
3756
3751
|
|
|
3757
3752
|
|
|
3758
3753
|
--
|
|
3759
|
-
-- Name: unique_complete_metasploit_credential_cores; Type: INDEX; Schema: public; Owner:
|
|
3754
|
+
-- Name: unique_complete_metasploit_credential_cores; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3760
3755
|
--
|
|
3761
3756
|
|
|
3762
|
-
CREATE UNIQUE INDEX unique_complete_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, realm_id, public_id, private_id) WHERE ((realm_id IS NOT NULL) AND (public_id IS NOT NULL) AND (private_id IS NOT NULL));
|
|
3757
|
+
CREATE UNIQUE INDEX unique_complete_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, realm_id, public_id, private_id) WHERE (((realm_id IS NOT NULL) AND (public_id IS NOT NULL)) AND (private_id IS NOT NULL));
|
|
3763
3758
|
|
|
3764
3759
|
|
|
3765
3760
|
--
|
|
3766
|
-
-- Name: unique_metasploit_credential_origin_services; Type: INDEX; Schema: public; Owner:
|
|
3761
|
+
-- Name: unique_metasploit_credential_origin_services; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3767
3762
|
--
|
|
3768
3763
|
|
|
3769
3764
|
CREATE UNIQUE INDEX unique_metasploit_credential_origin_services ON metasploit_credential_origin_services USING btree (service_id, module_full_name);
|
|
3770
3765
|
|
|
3771
3766
|
|
|
3772
3767
|
--
|
|
3773
|
-
-- Name: unique_metasploit_credential_origin_sessions; Type: INDEX; Schema: public; Owner:
|
|
3768
|
+
-- Name: unique_metasploit_credential_origin_sessions; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3774
3769
|
--
|
|
3775
3770
|
|
|
3776
3771
|
CREATE UNIQUE INDEX unique_metasploit_credential_origin_sessions ON metasploit_credential_origin_sessions USING btree (session_id, post_reference_name);
|
|
3777
3772
|
|
|
3778
3773
|
|
|
3779
3774
|
--
|
|
3780
|
-
-- Name: unique_private_metasploit_credential_cores; Type: INDEX; Schema: public; Owner:
|
|
3775
|
+
-- Name: unique_private_metasploit_credential_cores; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3781
3776
|
--
|
|
3782
3777
|
|
|
3783
|
-
CREATE UNIQUE INDEX unique_private_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, private_id) WHERE ((realm_id IS NULL) AND (public_id IS NULL) AND (private_id IS NOT NULL));
|
|
3778
|
+
CREATE UNIQUE INDEX unique_private_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, private_id) WHERE (((realm_id IS NULL) AND (public_id IS NULL)) AND (private_id IS NOT NULL));
|
|
3784
3779
|
|
|
3785
3780
|
|
|
3786
3781
|
--
|
|
3787
|
-
-- Name: unique_privateless_metasploit_credential_cores; Type: INDEX; Schema: public; Owner:
|
|
3782
|
+
-- Name: unique_privateless_metasploit_credential_cores; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3788
3783
|
--
|
|
3789
3784
|
|
|
3790
|
-
CREATE UNIQUE INDEX unique_privateless_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, realm_id, public_id) WHERE ((realm_id IS NOT NULL) AND (public_id IS NOT NULL) AND (private_id IS NULL));
|
|
3785
|
+
CREATE UNIQUE INDEX unique_privateless_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, realm_id, public_id) WHERE (((realm_id IS NOT NULL) AND (public_id IS NOT NULL)) AND (private_id IS NULL));
|
|
3791
3786
|
|
|
3792
3787
|
|
|
3793
3788
|
--
|
|
3794
|
-
-- Name: unique_public_metasploit_credential_cores; Type: INDEX; Schema: public; Owner:
|
|
3789
|
+
-- Name: unique_public_metasploit_credential_cores; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3795
3790
|
--
|
|
3796
3791
|
|
|
3797
|
-
CREATE UNIQUE INDEX unique_public_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, public_id) WHERE ((realm_id IS NULL) AND (public_id IS NOT NULL) AND (private_id IS NULL));
|
|
3792
|
+
CREATE UNIQUE INDEX unique_public_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, public_id) WHERE (((realm_id IS NULL) AND (public_id IS NOT NULL)) AND (private_id IS NULL));
|
|
3798
3793
|
|
|
3799
3794
|
|
|
3800
3795
|
--
|
|
3801
|
-
-- Name: unique_publicless_metasploit_credential_cores; Type: INDEX; Schema: public; Owner:
|
|
3796
|
+
-- Name: unique_publicless_metasploit_credential_cores; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3802
3797
|
--
|
|
3803
3798
|
|
|
3804
|
-
CREATE UNIQUE INDEX unique_publicless_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, realm_id, private_id) WHERE ((realm_id IS NOT NULL) AND (public_id IS NULL) AND (private_id IS NOT NULL));
|
|
3799
|
+
CREATE UNIQUE INDEX unique_publicless_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, realm_id, private_id) WHERE (((realm_id IS NOT NULL) AND (public_id IS NULL)) AND (private_id IS NOT NULL));
|
|
3805
3800
|
|
|
3806
3801
|
|
|
3807
3802
|
--
|
|
3808
|
-
-- Name: unique_realmless_metasploit_credential_cores; Type: INDEX; Schema: public; Owner:
|
|
3803
|
+
-- Name: unique_realmless_metasploit_credential_cores; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3809
3804
|
--
|
|
3810
3805
|
|
|
3811
|
-
CREATE UNIQUE INDEX unique_realmless_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, public_id, private_id) WHERE ((realm_id IS NULL) AND (public_id IS NOT NULL) AND (private_id IS NOT NULL));
|
|
3806
|
+
CREATE UNIQUE INDEX unique_realmless_metasploit_credential_cores ON metasploit_credential_cores USING btree (workspace_id, public_id, private_id) WHERE (((realm_id IS NULL) AND (public_id IS NOT NULL)) AND (private_id IS NOT NULL));
|
|
3812
3807
|
|
|
3813
3808
|
|
|
3814
3809
|
--
|
|
3815
|
-
-- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner:
|
|
3810
|
+
-- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3816
3811
|
--
|
|
3817
3812
|
|
|
3818
3813
|
CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
|
|
@@ -3822,7 +3817,7 @@ CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (v
|
|
|
3822
3817
|
-- PostgreSQL database dump complete
|
|
3823
3818
|
--
|
|
3824
3819
|
|
|
3825
|
-
SET search_path TO "$user",
|
|
3820
|
+
SET search_path TO "$user",public;
|
|
3826
3821
|
|
|
3827
3822
|
INSERT INTO schema_migrations (version) VALUES ('0');
|
|
3828
3823
|
|