metasploit-credential 6.0.12 → 6.0.13
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 +1 -1
- data/spec/dummy/config/database.yml +4 -2
- data/spec/dummy/db/structure.sql +77 -1
- metadata +7 -33
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d84ee592f81cc2fc01fdf4baffd55d57a97ee9ee9c35571ad053f40d34771971
|
4
|
+
data.tar.gz: 234e4b50c39153c7eab48cc1b47d2b0cecc06528f1db6aed34a70a0aa63564ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5954cc20987a1807378274482f583edf446d08dda3bfaeff2f2f0d35126b5c15b101bdb160266659324a96d9566c6e252ab55976e4be60fe41091698348edb78
|
7
|
+
data.tar.gz: 7da6a368c8813fd66d9bc77a3a556a4a71d1801238b81efe0bf1a591b46826fb31adff407312dde1f5316760c868666350159986d1b4e88924b262e5379b7ba0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
development: &pgsql
|
2
2
|
adapter: postgresql
|
3
|
-
database: metasploit-
|
3
|
+
database: metasploit-credential_development_0
|
4
4
|
username: msf
|
5
5
|
password: pass123
|
6
6
|
host: localhost
|
@@ -8,6 +8,8 @@ development: &pgsql
|
|
8
8
|
pool: 5
|
9
9
|
timeout: 5
|
10
10
|
min_messages: warning
|
11
|
+
production:
|
12
|
+
<<: *pgsql
|
11
13
|
test:
|
12
14
|
<<: *pgsql
|
13
|
-
database: metasploit-
|
15
|
+
database: metasploit-credential_test0
|
data/spec/dummy/db/structure.sql
CHANGED
@@ -11,6 +11,8 @@ SET row_security = off;
|
|
11
11
|
|
12
12
|
SET default_tablespace = '';
|
13
13
|
|
14
|
+
SET default_table_access_method = heap;
|
15
|
+
|
14
16
|
--
|
15
17
|
-- Name: api_keys; Type: TABLE; Schema: public; Owner: -
|
16
18
|
--
|
@@ -28,6 +30,7 @@ CREATE TABLE public.api_keys (
|
|
28
30
|
--
|
29
31
|
|
30
32
|
CREATE SEQUENCE public.api_keys_id_seq
|
33
|
+
AS integer
|
31
34
|
START WITH 1
|
32
35
|
INCREMENT BY 1
|
33
36
|
NO MINVALUE
|
@@ -75,6 +78,7 @@ CREATE TABLE public.async_callbacks (
|
|
75
78
|
--
|
76
79
|
|
77
80
|
CREATE SEQUENCE public.async_callbacks_id_seq
|
81
|
+
AS integer
|
78
82
|
START WITH 1
|
79
83
|
INCREMENT BY 1
|
80
84
|
NO MINVALUE
|
@@ -108,6 +112,7 @@ CREATE TABLE public.automatic_exploitation_match_results (
|
|
108
112
|
--
|
109
113
|
|
110
114
|
CREATE SEQUENCE public.automatic_exploitation_match_results_id_seq
|
115
|
+
AS integer
|
111
116
|
START WITH 1
|
112
117
|
INCREMENT BY 1
|
113
118
|
NO MINVALUE
|
@@ -140,6 +145,7 @@ CREATE TABLE public.automatic_exploitation_match_sets (
|
|
140
145
|
--
|
141
146
|
|
142
147
|
CREATE SEQUENCE public.automatic_exploitation_match_sets_id_seq
|
148
|
+
AS integer
|
143
149
|
START WITH 1
|
144
150
|
INCREMENT BY 1
|
145
151
|
NO MINVALUE
|
@@ -177,6 +183,7 @@ CREATE TABLE public.automatic_exploitation_matches (
|
|
177
183
|
--
|
178
184
|
|
179
185
|
CREATE SEQUENCE public.automatic_exploitation_matches_id_seq
|
186
|
+
AS integer
|
180
187
|
START WITH 1
|
181
188
|
INCREMENT BY 1
|
182
189
|
NO MINVALUE
|
@@ -210,6 +217,7 @@ CREATE TABLE public.automatic_exploitation_runs (
|
|
210
217
|
--
|
211
218
|
|
212
219
|
CREATE SEQUENCE public.automatic_exploitation_runs_id_seq
|
220
|
+
AS integer
|
213
221
|
START WITH 1
|
214
222
|
INCREMENT BY 1
|
215
223
|
NO MINVALUE
|
@@ -244,6 +252,7 @@ CREATE TABLE public.clients (
|
|
244
252
|
--
|
245
253
|
|
246
254
|
CREATE SEQUENCE public.clients_id_seq
|
255
|
+
AS integer
|
247
256
|
START WITH 1
|
248
257
|
INCREMENT BY 1
|
249
258
|
NO MINVALUE
|
@@ -302,6 +311,7 @@ CREATE TABLE public.creds (
|
|
302
311
|
--
|
303
312
|
|
304
313
|
CREATE SEQUENCE public.creds_id_seq
|
314
|
+
AS integer
|
305
315
|
START WITH 1
|
306
316
|
INCREMENT BY 1
|
307
317
|
NO MINVALUE
|
@@ -339,6 +349,7 @@ CREATE TABLE public.events (
|
|
339
349
|
--
|
340
350
|
|
341
351
|
CREATE SEQUENCE public.events_id_seq
|
352
|
+
AS integer
|
342
353
|
START WITH 1
|
343
354
|
INCREMENT BY 1
|
344
355
|
NO MINVALUE
|
@@ -380,6 +391,7 @@ CREATE TABLE public.exploit_attempts (
|
|
380
391
|
--
|
381
392
|
|
382
393
|
CREATE SEQUENCE public.exploit_attempts_id_seq
|
394
|
+
AS integer
|
383
395
|
START WITH 1
|
384
396
|
INCREMENT BY 1
|
385
397
|
NO MINVALUE
|
@@ -415,6 +427,7 @@ CREATE TABLE public.exploited_hosts (
|
|
415
427
|
--
|
416
428
|
|
417
429
|
CREATE SEQUENCE public.exploited_hosts_id_seq
|
430
|
+
AS integer
|
418
431
|
START WITH 1
|
419
432
|
INCREMENT BY 1
|
420
433
|
NO MINVALUE
|
@@ -451,6 +464,7 @@ CREATE TABLE public.host_details (
|
|
451
464
|
--
|
452
465
|
|
453
466
|
CREATE SEQUENCE public.host_details_id_seq
|
467
|
+
AS integer
|
454
468
|
START WITH 1
|
455
469
|
INCREMENT BY 1
|
456
470
|
NO MINVALUE
|
@@ -505,6 +519,7 @@ CREATE TABLE public.hosts (
|
|
505
519
|
--
|
506
520
|
|
507
521
|
CREATE SEQUENCE public.hosts_id_seq
|
522
|
+
AS integer
|
508
523
|
START WITH 1
|
509
524
|
INCREMENT BY 1
|
510
525
|
NO MINVALUE
|
@@ -535,6 +550,7 @@ CREATE TABLE public.hosts_tags (
|
|
535
550
|
--
|
536
551
|
|
537
552
|
CREATE SEQUENCE public.hosts_tags_id_seq
|
553
|
+
AS integer
|
538
554
|
START WITH 1
|
539
555
|
INCREMENT BY 1
|
540
556
|
NO MINVALUE
|
@@ -574,6 +590,7 @@ CREATE TABLE public.listeners (
|
|
574
590
|
--
|
575
591
|
|
576
592
|
CREATE SEQUENCE public.listeners_id_seq
|
593
|
+
AS integer
|
577
594
|
START WITH 1
|
578
595
|
INCREMENT BY 1
|
579
596
|
NO MINVALUE
|
@@ -614,6 +631,7 @@ CREATE TABLE public.loots (
|
|
614
631
|
--
|
615
632
|
|
616
633
|
CREATE SEQUENCE public.loots_id_seq
|
634
|
+
AS integer
|
617
635
|
START WITH 1
|
618
636
|
INCREMENT BY 1
|
619
637
|
NO MINVALUE
|
@@ -649,6 +667,7 @@ CREATE TABLE public.macros (
|
|
649
667
|
--
|
650
668
|
|
651
669
|
CREATE SEQUENCE public.macros_id_seq
|
670
|
+
AS integer
|
652
671
|
START WITH 1
|
653
672
|
INCREMENT BY 1
|
654
673
|
NO MINVALUE
|
@@ -686,6 +705,7 @@ CREATE TABLE public.metasploit_credential_cores (
|
|
686
705
|
--
|
687
706
|
|
688
707
|
CREATE SEQUENCE public.metasploit_credential_cores_id_seq
|
708
|
+
AS integer
|
689
709
|
START WITH 1
|
690
710
|
INCREMENT BY 1
|
691
711
|
NO MINVALUE
|
@@ -721,6 +741,7 @@ CREATE TABLE public.metasploit_credential_logins (
|
|
721
741
|
--
|
722
742
|
|
723
743
|
CREATE SEQUENCE public.metasploit_credential_logins_id_seq
|
744
|
+
AS integer
|
724
745
|
START WITH 1
|
725
746
|
INCREMENT BY 1
|
726
747
|
NO MINVALUE
|
@@ -752,6 +773,7 @@ CREATE TABLE public.metasploit_credential_origin_cracked_passwords (
|
|
752
773
|
--
|
753
774
|
|
754
775
|
CREATE SEQUENCE public.metasploit_credential_origin_cracked_passwords_id_seq
|
776
|
+
AS integer
|
755
777
|
START WITH 1
|
756
778
|
INCREMENT BY 1
|
757
779
|
NO MINVALUE
|
@@ -784,6 +806,7 @@ CREATE TABLE public.metasploit_credential_origin_imports (
|
|
784
806
|
--
|
785
807
|
|
786
808
|
CREATE SEQUENCE public.metasploit_credential_origin_imports_id_seq
|
809
|
+
AS integer
|
787
810
|
START WITH 1
|
788
811
|
INCREMENT BY 1
|
789
812
|
NO MINVALUE
|
@@ -815,6 +838,7 @@ CREATE TABLE public.metasploit_credential_origin_manuals (
|
|
815
838
|
--
|
816
839
|
|
817
840
|
CREATE SEQUENCE public.metasploit_credential_origin_manuals_id_seq
|
841
|
+
AS integer
|
818
842
|
START WITH 1
|
819
843
|
INCREMENT BY 1
|
820
844
|
NO MINVALUE
|
@@ -847,6 +871,7 @@ CREATE TABLE public.metasploit_credential_origin_services (
|
|
847
871
|
--
|
848
872
|
|
849
873
|
CREATE SEQUENCE public.metasploit_credential_origin_services_id_seq
|
874
|
+
AS integer
|
850
875
|
START WITH 1
|
851
876
|
INCREMENT BY 1
|
852
877
|
NO MINVALUE
|
@@ -879,6 +904,7 @@ CREATE TABLE public.metasploit_credential_origin_sessions (
|
|
879
904
|
--
|
880
905
|
|
881
906
|
CREATE SEQUENCE public.metasploit_credential_origin_sessions_id_seq
|
907
|
+
AS integer
|
882
908
|
START WITH 1
|
883
909
|
INCREMENT BY 1
|
884
910
|
NO MINVALUE
|
@@ -912,6 +938,7 @@ CREATE TABLE public.metasploit_credential_privates (
|
|
912
938
|
--
|
913
939
|
|
914
940
|
CREATE SEQUENCE public.metasploit_credential_privates_id_seq
|
941
|
+
AS integer
|
915
942
|
START WITH 1
|
916
943
|
INCREMENT BY 1
|
917
944
|
NO MINVALUE
|
@@ -944,6 +971,7 @@ CREATE TABLE public.metasploit_credential_publics (
|
|
944
971
|
--
|
945
972
|
|
946
973
|
CREATE SEQUENCE public.metasploit_credential_publics_id_seq
|
974
|
+
AS integer
|
947
975
|
START WITH 1
|
948
976
|
INCREMENT BY 1
|
949
977
|
NO MINVALUE
|
@@ -976,6 +1004,7 @@ CREATE TABLE public.metasploit_credential_realms (
|
|
976
1004
|
--
|
977
1005
|
|
978
1006
|
CREATE SEQUENCE public.metasploit_credential_realms_id_seq
|
1007
|
+
AS integer
|
979
1008
|
START WITH 1
|
980
1009
|
INCREMENT BY 1
|
981
1010
|
NO MINVALUE
|
@@ -1007,6 +1036,7 @@ CREATE TABLE public.mod_refs (
|
|
1007
1036
|
--
|
1008
1037
|
|
1009
1038
|
CREATE SEQUENCE public.mod_refs_id_seq
|
1039
|
+
AS integer
|
1010
1040
|
START WITH 1
|
1011
1041
|
INCREMENT BY 1
|
1012
1042
|
NO MINVALUE
|
@@ -1037,6 +1067,7 @@ CREATE TABLE public.module_actions (
|
|
1037
1067
|
--
|
1038
1068
|
|
1039
1069
|
CREATE SEQUENCE public.module_actions_id_seq
|
1070
|
+
AS integer
|
1040
1071
|
START WITH 1
|
1041
1072
|
INCREMENT BY 1
|
1042
1073
|
NO MINVALUE
|
@@ -1067,6 +1098,7 @@ CREATE TABLE public.module_archs (
|
|
1067
1098
|
--
|
1068
1099
|
|
1069
1100
|
CREATE SEQUENCE public.module_archs_id_seq
|
1101
|
+
AS integer
|
1070
1102
|
START WITH 1
|
1071
1103
|
INCREMENT BY 1
|
1072
1104
|
NO MINVALUE
|
@@ -1098,6 +1130,7 @@ CREATE TABLE public.module_authors (
|
|
1098
1130
|
--
|
1099
1131
|
|
1100
1132
|
CREATE SEQUENCE public.module_authors_id_seq
|
1133
|
+
AS integer
|
1101
1134
|
START WITH 1
|
1102
1135
|
INCREMENT BY 1
|
1103
1136
|
NO MINVALUE
|
@@ -1141,6 +1174,7 @@ CREATE TABLE public.module_details (
|
|
1141
1174
|
--
|
1142
1175
|
|
1143
1176
|
CREATE SEQUENCE public.module_details_id_seq
|
1177
|
+
AS integer
|
1144
1178
|
START WITH 1
|
1145
1179
|
INCREMENT BY 1
|
1146
1180
|
NO MINVALUE
|
@@ -1171,6 +1205,7 @@ CREATE TABLE public.module_mixins (
|
|
1171
1205
|
--
|
1172
1206
|
|
1173
1207
|
CREATE SEQUENCE public.module_mixins_id_seq
|
1208
|
+
AS integer
|
1174
1209
|
START WITH 1
|
1175
1210
|
INCREMENT BY 1
|
1176
1211
|
NO MINVALUE
|
@@ -1201,6 +1236,7 @@ CREATE TABLE public.module_platforms (
|
|
1201
1236
|
--
|
1202
1237
|
|
1203
1238
|
CREATE SEQUENCE public.module_platforms_id_seq
|
1239
|
+
AS integer
|
1204
1240
|
START WITH 1
|
1205
1241
|
INCREMENT BY 1
|
1206
1242
|
NO MINVALUE
|
@@ -1231,6 +1267,7 @@ CREATE TABLE public.module_refs (
|
|
1231
1267
|
--
|
1232
1268
|
|
1233
1269
|
CREATE SEQUENCE public.module_refs_id_seq
|
1270
|
+
AS integer
|
1234
1271
|
START WITH 1
|
1235
1272
|
INCREMENT BY 1
|
1236
1273
|
NO MINVALUE
|
@@ -1273,6 +1310,7 @@ CREATE TABLE public.module_runs (
|
|
1273
1310
|
--
|
1274
1311
|
|
1275
1312
|
CREATE SEQUENCE public.module_runs_id_seq
|
1313
|
+
AS integer
|
1276
1314
|
START WITH 1
|
1277
1315
|
INCREMENT BY 1
|
1278
1316
|
NO MINVALUE
|
@@ -1304,6 +1342,7 @@ CREATE TABLE public.module_targets (
|
|
1304
1342
|
--
|
1305
1343
|
|
1306
1344
|
CREATE SEQUENCE public.module_targets_id_seq
|
1345
|
+
AS integer
|
1307
1346
|
START WITH 1
|
1308
1347
|
INCREMENT BY 1
|
1309
1348
|
NO MINVALUE
|
@@ -1345,6 +1384,7 @@ CREATE TABLE public.nexpose_consoles (
|
|
1345
1384
|
--
|
1346
1385
|
|
1347
1386
|
CREATE SEQUENCE public.nexpose_consoles_id_seq
|
1387
|
+
AS integer
|
1348
1388
|
START WITH 1
|
1349
1389
|
INCREMENT BY 1
|
1350
1390
|
NO MINVALUE
|
@@ -1383,6 +1423,7 @@ CREATE TABLE public.notes (
|
|
1383
1423
|
--
|
1384
1424
|
|
1385
1425
|
CREATE SEQUENCE public.notes_id_seq
|
1426
|
+
AS integer
|
1386
1427
|
START WITH 1
|
1387
1428
|
INCREMENT BY 1
|
1388
1429
|
NO MINVALUE
|
@@ -1425,6 +1466,7 @@ CREATE TABLE public.payloads (
|
|
1425
1466
|
--
|
1426
1467
|
|
1427
1468
|
CREATE SEQUENCE public.payloads_id_seq
|
1469
|
+
AS integer
|
1428
1470
|
START WITH 1
|
1429
1471
|
INCREMENT BY 1
|
1430
1472
|
NO MINVALUE
|
@@ -1459,6 +1501,7 @@ CREATE TABLE public.profiles (
|
|
1459
1501
|
--
|
1460
1502
|
|
1461
1503
|
CREATE SEQUENCE public.profiles_id_seq
|
1504
|
+
AS integer
|
1462
1505
|
START WITH 1
|
1463
1506
|
INCREMENT BY 1
|
1464
1507
|
NO MINVALUE
|
@@ -1491,6 +1534,7 @@ CREATE TABLE public.refs (
|
|
1491
1534
|
--
|
1492
1535
|
|
1493
1536
|
CREATE SEQUENCE public.refs_id_seq
|
1537
|
+
AS integer
|
1494
1538
|
START WITH 1
|
1495
1539
|
INCREMENT BY 1
|
1496
1540
|
NO MINVALUE
|
@@ -1525,6 +1569,7 @@ CREATE TABLE public.report_templates (
|
|
1525
1569
|
--
|
1526
1570
|
|
1527
1571
|
CREATE SEQUENCE public.report_templates_id_seq
|
1572
|
+
AS integer
|
1528
1573
|
START WITH 1
|
1529
1574
|
INCREMENT BY 1
|
1530
1575
|
NO MINVALUE
|
@@ -1563,6 +1608,7 @@ CREATE TABLE public.reports (
|
|
1563
1608
|
--
|
1564
1609
|
|
1565
1610
|
CREATE SEQUENCE public.reports_id_seq
|
1611
|
+
AS integer
|
1566
1612
|
START WITH 1
|
1567
1613
|
INCREMENT BY 1
|
1568
1614
|
NO MINVALUE
|
@@ -1594,6 +1640,7 @@ CREATE TABLE public.routes (
|
|
1594
1640
|
--
|
1595
1641
|
|
1596
1642
|
CREATE SEQUENCE public.routes_id_seq
|
1643
|
+
AS integer
|
1597
1644
|
START WITH 1
|
1598
1645
|
INCREMENT BY 1
|
1599
1646
|
NO MINVALUE
|
@@ -1639,6 +1686,7 @@ CREATE TABLE public.services (
|
|
1639
1686
|
--
|
1640
1687
|
|
1641
1688
|
CREATE SEQUENCE public.services_id_seq
|
1689
|
+
AS integer
|
1642
1690
|
START WITH 1
|
1643
1691
|
INCREMENT BY 1
|
1644
1692
|
NO MINVALUE
|
@@ -1674,6 +1722,7 @@ CREATE TABLE public.session_events (
|
|
1674
1722
|
--
|
1675
1723
|
|
1676
1724
|
CREATE SEQUENCE public.session_events_id_seq
|
1725
|
+
AS integer
|
1677
1726
|
START WITH 1
|
1678
1727
|
INCREMENT BY 1
|
1679
1728
|
NO MINVALUE
|
@@ -1716,6 +1765,7 @@ CREATE TABLE public.sessions (
|
|
1716
1765
|
--
|
1717
1766
|
|
1718
1767
|
CREATE SEQUENCE public.sessions_id_seq
|
1768
|
+
AS integer
|
1719
1769
|
START WITH 1
|
1720
1770
|
INCREMENT BY 1
|
1721
1771
|
NO MINVALUE
|
@@ -1752,6 +1802,7 @@ CREATE TABLE public.tags (
|
|
1752
1802
|
--
|
1753
1803
|
|
1754
1804
|
CREATE SEQUENCE public.tags_id_seq
|
1805
|
+
AS integer
|
1755
1806
|
START WITH 1
|
1756
1807
|
INCREMENT BY 1
|
1757
1808
|
NO MINVALUE
|
@@ -1784,6 +1835,7 @@ CREATE TABLE public.task_creds (
|
|
1784
1835
|
--
|
1785
1836
|
|
1786
1837
|
CREATE SEQUENCE public.task_creds_id_seq
|
1838
|
+
AS integer
|
1787
1839
|
START WITH 1
|
1788
1840
|
INCREMENT BY 1
|
1789
1841
|
NO MINVALUE
|
@@ -1816,6 +1868,7 @@ CREATE TABLE public.task_hosts (
|
|
1816
1868
|
--
|
1817
1869
|
|
1818
1870
|
CREATE SEQUENCE public.task_hosts_id_seq
|
1871
|
+
AS integer
|
1819
1872
|
START WITH 1
|
1820
1873
|
INCREMENT BY 1
|
1821
1874
|
NO MINVALUE
|
@@ -1848,6 +1901,7 @@ CREATE TABLE public.task_services (
|
|
1848
1901
|
--
|
1849
1902
|
|
1850
1903
|
CREATE SEQUENCE public.task_services_id_seq
|
1904
|
+
AS integer
|
1851
1905
|
START WITH 1
|
1852
1906
|
INCREMENT BY 1
|
1853
1907
|
NO MINVALUE
|
@@ -1880,6 +1934,7 @@ CREATE TABLE public.task_sessions (
|
|
1880
1934
|
--
|
1881
1935
|
|
1882
1936
|
CREATE SEQUENCE public.task_sessions_id_seq
|
1937
|
+
AS integer
|
1883
1938
|
START WITH 1
|
1884
1939
|
INCREMENT BY 1
|
1885
1940
|
NO MINVALUE
|
@@ -1923,6 +1978,7 @@ CREATE TABLE public.tasks (
|
|
1923
1978
|
--
|
1924
1979
|
|
1925
1980
|
CREATE SEQUENCE public.tasks_id_seq
|
1981
|
+
AS integer
|
1926
1982
|
START WITH 1
|
1927
1983
|
INCREMENT BY 1
|
1928
1984
|
NO MINVALUE
|
@@ -1963,6 +2019,7 @@ CREATE TABLE public.users (
|
|
1963
2019
|
--
|
1964
2020
|
|
1965
2021
|
CREATE SEQUENCE public.users_id_seq
|
2022
|
+
AS integer
|
1966
2023
|
START WITH 1
|
1967
2024
|
INCREMENT BY 1
|
1968
2025
|
NO MINVALUE
|
@@ -2000,6 +2057,7 @@ CREATE TABLE public.vuln_attempts (
|
|
2000
2057
|
--
|
2001
2058
|
|
2002
2059
|
CREATE SEQUENCE public.vuln_attempts_id_seq
|
2060
|
+
AS integer
|
2003
2061
|
START WITH 1
|
2004
2062
|
INCREMENT BY 1
|
2005
2063
|
NO MINVALUE
|
@@ -2050,6 +2108,7 @@ CREATE TABLE public.vuln_details (
|
|
2050
2108
|
--
|
2051
2109
|
|
2052
2110
|
CREATE SEQUENCE public.vuln_details_id_seq
|
2111
|
+
AS integer
|
2053
2112
|
START WITH 1
|
2054
2113
|
INCREMENT BY 1
|
2055
2114
|
NO MINVALUE
|
@@ -2089,6 +2148,7 @@ CREATE TABLE public.vulns (
|
|
2089
2148
|
--
|
2090
2149
|
|
2091
2150
|
CREATE SEQUENCE public.vulns_id_seq
|
2151
|
+
AS integer
|
2092
2152
|
START WITH 1
|
2093
2153
|
INCREMENT BY 1
|
2094
2154
|
NO MINVALUE
|
@@ -2119,6 +2179,7 @@ CREATE TABLE public.vulns_refs (
|
|
2119
2179
|
--
|
2120
2180
|
|
2121
2181
|
CREATE SEQUENCE public.vulns_refs_id_seq
|
2182
|
+
AS integer
|
2122
2183
|
START WITH 1
|
2123
2184
|
INCREMENT BY 1
|
2124
2185
|
NO MINVALUE
|
@@ -2154,6 +2215,7 @@ CREATE TABLE public.web_forms (
|
|
2154
2215
|
--
|
2155
2216
|
|
2156
2217
|
CREATE SEQUENCE public.web_forms_id_seq
|
2218
|
+
AS integer
|
2157
2219
|
START WITH 1
|
2158
2220
|
INCREMENT BY 1
|
2159
2221
|
NO MINVALUE
|
@@ -2196,6 +2258,7 @@ CREATE TABLE public.web_pages (
|
|
2196
2258
|
--
|
2197
2259
|
|
2198
2260
|
CREATE SEQUENCE public.web_pages_id_seq
|
2261
|
+
AS integer
|
2199
2262
|
START WITH 1
|
2200
2263
|
INCREMENT BY 1
|
2201
2264
|
NO MINVALUE
|
@@ -2230,6 +2293,7 @@ CREATE TABLE public.web_sites (
|
|
2230
2293
|
--
|
2231
2294
|
|
2232
2295
|
CREATE SEQUENCE public.web_sites_id_seq
|
2296
|
+
AS integer
|
2233
2297
|
START WITH 1
|
2234
2298
|
INCREMENT BY 1
|
2235
2299
|
NO MINVALUE
|
@@ -2276,6 +2340,7 @@ CREATE TABLE public.web_vulns (
|
|
2276
2340
|
--
|
2277
2341
|
|
2278
2342
|
CREATE SEQUENCE public.web_vulns_id_seq
|
2343
|
+
AS integer
|
2279
2344
|
START WITH 1
|
2280
2345
|
INCREMENT BY 1
|
2281
2346
|
NO MINVALUE
|
@@ -2318,6 +2383,7 @@ CREATE TABLE public.wmap_requests (
|
|
2318
2383
|
--
|
2319
2384
|
|
2320
2385
|
CREATE SEQUENCE public.wmap_requests_id_seq
|
2386
|
+
AS integer
|
2321
2387
|
START WITH 1
|
2322
2388
|
INCREMENT BY 1
|
2323
2389
|
NO MINVALUE
|
@@ -2353,6 +2419,7 @@ CREATE TABLE public.wmap_targets (
|
|
2353
2419
|
--
|
2354
2420
|
|
2355
2421
|
CREATE SEQUENCE public.wmap_targets_id_seq
|
2422
|
+
AS integer
|
2356
2423
|
START WITH 1
|
2357
2424
|
INCREMENT BY 1
|
2358
2425
|
NO MINVALUE
|
@@ -2399,6 +2466,7 @@ CREATE TABLE public.workspaces (
|
|
2399
2466
|
--
|
2400
2467
|
|
2401
2468
|
CREATE SEQUENCE public.workspaces_id_seq
|
2469
|
+
AS integer
|
2402
2470
|
START WITH 1
|
2403
2471
|
INCREMENT BY 1
|
2404
2472
|
NO MINVALUE
|
@@ -3598,7 +3666,14 @@ CREATE INDEX index_metasploit_credential_origin_manuals_on_user_id ON public.met
|
|
3598
3666
|
-- Name: index_metasploit_credential_privates_on_type_and_data; Type: INDEX; Schema: public; Owner: -
|
3599
3667
|
--
|
3600
3668
|
|
3601
|
-
CREATE UNIQUE INDEX index_metasploit_credential_privates_on_type_and_data ON public.metasploit_credential_privates USING btree (type, data) WHERE (NOT ((type)::text = 'Metasploit::Credential::SSHKey'::text));
|
3669
|
+
CREATE UNIQUE INDEX index_metasploit_credential_privates_on_type_and_data ON public.metasploit_credential_privates USING btree (type, data) WHERE (NOT (((type)::text = 'Metasploit::Credential::SSHKey'::text) OR ((type)::text = 'Metasploit::Credential::Pkcs12'::text)));
|
3670
|
+
|
3671
|
+
|
3672
|
+
--
|
3673
|
+
-- Name: index_metasploit_credential_privates_on_type_and_data_pkcs12; Type: INDEX; Schema: public; Owner: -
|
3674
|
+
--
|
3675
|
+
|
3676
|
+
CREATE UNIQUE INDEX index_metasploit_credential_privates_on_type_and_data_pkcs12 ON public.metasploit_credential_privates USING btree (type, decode(md5(data), 'hex'::text)) WHERE ((type)::text = 'Metasploit::Credential::Pkcs12'::text);
|
3602
3677
|
|
3603
3678
|
|
3604
3679
|
--
|
@@ -4071,6 +4146,7 @@ INSERT INTO "schema_migrations" (version) VALUES
|
|
4071
4146
|
('20180904120211'),
|
4072
4147
|
('20190308134512'),
|
4073
4148
|
('20190507120211'),
|
4149
|
+
('20221209005658'),
|
4074
4150
|
('21'),
|
4075
4151
|
('22'),
|
4076
4152
|
('23'),
|
metadata
CHANGED
@@ -1,40 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metasploit-credential
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Metasploit Hackers
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
|
-
cert_chain:
|
11
|
-
-
|
12
|
-
-----BEGIN CERTIFICATE-----
|
13
|
-
MIIERDCCAqygAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBttc2Zk
|
14
|
-
ZXYvREM9bWV0YXNwbG9pdC9EQz1jb20wHhcNMjMxMDMwMTYwNDI1WhcNMjUxMDI5
|
15
|
-
MTYwNDI1WjAmMSQwIgYDVQQDDBttc2ZkZXYvREM9bWV0YXNwbG9pdC9EQz1jb20w
|
16
|
-
ggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDZN/EKv+yVjwiKWvjAVhjF
|
17
|
-
aWNYI0E9bJ5d1qKd29omRYX9a+OOKBCu5+394fyF5RjwU4mYGr2iopX9ixRJrWXH
|
18
|
-
ojs70tEvV1CmvP9rhz7JKzQQoJOkinrz4d+StIylxVxVdgm7DeiB3ruTwvl7qKUv
|
19
|
-
piWzhrBFiVU6XIEAwq6wNEmnv2D+Omyf4h0Tf99hc6G0QmBnU3XydqvnZ+AzUbBV
|
20
|
-
24RH3+NQoigLbvK4M5aOeYhk19di58hznebOw6twHzNczshrBeMFQp985ScNgsvF
|
21
|
-
rL+7HNNwpcpngERwZfzDNn7iYN5X3cyvTcykShtsuPMa5zXsYo42LZrsTF87DW38
|
22
|
-
D8sxL6Dgdqu25Mltdw9m+iD4rHSfb1KJYEoNO+WwBJLO2Y4d6G1CR66tVeWsZspb
|
23
|
-
zneOVC+sDuil7hOm+6a7Y2yrrRyT6IfL/07DywjPAIRUp5+Jn8ZrkWRNo2AOwWBG
|
24
|
-
k5gz7SfJPHuyVnPlxoMA0MTFCUnnnbyHu882TGoJGgMCAwEAAaN9MHswCQYDVR0T
|
25
|
-
BAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFIQfNa4E889ZE334cwU7eNu2hScH
|
26
|
-
MCAGA1UdEQQZMBeBFW1zZmRldkBtZXRhc3Bsb2l0LmNvbTAgBgNVHRIEGTAXgRVt
|
27
|
-
c2ZkZXZAbWV0YXNwbG9pdC5jb20wDQYJKoZIhvcNAQELBQADggGBAMfzvKcV27p7
|
28
|
-
pctmpW2JmIXLMrjNLyGJAxELH/t9pJueXdga7uj2fJkYQDbwGw5x4MGyFqhqJLH4
|
29
|
-
l/qsUF3PyAXDTSWLVaqXQVWO+IIHxecG0XjPXTNudzMU0hzqbqiBKvsW7/a3V5BP
|
30
|
-
SWlFzrFkoXWlPouFpoakyYMJjpW4SGdPzRv7pM4OhXtkXpHiRvx5985FrHgHlI89
|
31
|
-
NSIuIUbp8zqk4hP1i9MV0Lc/vTf2gOmo+RHnjqG1NiYfMCYyY/Mcd4W36kGOl468
|
32
|
-
I8VDTwgCufkAzFu7BJ5yCOueqtDcuq+d3YhAyU7NI4+Ja8EwazOnB+07sWhKpg7z
|
33
|
-
yuQ1mWYPmZfVQpoSVv1CvXsoqJYXVPBBLOacKKSj8ArVG6pPn9Bej7IOQdblaFjl
|
34
|
-
DgscAao7wB3xW2BWEp1KnaDWkf1x9ttgoBEYyuYwU7uatB67kBQG1PKvLt79wHvz
|
35
|
-
Dxs+KOjGbBRfMnPgVGYkORKVrZIwlaboHbDKxcVW5xv+oZc7KYXWGg==
|
36
|
-
-----END CERTIFICATE-----
|
37
|
-
date: 2025-02-06 00:00:00.000000000 Z
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
38
12
|
dependencies:
|
39
13
|
- !ruby/object:Gem::Dependency
|
40
14
|
name: metasploit-concern
|
@@ -367,7 +341,7 @@ homepage: https://github.com/rapid7/metasploit-credential
|
|
367
341
|
licenses:
|
368
342
|
- BSD-3-clause
|
369
343
|
metadata: {}
|
370
|
-
post_install_message:
|
344
|
+
post_install_message:
|
371
345
|
rdoc_options: []
|
372
346
|
require_paths:
|
373
347
|
- app/models
|
@@ -384,8 +358,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
384
358
|
- !ruby/object:Gem::Version
|
385
359
|
version: '0'
|
386
360
|
requirements: []
|
387
|
-
rubygems_version: 3.4.
|
388
|
-
signing_key:
|
361
|
+
rubygems_version: 3.4.19
|
362
|
+
signing_key:
|
389
363
|
specification_version: 4
|
390
364
|
summary: Credential models for metasploit-framework and Metasploit Pro
|
391
365
|
test_files:
|
checksums.yaml.gz.sig
DELETED
Binary file
|
data.tar.gz.sig
DELETED
Binary file
|
metadata.gz.sig
DELETED
Binary file
|