metasploit-credential 0.14.4 → 0.14.5
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
- data/lib/metasploit/credential/version.rb +3 -1
- data/spec/dummy/db/structure.sql +369 -3
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c11d9b0ad22bf9a85298e0db15c73960c61143c1
|
|
4
|
+
data.tar.gz: 7f8714fe763e4523734097310438324e45e73455
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a137bcbaac7a9ce97e6aec96ccc41e7123343b381bc30ffb95904d22657d9d10b44d8a6a978cdb43e306febbf11d1be770465cd660ccae0d6e25c349ebe3d330
|
|
7
|
+
data.tar.gz: 9b7096c74c9362f99c46913aa131694f4f9eda531a83259b47287a78eddaf8efaa2bb10e03d323b12bf4e3686ad24c359f33a8b18341bb67d00830e457a7f7bd
|
|
@@ -9,7 +9,9 @@ module Metasploit
|
|
|
9
9
|
# The minor version number, scoped to the {MAJOR} version number.
|
|
10
10
|
MINOR = 14
|
|
11
11
|
# The patch number, scoped to the {MAJOR} and {MINOR} version number.
|
|
12
|
-
PATCH =
|
|
12
|
+
PATCH = 5
|
|
13
|
+
# The prerelease version, scoped to the {MAJOR}, {MINOR}, and {PATCH} version number.
|
|
14
|
+
# PRERELEASE =
|
|
13
15
|
|
|
14
16
|
# The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the {PRERELEASE} in the
|
|
15
17
|
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
|
data/spec/dummy/db/structure.sql
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
--
|
|
4
4
|
|
|
5
5
|
SET statement_timeout = 0;
|
|
6
|
-
SET lock_timeout = 0;
|
|
7
6
|
SET client_encoding = 'UTF8';
|
|
8
7
|
SET standard_conforming_strings = on;
|
|
9
8
|
SET check_function_bodies = false;
|
|
@@ -60,6 +59,141 @@ CREATE SEQUENCE api_keys_id_seq
|
|
|
60
59
|
ALTER SEQUENCE api_keys_id_seq OWNED BY api_keys.id;
|
|
61
60
|
|
|
62
61
|
|
|
62
|
+
--
|
|
63
|
+
-- Name: automatic_exploitation_match_results; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
64
|
+
--
|
|
65
|
+
|
|
66
|
+
CREATE TABLE automatic_exploitation_match_results (
|
|
67
|
+
id integer NOT NULL,
|
|
68
|
+
match_id integer,
|
|
69
|
+
run_id integer,
|
|
70
|
+
state character varying(255) NOT NULL,
|
|
71
|
+
created_at timestamp without time zone NOT NULL,
|
|
72
|
+
updated_at timestamp without time zone NOT NULL
|
|
73
|
+
);
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
--
|
|
77
|
+
-- Name: automatic_exploitation_match_results_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
|
78
|
+
--
|
|
79
|
+
|
|
80
|
+
CREATE SEQUENCE automatic_exploitation_match_results_id_seq
|
|
81
|
+
START WITH 1
|
|
82
|
+
INCREMENT BY 1
|
|
83
|
+
NO MINVALUE
|
|
84
|
+
NO MAXVALUE
|
|
85
|
+
CACHE 1;
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
--
|
|
89
|
+
-- Name: automatic_exploitation_match_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
|
90
|
+
--
|
|
91
|
+
|
|
92
|
+
ALTER SEQUENCE automatic_exploitation_match_results_id_seq OWNED BY automatic_exploitation_match_results.id;
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
--
|
|
96
|
+
-- Name: automatic_exploitation_match_sets; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
97
|
+
--
|
|
98
|
+
|
|
99
|
+
CREATE TABLE automatic_exploitation_match_sets (
|
|
100
|
+
id integer NOT NULL,
|
|
101
|
+
workspace_id integer,
|
|
102
|
+
user_id integer,
|
|
103
|
+
created_at timestamp without time zone NOT NULL,
|
|
104
|
+
updated_at timestamp without time zone NOT NULL
|
|
105
|
+
);
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
--
|
|
109
|
+
-- Name: automatic_exploitation_match_sets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
|
110
|
+
--
|
|
111
|
+
|
|
112
|
+
CREATE SEQUENCE automatic_exploitation_match_sets_id_seq
|
|
113
|
+
START WITH 1
|
|
114
|
+
INCREMENT BY 1
|
|
115
|
+
NO MINVALUE
|
|
116
|
+
NO MAXVALUE
|
|
117
|
+
CACHE 1;
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
--
|
|
121
|
+
-- Name: automatic_exploitation_match_sets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
|
122
|
+
--
|
|
123
|
+
|
|
124
|
+
ALTER SEQUENCE automatic_exploitation_match_sets_id_seq OWNED BY automatic_exploitation_match_sets.id;
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
--
|
|
128
|
+
-- Name: automatic_exploitation_matches; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
129
|
+
--
|
|
130
|
+
|
|
131
|
+
CREATE TABLE automatic_exploitation_matches (
|
|
132
|
+
id integer NOT NULL,
|
|
133
|
+
module_detail_id integer,
|
|
134
|
+
state character varying(255),
|
|
135
|
+
nexpose_data_vulnerability_definition_id integer,
|
|
136
|
+
created_at timestamp without time zone NOT NULL,
|
|
137
|
+
updated_at timestamp without time zone NOT NULL,
|
|
138
|
+
match_set_id integer,
|
|
139
|
+
matchable_type character varying(255),
|
|
140
|
+
matchable_id integer,
|
|
141
|
+
module_fullname text
|
|
142
|
+
);
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
--
|
|
146
|
+
-- Name: automatic_exploitation_matches_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
|
147
|
+
--
|
|
148
|
+
|
|
149
|
+
CREATE SEQUENCE automatic_exploitation_matches_id_seq
|
|
150
|
+
START WITH 1
|
|
151
|
+
INCREMENT BY 1
|
|
152
|
+
NO MINVALUE
|
|
153
|
+
NO MAXVALUE
|
|
154
|
+
CACHE 1;
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
--
|
|
158
|
+
-- Name: automatic_exploitation_matches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
|
159
|
+
--
|
|
160
|
+
|
|
161
|
+
ALTER SEQUENCE automatic_exploitation_matches_id_seq OWNED BY automatic_exploitation_matches.id;
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
--
|
|
165
|
+
-- Name: automatic_exploitation_runs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
166
|
+
--
|
|
167
|
+
|
|
168
|
+
CREATE TABLE automatic_exploitation_runs (
|
|
169
|
+
id integer NOT NULL,
|
|
170
|
+
workspace_id integer,
|
|
171
|
+
user_id integer,
|
|
172
|
+
match_set_id integer,
|
|
173
|
+
created_at timestamp without time zone NOT NULL,
|
|
174
|
+
updated_at timestamp without time zone NOT NULL
|
|
175
|
+
);
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
--
|
|
179
|
+
-- Name: automatic_exploitation_runs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
|
180
|
+
--
|
|
181
|
+
|
|
182
|
+
CREATE SEQUENCE automatic_exploitation_runs_id_seq
|
|
183
|
+
START WITH 1
|
|
184
|
+
INCREMENT BY 1
|
|
185
|
+
NO MINVALUE
|
|
186
|
+
NO MAXVALUE
|
|
187
|
+
CACHE 1;
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
--
|
|
191
|
+
-- Name: automatic_exploitation_runs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
|
192
|
+
--
|
|
193
|
+
|
|
194
|
+
ALTER SEQUENCE automatic_exploitation_runs_id_seq OWNED BY automatic_exploitation_runs.id;
|
|
195
|
+
|
|
196
|
+
|
|
63
197
|
--
|
|
64
198
|
-- Name: clients; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
65
199
|
--
|
|
@@ -439,7 +573,8 @@ CREATE TABLE loots (
|
|
|
439
573
|
updated_at timestamp without time zone NOT NULL,
|
|
440
574
|
content_type character varying(255),
|
|
441
575
|
name text,
|
|
442
|
-
info text
|
|
576
|
+
info text,
|
|
577
|
+
module_run_id integer
|
|
443
578
|
);
|
|
444
579
|
|
|
445
580
|
|
|
@@ -1079,6 +1214,48 @@ CREATE SEQUENCE module_refs_id_seq
|
|
|
1079
1214
|
ALTER SEQUENCE module_refs_id_seq OWNED BY module_refs.id;
|
|
1080
1215
|
|
|
1081
1216
|
|
|
1217
|
+
--
|
|
1218
|
+
-- Name: module_runs; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1219
|
+
--
|
|
1220
|
+
|
|
1221
|
+
CREATE TABLE module_runs (
|
|
1222
|
+
id integer NOT NULL,
|
|
1223
|
+
attempted_at timestamp without time zone,
|
|
1224
|
+
fail_detail text,
|
|
1225
|
+
fail_reason character varying(255),
|
|
1226
|
+
module_fullname text,
|
|
1227
|
+
port integer,
|
|
1228
|
+
proto character varying(255),
|
|
1229
|
+
session_id integer,
|
|
1230
|
+
status character varying(255),
|
|
1231
|
+
trackable_id integer,
|
|
1232
|
+
trackable_type character varying(255),
|
|
1233
|
+
user_id integer,
|
|
1234
|
+
username character varying(255),
|
|
1235
|
+
created_at timestamp without time zone NOT NULL,
|
|
1236
|
+
updated_at timestamp without time zone NOT NULL
|
|
1237
|
+
);
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
--
|
|
1241
|
+
-- Name: module_runs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
|
1242
|
+
--
|
|
1243
|
+
|
|
1244
|
+
CREATE SEQUENCE module_runs_id_seq
|
|
1245
|
+
START WITH 1
|
|
1246
|
+
INCREMENT BY 1
|
|
1247
|
+
NO MINVALUE
|
|
1248
|
+
NO MAXVALUE
|
|
1249
|
+
CACHE 1;
|
|
1250
|
+
|
|
1251
|
+
|
|
1252
|
+
--
|
|
1253
|
+
-- Name: module_runs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
|
1254
|
+
--
|
|
1255
|
+
|
|
1256
|
+
ALTER SEQUENCE module_runs_id_seq OWNED BY module_runs.id;
|
|
1257
|
+
|
|
1258
|
+
|
|
1082
1259
|
--
|
|
1083
1260
|
-- Name: module_targets; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
1084
1261
|
--
|
|
@@ -1456,7 +1633,8 @@ CREATE TABLE sessions (
|
|
|
1456
1633
|
closed_at timestamp without time zone,
|
|
1457
1634
|
close_reason character varying(255),
|
|
1458
1635
|
local_id integer,
|
|
1459
|
-
last_seen timestamp without time zone
|
|
1636
|
+
last_seen timestamp without time zone,
|
|
1637
|
+
module_run_id integer
|
|
1460
1638
|
);
|
|
1461
1639
|
|
|
1462
1640
|
|
|
@@ -2166,6 +2344,34 @@ ALTER SEQUENCE workspaces_id_seq OWNED BY workspaces.id;
|
|
|
2166
2344
|
ALTER TABLE ONLY api_keys ALTER COLUMN id SET DEFAULT nextval('api_keys_id_seq'::regclass);
|
|
2167
2345
|
|
|
2168
2346
|
|
|
2347
|
+
--
|
|
2348
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2349
|
+
--
|
|
2350
|
+
|
|
2351
|
+
ALTER TABLE ONLY automatic_exploitation_match_results ALTER COLUMN id SET DEFAULT nextval('automatic_exploitation_match_results_id_seq'::regclass);
|
|
2352
|
+
|
|
2353
|
+
|
|
2354
|
+
--
|
|
2355
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2356
|
+
--
|
|
2357
|
+
|
|
2358
|
+
ALTER TABLE ONLY automatic_exploitation_match_sets ALTER COLUMN id SET DEFAULT nextval('automatic_exploitation_match_sets_id_seq'::regclass);
|
|
2359
|
+
|
|
2360
|
+
|
|
2361
|
+
--
|
|
2362
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2363
|
+
--
|
|
2364
|
+
|
|
2365
|
+
ALTER TABLE ONLY automatic_exploitation_matches ALTER COLUMN id SET DEFAULT nextval('automatic_exploitation_matches_id_seq'::regclass);
|
|
2366
|
+
|
|
2367
|
+
|
|
2368
|
+
--
|
|
2369
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2370
|
+
--
|
|
2371
|
+
|
|
2372
|
+
ALTER TABLE ONLY automatic_exploitation_runs ALTER COLUMN id SET DEFAULT nextval('automatic_exploitation_runs_id_seq'::regclass);
|
|
2373
|
+
|
|
2374
|
+
|
|
2169
2375
|
--
|
|
2170
2376
|
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2171
2377
|
--
|
|
@@ -2369,6 +2575,13 @@ ALTER TABLE ONLY module_platforms ALTER COLUMN id SET DEFAULT nextval('module_pl
|
|
|
2369
2575
|
ALTER TABLE ONLY module_refs ALTER COLUMN id SET DEFAULT nextval('module_refs_id_seq'::regclass);
|
|
2370
2576
|
|
|
2371
2577
|
|
|
2578
|
+
--
|
|
2579
|
+
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2580
|
+
--
|
|
2581
|
+
|
|
2582
|
+
ALTER TABLE ONLY module_runs ALTER COLUMN id SET DEFAULT nextval('module_runs_id_seq'::regclass);
|
|
2583
|
+
|
|
2584
|
+
|
|
2372
2585
|
--
|
|
2373
2586
|
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
|
2374
2587
|
--
|
|
@@ -2580,6 +2793,38 @@ ALTER TABLE ONLY api_keys
|
|
|
2580
2793
|
ADD CONSTRAINT api_keys_pkey PRIMARY KEY (id);
|
|
2581
2794
|
|
|
2582
2795
|
|
|
2796
|
+
--
|
|
2797
|
+
-- Name: automatic_exploitation_match_results_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2798
|
+
--
|
|
2799
|
+
|
|
2800
|
+
ALTER TABLE ONLY automatic_exploitation_match_results
|
|
2801
|
+
ADD CONSTRAINT automatic_exploitation_match_results_pkey PRIMARY KEY (id);
|
|
2802
|
+
|
|
2803
|
+
|
|
2804
|
+
--
|
|
2805
|
+
-- Name: automatic_exploitation_match_sets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2806
|
+
--
|
|
2807
|
+
|
|
2808
|
+
ALTER TABLE ONLY automatic_exploitation_match_sets
|
|
2809
|
+
ADD CONSTRAINT automatic_exploitation_match_sets_pkey PRIMARY KEY (id);
|
|
2810
|
+
|
|
2811
|
+
|
|
2812
|
+
--
|
|
2813
|
+
-- Name: automatic_exploitation_matches_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2814
|
+
--
|
|
2815
|
+
|
|
2816
|
+
ALTER TABLE ONLY automatic_exploitation_matches
|
|
2817
|
+
ADD CONSTRAINT automatic_exploitation_matches_pkey PRIMARY KEY (id);
|
|
2818
|
+
|
|
2819
|
+
|
|
2820
|
+
--
|
|
2821
|
+
-- Name: automatic_exploitation_runs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2822
|
+
--
|
|
2823
|
+
|
|
2824
|
+
ALTER TABLE ONLY automatic_exploitation_runs
|
|
2825
|
+
ADD CONSTRAINT automatic_exploitation_runs_pkey PRIMARY KEY (id);
|
|
2826
|
+
|
|
2827
|
+
|
|
2583
2828
|
--
|
|
2584
2829
|
-- Name: clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2585
2830
|
--
|
|
@@ -2812,6 +3057,14 @@ ALTER TABLE ONLY module_refs
|
|
|
2812
3057
|
ADD CONSTRAINT module_refs_pkey PRIMARY KEY (id);
|
|
2813
3058
|
|
|
2814
3059
|
|
|
3060
|
+
--
|
|
3061
|
+
-- Name: module_runs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
3062
|
+
--
|
|
3063
|
+
|
|
3064
|
+
ALTER TABLE ONLY module_runs
|
|
3065
|
+
ADD CONSTRAINT module_runs_pkey PRIMARY KEY (id);
|
|
3066
|
+
|
|
3067
|
+
|
|
2815
3068
|
--
|
|
2816
3069
|
-- Name: module_targets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
|
2817
3070
|
--
|
|
@@ -3044,6 +3297,69 @@ ALTER TABLE ONLY workspaces
|
|
|
3044
3297
|
ADD CONSTRAINT workspaces_pkey PRIMARY KEY (id);
|
|
3045
3298
|
|
|
3046
3299
|
|
|
3300
|
+
--
|
|
3301
|
+
-- Name: index_automatic_exploitation_match_results_on_match_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3302
|
+
--
|
|
3303
|
+
|
|
3304
|
+
CREATE INDEX index_automatic_exploitation_match_results_on_match_id ON automatic_exploitation_match_results USING btree (match_id);
|
|
3305
|
+
|
|
3306
|
+
|
|
3307
|
+
--
|
|
3308
|
+
-- Name: index_automatic_exploitation_match_results_on_run_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3309
|
+
--
|
|
3310
|
+
|
|
3311
|
+
CREATE INDEX index_automatic_exploitation_match_results_on_run_id ON automatic_exploitation_match_results USING btree (run_id);
|
|
3312
|
+
|
|
3313
|
+
|
|
3314
|
+
--
|
|
3315
|
+
-- Name: index_automatic_exploitation_match_sets_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3316
|
+
--
|
|
3317
|
+
|
|
3318
|
+
CREATE INDEX index_automatic_exploitation_match_sets_on_user_id ON automatic_exploitation_match_sets USING btree (user_id);
|
|
3319
|
+
|
|
3320
|
+
|
|
3321
|
+
--
|
|
3322
|
+
-- Name: index_automatic_exploitation_match_sets_on_workspace_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3323
|
+
--
|
|
3324
|
+
|
|
3325
|
+
CREATE INDEX index_automatic_exploitation_match_sets_on_workspace_id ON automatic_exploitation_match_sets USING btree (workspace_id);
|
|
3326
|
+
|
|
3327
|
+
|
|
3328
|
+
--
|
|
3329
|
+
-- Name: index_automatic_exploitation_matches_on_module_fullname; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3330
|
+
--
|
|
3331
|
+
|
|
3332
|
+
CREATE INDEX index_automatic_exploitation_matches_on_module_fullname ON automatic_exploitation_matches USING btree (module_fullname);
|
|
3333
|
+
|
|
3334
|
+
|
|
3335
|
+
--
|
|
3336
|
+
-- Name: index_automatic_exploitation_matches_on_ref_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3337
|
+
--
|
|
3338
|
+
|
|
3339
|
+
CREATE INDEX index_automatic_exploitation_matches_on_ref_id ON automatic_exploitation_matches USING btree (module_detail_id);
|
|
3340
|
+
|
|
3341
|
+
|
|
3342
|
+
--
|
|
3343
|
+
-- Name: index_automatic_exploitation_runs_on_match_set_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3344
|
+
--
|
|
3345
|
+
|
|
3346
|
+
CREATE INDEX index_automatic_exploitation_runs_on_match_set_id ON automatic_exploitation_runs USING btree (match_set_id);
|
|
3347
|
+
|
|
3348
|
+
|
|
3349
|
+
--
|
|
3350
|
+
-- Name: index_automatic_exploitation_runs_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3351
|
+
--
|
|
3352
|
+
|
|
3353
|
+
CREATE INDEX index_automatic_exploitation_runs_on_user_id ON automatic_exploitation_runs USING btree (user_id);
|
|
3354
|
+
|
|
3355
|
+
|
|
3356
|
+
--
|
|
3357
|
+
-- Name: index_automatic_exploitation_runs_on_workspace_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3358
|
+
--
|
|
3359
|
+
|
|
3360
|
+
CREATE INDEX index_automatic_exploitation_runs_on_workspace_id ON automatic_exploitation_runs USING btree (workspace_id);
|
|
3361
|
+
|
|
3362
|
+
|
|
3047
3363
|
--
|
|
3048
3364
|
-- Name: index_hosts_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3049
3365
|
--
|
|
@@ -3086,6 +3402,13 @@ CREATE INDEX index_hosts_on_state ON hosts USING btree (state);
|
|
|
3086
3402
|
CREATE UNIQUE INDEX index_hosts_on_workspace_id_and_address ON hosts USING btree (workspace_id, address);
|
|
3087
3403
|
|
|
3088
3404
|
|
|
3405
|
+
--
|
|
3406
|
+
-- Name: index_loots_on_module_run_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3407
|
+
--
|
|
3408
|
+
|
|
3409
|
+
CREATE INDEX index_loots_on_module_run_id ON loots USING btree (module_run_id);
|
|
3410
|
+
|
|
3411
|
+
|
|
3089
3412
|
--
|
|
3090
3413
|
-- Name: index_metasploit_credential_cores_on_origin_type_and_origin_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3091
3414
|
--
|
|
@@ -3247,6 +3570,20 @@ CREATE INDEX index_module_refs_on_module_detail_id ON module_refs USING btree (d
|
|
|
3247
3570
|
CREATE INDEX index_module_refs_on_name ON module_refs USING btree (name);
|
|
3248
3571
|
|
|
3249
3572
|
|
|
3573
|
+
--
|
|
3574
|
+
-- Name: index_module_runs_on_session_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3575
|
+
--
|
|
3576
|
+
|
|
3577
|
+
CREATE INDEX index_module_runs_on_session_id ON module_runs USING btree (session_id);
|
|
3578
|
+
|
|
3579
|
+
|
|
3580
|
+
--
|
|
3581
|
+
-- Name: index_module_runs_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3582
|
+
--
|
|
3583
|
+
|
|
3584
|
+
CREATE INDEX index_module_runs_on_user_id ON module_runs USING btree (user_id);
|
|
3585
|
+
|
|
3586
|
+
|
|
3250
3587
|
--
|
|
3251
3588
|
-- Name: index_module_targets_on_module_detail_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3252
3589
|
--
|
|
@@ -3310,6 +3647,13 @@ CREATE INDEX index_services_on_proto ON services USING btree (proto);
|
|
|
3310
3647
|
CREATE INDEX index_services_on_state ON services USING btree (state);
|
|
3311
3648
|
|
|
3312
3649
|
|
|
3650
|
+
--
|
|
3651
|
+
-- Name: index_sessions_on_module_run_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3652
|
+
--
|
|
3653
|
+
|
|
3654
|
+
CREATE INDEX index_sessions_on_module_run_id ON sessions USING btree (module_run_id);
|
|
3655
|
+
|
|
3656
|
+
|
|
3313
3657
|
--
|
|
3314
3658
|
-- Name: index_vulns_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
|
3315
3659
|
--
|
|
@@ -3644,6 +3988,18 @@ INSERT INTO schema_migrations (version) VALUES ('20130604145732');
|
|
|
3644
3988
|
|
|
3645
3989
|
INSERT INTO schema_migrations (version) VALUES ('20130717150737');
|
|
3646
3990
|
|
|
3991
|
+
INSERT INTO schema_migrations (version) VALUES ('20131002004641');
|
|
3992
|
+
|
|
3993
|
+
INSERT INTO schema_migrations (version) VALUES ('20131002164449');
|
|
3994
|
+
|
|
3995
|
+
INSERT INTO schema_migrations (version) VALUES ('20131008213344');
|
|
3996
|
+
|
|
3997
|
+
INSERT INTO schema_migrations (version) VALUES ('20131011184338');
|
|
3998
|
+
|
|
3999
|
+
INSERT INTO schema_migrations (version) VALUES ('20131017150735');
|
|
4000
|
+
|
|
4001
|
+
INSERT INTO schema_migrations (version) VALUES ('20131021185657');
|
|
4002
|
+
|
|
3647
4003
|
INSERT INTO schema_migrations (version) VALUES ('20140331173835');
|
|
3648
4004
|
|
|
3649
4005
|
INSERT INTO schema_migrations (version) VALUES ('20140407212345');
|
|
@@ -3694,6 +4050,16 @@ INSERT INTO schema_migrations (version) VALUES ('20150209195939');
|
|
|
3694
4050
|
|
|
3695
4051
|
INSERT INTO schema_migrations (version) VALUES ('20150212214222');
|
|
3696
4052
|
|
|
4053
|
+
INSERT INTO schema_migrations (version) VALUES ('20150219173821');
|
|
4054
|
+
|
|
4055
|
+
INSERT INTO schema_migrations (version) VALUES ('20150219215039');
|
|
4056
|
+
|
|
4057
|
+
INSERT INTO schema_migrations (version) VALUES ('20150226151459');
|
|
4058
|
+
|
|
4059
|
+
INSERT INTO schema_migrations (version) VALUES ('20150312155312');
|
|
4060
|
+
|
|
4061
|
+
INSERT INTO schema_migrations (version) VALUES ('20150326183742');
|
|
4062
|
+
|
|
3697
4063
|
INSERT INTO schema_migrations (version) VALUES ('21');
|
|
3698
4064
|
|
|
3699
4065
|
INSERT INTO schema_migrations (version) VALUES ('22');
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metasploit-credential
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.14.
|
|
4
|
+
version: 0.14.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luke Imhoff
|
|
@@ -9,36 +9,36 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-04-
|
|
12
|
+
date: 2015-04-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: metasploit-concern
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
|
-
- -
|
|
18
|
+
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 0.
|
|
20
|
+
version: 0.4.0
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
|
-
- -
|
|
25
|
+
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 0.
|
|
27
|
+
version: 0.4.0
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: metasploit_data_models
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
|
-
- -
|
|
32
|
+
- - '='
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 0.
|
|
34
|
+
version: 0.24.0
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
|
-
- -
|
|
39
|
+
- - '='
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 0.
|
|
41
|
+
version: 0.24.0
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: metasploit-model
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|