metasploit-credential 0.7.14 → 0.7.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/metasploit/credential/creation.rb +4 -18
- data/lib/metasploit/credential/version.rb +1 -1
- data/spec/dummy/log/development.log +1441 -0
- data/spec/dummy/log/test.log +82416 -0
- data/spec/lib/metasploit/credential/creation_spec.rb +33 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjZlODczMWNjY2IwODEwMDk0NDU4MTdlM2NkMjJkNDlmZjZiNThiMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OGE4NWVlODdiMDY0YTU0YTRiODU0OTYzZmI1YTBmZTZmMDFmZjU1NQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTliZGIyNDg4NTY1MWUzZmZjNDk3YWZiYTdmYzU4NGJhZGY4NjZkODg4ODc0
|
10
|
+
MzM4MzFlOWY0NDlhNjlkY2ExYjY3NDQzNDBmYTdmZDI3YmE2YmJlMmRiYWNh
|
11
|
+
Y2IwZTE0ODdhMTkzYzNlMzQyZDhkNTRkMWY3YTJhZDNiYjA3Y2Y=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OTc5NGZjMzE1MmU3OGRkNDc4ZTBkZmM1MjY0YTBlNjc3M2M4ODBjZjZiNmI3
|
14
|
+
MmUzNDZkNjhhY2ZjYzFjYzQ4ZGJiYzJiYjYwZWQyZjk2ZTc0ZTFmYmI5YTFk
|
15
|
+
MjUzMDNjYjliZGY3NzNkYTg4ZjA2YWM5Y2JmOTEyMTU5M2FkM2Y=
|
@@ -426,29 +426,15 @@ module Metasploit
|
|
426
426
|
status = opts.fetch(:status)
|
427
427
|
|
428
428
|
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
pub_obj = nil
|
433
|
-
end
|
434
|
-
|
435
|
-
begin
|
436
|
-
priv_obj = Metasploit::Credential::Private.where(data: private).first.id
|
437
|
-
rescue NoMethodError
|
438
|
-
priv_obj = nil
|
439
|
-
end
|
440
|
-
|
441
|
-
begin
|
442
|
-
realm_obj = Metasploit::Credential::Realm.where(key: realm_key, value: realm_value).first.id
|
443
|
-
rescue NoMethodError
|
444
|
-
realm_obj = nil
|
445
|
-
end
|
429
|
+
pub_obj = Metasploit::Credential::Public.where(username: public).first.try(:id)
|
430
|
+
priv_obj = Metasploit::Credential::Private.where(data: private).first.try(:id)
|
431
|
+
realm_obj = Metasploit::Credential::Realm.where(key: realm_key, value: realm_value).first.try(:id)
|
446
432
|
|
447
433
|
core = Metasploit::Credential::Core.where(public_id: pub_obj, private_id: priv_obj, realm_id: realm_obj).first
|
448
434
|
|
449
435
|
# Do nothing else if we have no matching core. Otherwise look for a Login.
|
450
436
|
if core.present?
|
451
|
-
login =
|
437
|
+
login = core.logins.joins(service: :host).where(services: { port: port, proto: protocol } ).where( hosts: {address: address}).readonly(false).first
|
452
438
|
|
453
439
|
if login.present?
|
454
440
|
login.status = status
|
@@ -7,7 +7,7 @@ module Metasploit
|
|
7
7
|
# The minor version number, scoped to the {MAJOR} version number.
|
8
8
|
MINOR = 7
|
9
9
|
# The patch number, scoped to the {MINOR} version number.
|
10
|
-
PATCH =
|
10
|
+
PATCH = 15
|
11
11
|
|
12
12
|
# The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the {PRERELEASE} in the
|
13
13
|
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
|
@@ -32643,3 +32643,1444 @@ Connecting to database specified by database.yml
|
|
32643
32643
|
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
32644
32644
|
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
32645
32645
|
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|
32646
|
+
Connecting to database specified by database.yml
|
32647
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
32648
|
+
[1m[35m (198.4ms)[0m DROP DATABASE IF EXISTS "metasploit_credential_test"
|
32649
|
+
[1m[36m (460.8ms)[0m [1mCREATE DATABASE "metasploit_credential_test" ENCODING = 'utf8'[0m
|
32650
|
+
[1m[35m (9.7ms)[0m CREATE TABLE "api_keys" ("id" serial primary key, "token" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32651
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "clients" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "ua_string" character varying(1024) NOT NULL, "ua_name" character varying(64), "ua_ver" character varying(32), "updated_at" timestamp) [0m
|
32652
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "credential_cores_tasks" ("core_id" integer, "task_id" integer)
|
32653
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "credential_logins_tasks" ("login_id" integer, "task_id" integer) [0m
|
32654
|
+
[1m[35m (24.2ms)[0m CREATE TABLE "creds" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "user" character varying(2048), "pass" character varying(4096), "active" boolean DEFAULT 't', "proof" character varying(4096), "ptype" character varying(256), "source_id" integer, "source_type" character varying(255))
|
32655
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "events" ("id" serial primary key, "workspace_id" integer, "host_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "critical" boolean, "seen" boolean, "username" character varying(255), "info" text) [0m
|
32656
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "exploit_attempts" ("id" serial primary key, "host_id" integer, "service_id" integer, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "port" integer, "proto" character varying(255), "fail_detail" text)
|
32657
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "exploited_hosts" ("id" serial primary key, "host_id" integer NOT NULL, "service_id" integer, "session_uuid" character varying(8), "name" character varying(2048), "payload" character varying(2048), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32658
|
+
[1m[35m (2.9ms)[0m CREATE TABLE "host_details" ("id" serial primary key, "host_id" integer, "nx_console_id" integer, "nx_device_id" integer, "src" character varying(255), "nx_site_name" character varying(255), "nx_site_importance" character varying(255), "nx_scan_template" character varying(255), "nx_risk_score" float)
|
32659
|
+
[1m[36m (3.4ms)[0m [1mCREATE TABLE "hosts" ("id" serial primary key, "created_at" timestamp, "address" character varying(255) NOT NULL, "mac" character varying(255), "comm" character varying(255), "name" character varying(255), "state" character varying(255), "os_name" character varying(255), "os_flavor" character varying(255), "os_sp" character varying(255), "os_lang" character varying(255), "arch" character varying(255), "workspace_id" integer NOT NULL, "updated_at" timestamp, "purpose" text, "info" character varying(65536), "comments" text, "scope" text, "virtual_host" text, "note_count" integer DEFAULT 0, "vuln_count" integer DEFAULT 0, "service_count" integer DEFAULT 0, "host_detail_count" integer DEFAULT 0, "exploit_attempt_count" integer DEFAULT 0, "cred_count" integer DEFAULT 0) [0m
|
32660
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_hosts_on_name" ON "hosts" ("name")
|
32661
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_hosts_on_os_flavor" ON "hosts" ("os_flavor")[0m
|
32662
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_os_name" ON "hosts" ("os_name")
|
32663
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_purpose" ON "hosts" ("purpose")[0m
|
32664
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_state" ON "hosts" ("state")
|
32665
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_hosts_on_workspace_id_and_address" ON "hosts" ("workspace_id", "address")[0m
|
32666
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "hosts_tags" ("id" serial primary key, "host_id" integer, "tag_id" integer)
|
32667
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "listeners" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "workspace_id" integer DEFAULT 1 NOT NULL, "task_id" integer, "enabled" boolean DEFAULT 't', "owner" text, "payload" text, "address" text, "port" integer, "options" bytea, "macro" text) [0m
|
32668
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "loots" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "host_id" integer, "service_id" integer, "ltype" character varying(512), "path" character varying(1024), "data" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "content_type" character varying(255), "name" text, "info" text)
|
32669
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "macros" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "owner" text, "name" text, "description" text, "actions" bytea, "prefs" bytea) [0m
|
32670
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "metasploit_credential_cores" ("id" serial primary key, "origin_id" integer NOT NULL, "origin_type" character varying(255) NOT NULL, "private_id" integer, "public_id" integer, "realm_id" integer, "workspace_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "logins_count" integer DEFAULT 0)
|
32671
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_origin_type_and_origin_id" ON "metasploit_credential_cores" ("origin_type", "origin_id")[0m
|
32672
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_private_id" ON "metasploit_credential_cores" ("private_id")
|
32673
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_public_id" ON "metasploit_credential_cores" ("public_id")[0m
|
32674
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_realm_id" ON "metasploit_credential_cores" ("realm_id")
|
32675
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_workspace_id" ON "metasploit_credential_cores" ("workspace_id")[0m
|
32676
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "metasploit_credential_logins" ("id" serial primary key, "core_id" integer NOT NULL, "service_id" integer NOT NULL, "access_level" character varying(255), "status" character varying(255) NOT NULL, "last_attempted_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32677
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_metasploit_credential_logins_on_core_id_and_service_id" ON "metasploit_credential_logins" ("core_id", "service_id")[0m
|
32678
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_logins_on_service_id_and_core_id" ON "metasploit_credential_logins" ("service_id", "core_id")
|
32679
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "metasploit_credential_origin_cracked_passwords" ("id" serial primary key, "metasploit_credential_core_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32680
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "originating_credential_cores" ON "metasploit_credential_origin_cracked_passwords" ("metasploit_credential_core_id")
|
32681
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "metasploit_credential_origin_imports" ("id" serial primary key, "filename" text NOT NULL, "task_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32682
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_origin_imports_on_task_id" ON "metasploit_credential_origin_imports" ("task_id")
|
32683
|
+
[1m[36m (2.2ms)[0m [1mCREATE TABLE "metasploit_credential_origin_manuals" ("id" serial primary key, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32684
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_origin_manuals_on_user_id" ON "metasploit_credential_origin_manuals" ("user_id")
|
32685
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "metasploit_credential_origin_services" ("id" serial primary key, "service_id" integer NOT NULL, "module_full_name" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32686
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_services" ON "metasploit_credential_origin_services" ("service_id", "module_full_name")
|
32687
|
+
[1m[36m (5.2ms)[0m [1mCREATE TABLE "metasploit_credential_origin_sessions" ("id" serial primary key, "post_reference_name" text NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32688
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_sessions" ON "metasploit_credential_origin_sessions" ("session_id", "post_reference_name")
|
32689
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "metasploit_credential_privates" ("id" serial primary key, "type" character varying(255) NOT NULL, "data" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "jtr_format" character varying(255)) [0m
|
32690
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_privates_on_type_and_data" ON "metasploit_credential_privates" ("type", "data")
|
32691
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "metasploit_credential_publics" ("id" serial primary key, "username" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32692
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_publics_on_username" ON "metasploit_credential_publics" ("username")
|
32693
|
+
[1m[36m (3.7ms)[0m [1mCREATE TABLE "metasploit_credential_realms" ("id" serial primary key, "key" character varying(255) NOT NULL, "value" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32694
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_realms_on_key_and_value" ON "metasploit_credential_realms" ("key", "value")
|
32695
|
+
[1m[36m (4.1ms)[0m [1mCREATE TABLE "mod_refs" ("id" serial primary key, "module" character varying(1024), "mtype" character varying(128), "ref" text) [0m
|
32696
|
+
[1m[35m (3.6ms)[0m CREATE TABLE "module_actions" ("id" serial primary key, "detail_id" integer, "name" text)
|
32697
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_actions_on_module_detail_id" ON "module_actions" ("detail_id")[0m
|
32698
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "module_archs" ("id" serial primary key, "detail_id" integer, "name" text)
|
32699
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_archs_on_module_detail_id" ON "module_archs" ("detail_id")[0m
|
32700
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "module_authors" ("id" serial primary key, "detail_id" integer, "name" text, "email" text)
|
32701
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_authors_on_module_detail_id" ON "module_authors" ("detail_id")[0m
|
32702
|
+
[1m[35m (2.9ms)[0m CREATE TABLE "module_details" ("id" serial primary key, "mtime" timestamp, "file" text, "mtype" character varying(255), "refname" text, "fullname" text, "name" text, "rank" integer, "description" text, "license" character varying(255), "privileged" boolean, "disclosure_date" timestamp, "default_target" integer, "default_action" text, "stance" character varying(255), "ready" boolean)
|
32703
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_details_on_description" ON "module_details" ("description")[0m
|
32704
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_details_on_mtype" ON "module_details" ("mtype")
|
32705
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_details_on_name" ON "module_details" ("name")[0m
|
32706
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_details_on_refname" ON "module_details" ("refname")
|
32707
|
+
[1m[36m (4.4ms)[0m [1mCREATE TABLE "module_mixins" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
32708
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_mixins_on_module_detail_id" ON "module_mixins" ("detail_id")
|
32709
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "module_platforms" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
32710
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_module_platforms_on_module_detail_id" ON "module_platforms" ("detail_id")
|
32711
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "module_refs" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
32712
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_refs_on_module_detail_id" ON "module_refs" ("detail_id")
|
32713
|
+
[1m[36m (44.0ms)[0m [1mCREATE INDEX "index_module_refs_on_name" ON "module_refs" ("name")[0m
|
32714
|
+
[1m[35m (22.0ms)[0m CREATE TABLE "module_targets" ("id" serial primary key, "detail_id" integer, "index" integer, "name" text)
|
32715
|
+
[1m[36m (1.4ms)[0m [1mCREATE INDEX "index_module_targets_on_module_detail_id" ON "module_targets" ("detail_id")[0m
|
32716
|
+
[1m[35m (4.4ms)[0m CREATE TABLE "nexpose_consoles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "enabled" boolean DEFAULT 't', "owner" text, "address" text, "port" integer DEFAULT 3780, "username" text, "password" text, "status" text, "version" text, "cert" text, "cached_sites" bytea, "name" text)
|
32717
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "notes" ("id" serial primary key, "created_at" timestamp, "ntype" character varying(512), "workspace_id" integer DEFAULT 1 NOT NULL, "service_id" integer, "host_id" integer, "updated_at" timestamp, "critical" boolean, "seen" boolean, "data" text) [0m
|
32718
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_notes_on_ntype" ON "notes" ("ntype")
|
32719
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "profiles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "active" boolean DEFAULT 't', "name" text, "owner" text, "settings" bytea) [0m
|
32720
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "refs" ("id" serial primary key, "ref_id" integer, "created_at" timestamp, "name" character varying(512), "updated_at" timestamp)
|
32721
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_refs_on_name" ON "refs" ("name")[0m
|
32722
|
+
[1m[35m (5.0ms)[0m CREATE TABLE "report_templates" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "path" character varying(1024), "name" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32723
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "reports" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "rtype" character varying(255), "path" character varying(1024), "options" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "downloaded_at" timestamp, "task_id" integer, "name" character varying(63)) [0m
|
32724
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "routes" ("id" serial primary key, "session_id" integer, "subnet" character varying(255), "netmask" character varying(255))
|
32725
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "services" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "port" integer NOT NULL, "proto" character varying(16) NOT NULL, "state" character varying(255), "name" character varying(255), "updated_at" timestamp, "info" text) [0m
|
32726
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_services_on_name" ON "services" ("name")
|
32727
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_port" ON "services" ("port")[0m
|
32728
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_services_on_proto" ON "services" ("proto")
|
32729
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_services_on_state" ON "services" ("state")[0m
|
32730
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "session_events" ("id" serial primary key, "session_id" integer, "etype" character varying(255), "command" bytea, "output" bytea, "remote_path" character varying(255), "local_path" character varying(255), "created_at" timestamp)
|
32731
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "sessions" ("id" serial primary key, "host_id" integer, "stype" character varying(255), "via_exploit" character varying(255), "via_payload" character varying(255), "desc" character varying(255), "port" integer, "platform" character varying(255), "datastore" text, "opened_at" timestamp NOT NULL, "closed_at" timestamp, "close_reason" character varying(255), "local_id" integer, "last_seen" timestamp) [0m
|
32732
|
+
[1m[35m (5.3ms)[0m CREATE TABLE "tags" ("id" serial primary key, "user_id" integer, "name" character varying(1024), "desc" text, "report_summary" boolean DEFAULT 'f' NOT NULL, "report_detail" boolean DEFAULT 'f' NOT NULL, "critical" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32733
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "task_creds" ("id" serial primary key, "task_id" integer NOT NULL, "cred_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32734
|
+
[1m[35m (2.9ms)[0m CREATE TABLE "task_hosts" ("id" serial primary key, "task_id" integer NOT NULL, "host_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32735
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "task_services" ("id" serial primary key, "task_id" integer NOT NULL, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32736
|
+
[1m[35m (2.2ms)[0m CREATE TABLE "task_sessions" ("id" serial primary key, "task_id" integer NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32737
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "tasks" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "module" character varying(255), "completed_at" timestamp, "path" character varying(1024), "info" character varying(255), "description" character varying(255), "progress" integer, "options" text, "error" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "result" text, "module_uuid" character varying(8), "settings" bytea) [0m
|
32738
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "users" ("id" serial primary key, "username" character varying(255), "crypted_password" character varying(255), "password_salt" character varying(255), "persistence_token" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "fullname" character varying(255), "email" character varying(255), "phone" character varying(255), "company" character varying(255), "prefs" character varying(524288), "admin" boolean DEFAULT 't' NOT NULL)
|
32739
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "vuln_attempts" ("id" serial primary key, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "fail_detail" text) [0m
|
32740
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "vuln_details" ("id" serial primary key, "vuln_id" integer, "cvss_score" float, "cvss_vector" character varying(255), "title" character varying(255), "description" text, "solution" text, "proof" bytea, "nx_console_id" integer, "nx_device_id" integer, "nx_vuln_id" character varying(255), "nx_severity" float, "nx_pci_severity" float, "nx_published" timestamp, "nx_added" timestamp, "nx_modified" timestamp, "nx_tags" text, "nx_vuln_status" text, "nx_proof_key" text, "src" character varying(255), "nx_scan_id" integer, "nx_vulnerable_since" timestamp, "nx_pci_compliance_status" character varying(255))
|
32741
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "vulns" ("id" serial primary key, "host_id" integer, "service_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "info" character varying(65536), "exploited_at" timestamp, "vuln_detail_count" integer DEFAULT 0, "vuln_attempt_count" integer DEFAULT 0) [0m
|
32742
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_vulns_on_name" ON "vulns" ("name")
|
32743
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "vulns_refs" ("id" serial primary key, "ref_id" integer, "vuln_id" integer) [0m
|
32744
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "web_forms" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "method" character varying(1024), "params" text, "query" text)
|
32745
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_forms_on_path" ON "web_forms" ("path")[0m
|
32746
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "web_pages" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "query" text, "code" integer NOT NULL, "cookie" text, "auth" text, "ctype" text, "mtime" timestamp, "location" text, "headers" text, "body" bytea, "request" bytea)
|
32747
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_pages_on_path" ON "web_pages" ("path")[0m
|
32748
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_web_pages_on_query" ON "web_pages" ("query")
|
32749
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "web_sites" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "vhost" character varying(2048), "comments" text, "options" text) [0m
|
32750
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_comments" ON "web_sites" ("comments")
|
32751
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_web_sites_on_options" ON "web_sites" ("options")[0m
|
32752
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_web_sites_on_vhost" ON "web_sites" ("vhost")
|
32753
|
+
[1m[36m (4.7ms)[0m [1mCREATE TABLE "web_vulns" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text NOT NULL, "method" character varying(1024) NOT NULL, "params" text NOT NULL, "pname" text, "risk" integer NOT NULL, "name" character varying(1024) NOT NULL, "query" text, "category" text NOT NULL, "confidence" integer NOT NULL, "description" text, "blame" text, "request" bytea, "proof" bytea NOT NULL, "owner" character varying(255), "payload" text) [0m
|
32754
|
+
[1m[35m (1.3ms)[0m CREATE INDEX "index_web_vulns_on_method" ON "web_vulns" ("method")
|
32755
|
+
[1m[36m (1.3ms)[0m [1mCREATE INDEX "index_web_vulns_on_name" ON "web_vulns" ("name")[0m
|
32756
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_web_vulns_on_path" ON "web_vulns" ("path")
|
32757
|
+
[1m[36m (3.8ms)[0m [1mCREATE TABLE "wmap_requests" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "meth" character varying(32), "path" text, "headers" text, "query" text, "body" text, "respcode" character varying(16), "resphead" text, "response" text, "created_at" timestamp, "updated_at" timestamp) [0m
|
32758
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "wmap_targets" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "selected" integer, "created_at" timestamp, "updated_at" timestamp)
|
32759
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "workspace_members" ("workspace_id" integer NOT NULL, "user_id" integer NOT NULL) [0m
|
32760
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "workspaces" ("id" serial primary key, "name" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "boundary" character varying(4096), "description" character varying(4096), "owner_id" integer, "limit_to_network" boolean DEFAULT 'f' NOT NULL)
|
32761
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
32762
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
32763
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
32764
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140703144541')
|
32765
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140331173835')[0m
|
32766
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140407212345')
|
32767
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410132401')[0m
|
32768
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410161611')
|
32769
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410191213')[0m
|
32770
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410205410')
|
32771
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140411142102')[0m
|
32772
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140411205325')
|
32773
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140414192550')[0m
|
32774
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140417140933')
|
32775
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140520140817')[0m
|
32776
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140603163708')
|
32777
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140605173747')[0m
|
32778
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140702184622')
|
32779
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
32780
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('1')
|
32781
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('2')[0m
|
32782
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('3')
|
32783
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('4')[0m
|
32784
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('5')
|
32785
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('6')[0m
|
32786
|
+
[1m[35m (1.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('7')
|
32787
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('8')[0m
|
32788
|
+
[1m[35m (2.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('9')
|
32789
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('10')[0m
|
32790
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('11')
|
32791
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('12')[0m
|
32792
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('13')
|
32793
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('14')[0m
|
32794
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('15')
|
32795
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('16')[0m
|
32796
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('17')
|
32797
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('18')[0m
|
32798
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('19')
|
32799
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20')[0m
|
32800
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('21')
|
32801
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('22')[0m
|
32802
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('23')
|
32803
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('24')[0m
|
32804
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('25')
|
32805
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('26')[0m
|
32806
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100819123300')
|
32807
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100824151500')[0m
|
32808
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100908001428')
|
32809
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100911122000')[0m
|
32810
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100916151530')
|
32811
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100916175000')[0m
|
32812
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100920012100')
|
32813
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100926214000')[0m
|
32814
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101001000000')
|
32815
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101002000000')[0m
|
32816
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101007000000')
|
32817
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101008111800')[0m
|
32818
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101009023300')
|
32819
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101104135100')[0m
|
32820
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101203000000')
|
32821
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101203000001')[0m
|
32822
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101206212033')
|
32823
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110112154300')[0m
|
32824
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110204112800')
|
32825
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110317144932')[0m
|
32826
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110414180600')
|
32827
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110415175705')[0m
|
32828
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110422000000')
|
32829
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110425095900')[0m
|
32830
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110513143900')
|
32831
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110517160800')[0m
|
32832
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110527000000')
|
32833
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110527000001')[0m
|
32834
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110606000001')
|
32835
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110622000000')[0m
|
32836
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110624000001')
|
32837
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110625000001')[0m
|
32838
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110630000001')
|
32839
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110630000002')[0m
|
32840
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110717000001')
|
32841
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110727163801')[0m
|
32842
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110730000001')
|
32843
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110812000001')[0m
|
32844
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110922000000')
|
32845
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110928101300')[0m
|
32846
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111011110000')
|
32847
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111203000000')[0m
|
32848
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111204000000')
|
32849
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111210000000')[0m
|
32850
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120126110000')
|
32851
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120411173220')[0m
|
32852
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120601152442')
|
32853
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000000')[0m
|
32854
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000001')
|
32855
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000002')[0m
|
32856
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000003')
|
32857
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000004')[0m
|
32858
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000005')
|
32859
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000006')[0m
|
32860
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000007')
|
32861
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000008')[0m
|
32862
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120718202805')
|
32863
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130228214900')[0m
|
32864
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412154159')
|
32865
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412171844')[0m
|
32866
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412173121')
|
32867
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412173640')[0m
|
32868
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412174254')
|
32869
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412174719')[0m
|
32870
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412175040')
|
32871
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130423211152')[0m
|
32872
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130430151353')
|
32873
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130430162145')[0m
|
32874
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130510021637')
|
32875
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130515164311')[0m
|
32876
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130515172727')
|
32877
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130516204810')[0m
|
32878
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522001343')
|
32879
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130522032517')[0m
|
32880
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522041110')
|
32881
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130525015035')[0m
|
32882
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130525212420')
|
32883
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
32884
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
32885
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|
32886
|
+
Connecting to database specified by database.yml
|
32887
|
+
Connecting to database specified by database.yml
|
32888
|
+
[1m[36m (0.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
32889
|
+
[1m[35m (130.0ms)[0m DROP DATABASE IF EXISTS "metasploit_credential_test"
|
32890
|
+
[1m[36m (231.3ms)[0m [1mCREATE DATABASE "metasploit_credential_test" ENCODING = 'utf8'[0m
|
32891
|
+
[1m[35m (5.1ms)[0m CREATE TABLE "api_keys" ("id" serial primary key, "token" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32892
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "clients" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "ua_string" character varying(1024) NOT NULL, "ua_name" character varying(64), "ua_ver" character varying(32), "updated_at" timestamp) [0m
|
32893
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "credential_cores_tasks" ("core_id" integer, "task_id" integer)
|
32894
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "credential_logins_tasks" ("login_id" integer, "task_id" integer) [0m
|
32895
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "creds" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "user" character varying(2048), "pass" character varying(4096), "active" boolean DEFAULT 't', "proof" character varying(4096), "ptype" character varying(256), "source_id" integer, "source_type" character varying(255))
|
32896
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "events" ("id" serial primary key, "workspace_id" integer, "host_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "critical" boolean, "seen" boolean, "username" character varying(255), "info" text) [0m
|
32897
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "exploit_attempts" ("id" serial primary key, "host_id" integer, "service_id" integer, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "port" integer, "proto" character varying(255), "fail_detail" text)
|
32898
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "exploited_hosts" ("id" serial primary key, "host_id" integer NOT NULL, "service_id" integer, "session_uuid" character varying(8), "name" character varying(2048), "payload" character varying(2048), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32899
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "host_details" ("id" serial primary key, "host_id" integer, "nx_console_id" integer, "nx_device_id" integer, "src" character varying(255), "nx_site_name" character varying(255), "nx_site_importance" character varying(255), "nx_scan_template" character varying(255), "nx_risk_score" float)
|
32900
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "hosts" ("id" serial primary key, "created_at" timestamp, "address" character varying(255) NOT NULL, "mac" character varying(255), "comm" character varying(255), "name" character varying(255), "state" character varying(255), "os_name" character varying(255), "os_flavor" character varying(255), "os_sp" character varying(255), "os_lang" character varying(255), "arch" character varying(255), "workspace_id" integer NOT NULL, "updated_at" timestamp, "purpose" text, "info" character varying(65536), "comments" text, "scope" text, "virtual_host" text, "note_count" integer DEFAULT 0, "vuln_count" integer DEFAULT 0, "service_count" integer DEFAULT 0, "host_detail_count" integer DEFAULT 0, "exploit_attempt_count" integer DEFAULT 0, "cred_count" integer DEFAULT 0) [0m
|
32901
|
+
[1m[35m (1.5ms)[0m CREATE INDEX "index_hosts_on_name" ON "hosts" ("name")
|
32902
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_os_flavor" ON "hosts" ("os_flavor")[0m
|
32903
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_os_name" ON "hosts" ("os_name")
|
32904
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_hosts_on_purpose" ON "hosts" ("purpose")[0m
|
32905
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_hosts_on_state" ON "hosts" ("state")
|
32906
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_hosts_on_workspace_id_and_address" ON "hosts" ("workspace_id", "address")[0m
|
32907
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "hosts_tags" ("id" serial primary key, "host_id" integer, "tag_id" integer)
|
32908
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "listeners" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "workspace_id" integer DEFAULT 1 NOT NULL, "task_id" integer, "enabled" boolean DEFAULT 't', "owner" text, "payload" text, "address" text, "port" integer, "options" bytea, "macro" text) [0m
|
32909
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "loots" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "host_id" integer, "service_id" integer, "ltype" character varying(512), "path" character varying(1024), "data" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "content_type" character varying(255), "name" text, "info" text)
|
32910
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "macros" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "owner" text, "name" text, "description" text, "actions" bytea, "prefs" bytea) [0m
|
32911
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "metasploit_credential_cores" ("id" serial primary key, "origin_id" integer NOT NULL, "origin_type" character varying(255) NOT NULL, "private_id" integer, "public_id" integer, "realm_id" integer, "workspace_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "logins_count" integer DEFAULT 0)
|
32912
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_origin_type_and_origin_id" ON "metasploit_credential_cores" ("origin_type", "origin_id")[0m
|
32913
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_private_id" ON "metasploit_credential_cores" ("private_id")
|
32914
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_public_id" ON "metasploit_credential_cores" ("public_id")[0m
|
32915
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_realm_id" ON "metasploit_credential_cores" ("realm_id")
|
32916
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_workspace_id" ON "metasploit_credential_cores" ("workspace_id")[0m
|
32917
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "metasploit_credential_logins" ("id" serial primary key, "core_id" integer NOT NULL, "service_id" integer NOT NULL, "access_level" character varying(255), "status" character varying(255) NOT NULL, "last_attempted_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32918
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_metasploit_credential_logins_on_core_id_and_service_id" ON "metasploit_credential_logins" ("core_id", "service_id")[0m
|
32919
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_logins_on_service_id_and_core_id" ON "metasploit_credential_logins" ("service_id", "core_id")
|
32920
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "metasploit_credential_origin_cracked_passwords" ("id" serial primary key, "metasploit_credential_core_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32921
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "originating_credential_cores" ON "metasploit_credential_origin_cracked_passwords" ("metasploit_credential_core_id")
|
32922
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "metasploit_credential_origin_imports" ("id" serial primary key, "filename" text NOT NULL, "task_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32923
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_origin_imports_on_task_id" ON "metasploit_credential_origin_imports" ("task_id")
|
32924
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "metasploit_credential_origin_manuals" ("id" serial primary key, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32925
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_origin_manuals_on_user_id" ON "metasploit_credential_origin_manuals" ("user_id")
|
32926
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "metasploit_credential_origin_services" ("id" serial primary key, "service_id" integer NOT NULL, "module_full_name" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32927
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_services" ON "metasploit_credential_origin_services" ("service_id", "module_full_name")
|
32928
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "metasploit_credential_origin_sessions" ("id" serial primary key, "post_reference_name" text NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32929
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_sessions" ON "metasploit_credential_origin_sessions" ("session_id", "post_reference_name")
|
32930
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "metasploit_credential_privates" ("id" serial primary key, "type" character varying(255) NOT NULL, "data" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "jtr_format" character varying(255)) [0m
|
32931
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_privates_on_type_and_data" ON "metasploit_credential_privates" ("type", "data")
|
32932
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "metasploit_credential_publics" ("id" serial primary key, "username" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32933
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_publics_on_username" ON "metasploit_credential_publics" ("username")
|
32934
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "metasploit_credential_realms" ("id" serial primary key, "key" character varying(255) NOT NULL, "value" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32935
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_realms_on_key_and_value" ON "metasploit_credential_realms" ("key", "value")
|
32936
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mod_refs" ("id" serial primary key, "module" character varying(1024), "mtype" character varying(128), "ref" text) [0m
|
32937
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "module_actions" ("id" serial primary key, "detail_id" integer, "name" text)
|
32938
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_actions_on_module_detail_id" ON "module_actions" ("detail_id")[0m
|
32939
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "module_archs" ("id" serial primary key, "detail_id" integer, "name" text)
|
32940
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_archs_on_module_detail_id" ON "module_archs" ("detail_id")[0m
|
32941
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "module_authors" ("id" serial primary key, "detail_id" integer, "name" text, "email" text)
|
32942
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_authors_on_module_detail_id" ON "module_authors" ("detail_id")[0m
|
32943
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "module_details" ("id" serial primary key, "mtime" timestamp, "file" text, "mtype" character varying(255), "refname" text, "fullname" text, "name" text, "rank" integer, "description" text, "license" character varying(255), "privileged" boolean, "disclosure_date" timestamp, "default_target" integer, "default_action" text, "stance" character varying(255), "ready" boolean)
|
32944
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_details_on_description" ON "module_details" ("description")[0m
|
32945
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_details_on_mtype" ON "module_details" ("mtype")
|
32946
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_details_on_name" ON "module_details" ("name")[0m
|
32947
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_module_details_on_refname" ON "module_details" ("refname")
|
32948
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "module_mixins" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
32949
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_mixins_on_module_detail_id" ON "module_mixins" ("detail_id")
|
32950
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "module_platforms" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
32951
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_platforms_on_module_detail_id" ON "module_platforms" ("detail_id")
|
32952
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "module_refs" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
32953
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_refs_on_module_detail_id" ON "module_refs" ("detail_id")
|
32954
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_refs_on_name" ON "module_refs" ("name")[0m
|
32955
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "module_targets" ("id" serial primary key, "detail_id" integer, "index" integer, "name" text)
|
32956
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_targets_on_module_detail_id" ON "module_targets" ("detail_id")[0m
|
32957
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "nexpose_consoles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "enabled" boolean DEFAULT 't', "owner" text, "address" text, "port" integer DEFAULT 3780, "username" text, "password" text, "status" text, "version" text, "cert" text, "cached_sites" bytea, "name" text)
|
32958
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "notes" ("id" serial primary key, "created_at" timestamp, "ntype" character varying(512), "workspace_id" integer DEFAULT 1 NOT NULL, "service_id" integer, "host_id" integer, "updated_at" timestamp, "critical" boolean, "seen" boolean, "data" text) [0m
|
32959
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_notes_on_ntype" ON "notes" ("ntype")
|
32960
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "profiles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "active" boolean DEFAULT 't', "name" text, "owner" text, "settings" bytea) [0m
|
32961
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "refs" ("id" serial primary key, "ref_id" integer, "created_at" timestamp, "name" character varying(512), "updated_at" timestamp)
|
32962
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_refs_on_name" ON "refs" ("name")[0m
|
32963
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "report_templates" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "path" character varying(1024), "name" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32964
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "reports" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "rtype" character varying(255), "path" character varying(1024), "options" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "downloaded_at" timestamp, "task_id" integer, "name" character varying(63)) [0m
|
32965
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "routes" ("id" serial primary key, "session_id" integer, "subnet" character varying(255), "netmask" character varying(255))
|
32966
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "services" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "port" integer NOT NULL, "proto" character varying(16) NOT NULL, "state" character varying(255), "name" character varying(255), "updated_at" timestamp, "info" text) [0m
|
32967
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_services_on_name" ON "services" ("name")
|
32968
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_port" ON "services" ("port")[0m
|
32969
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_services_on_proto" ON "services" ("proto")
|
32970
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_services_on_state" ON "services" ("state")[0m
|
32971
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "session_events" ("id" serial primary key, "session_id" integer, "etype" character varying(255), "command" bytea, "output" bytea, "remote_path" character varying(255), "local_path" character varying(255), "created_at" timestamp)
|
32972
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "sessions" ("id" serial primary key, "host_id" integer, "stype" character varying(255), "via_exploit" character varying(255), "via_payload" character varying(255), "desc" character varying(255), "port" integer, "platform" character varying(255), "datastore" text, "opened_at" timestamp NOT NULL, "closed_at" timestamp, "close_reason" character varying(255), "local_id" integer, "last_seen" timestamp) [0m
|
32973
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "tags" ("id" serial primary key, "user_id" integer, "name" character varying(1024), "desc" text, "report_summary" boolean DEFAULT 'f' NOT NULL, "report_detail" boolean DEFAULT 'f' NOT NULL, "critical" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32974
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "task_creds" ("id" serial primary key, "task_id" integer NOT NULL, "cred_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32975
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "task_hosts" ("id" serial primary key, "task_id" integer NOT NULL, "host_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32976
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "task_services" ("id" serial primary key, "task_id" integer NOT NULL, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
32977
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "task_sessions" ("id" serial primary key, "task_id" integer NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
32978
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "tasks" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "module" character varying(255), "completed_at" timestamp, "path" character varying(1024), "info" character varying(255), "description" character varying(255), "progress" integer, "options" text, "error" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "result" text, "module_uuid" character varying(8), "settings" bytea) [0m
|
32979
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "users" ("id" serial primary key, "username" character varying(255), "crypted_password" character varying(255), "password_salt" character varying(255), "persistence_token" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "fullname" character varying(255), "email" character varying(255), "phone" character varying(255), "company" character varying(255), "prefs" character varying(524288), "admin" boolean DEFAULT 't' NOT NULL)
|
32980
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "vuln_attempts" ("id" serial primary key, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "fail_detail" text) [0m
|
32981
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "vuln_details" ("id" serial primary key, "vuln_id" integer, "cvss_score" float, "cvss_vector" character varying(255), "title" character varying(255), "description" text, "solution" text, "proof" bytea, "nx_console_id" integer, "nx_device_id" integer, "nx_vuln_id" character varying(255), "nx_severity" float, "nx_pci_severity" float, "nx_published" timestamp, "nx_added" timestamp, "nx_modified" timestamp, "nx_tags" text, "nx_vuln_status" text, "nx_proof_key" text, "src" character varying(255), "nx_scan_id" integer, "nx_vulnerable_since" timestamp, "nx_pci_compliance_status" character varying(255))
|
32982
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "vulns" ("id" serial primary key, "host_id" integer, "service_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "info" character varying(65536), "exploited_at" timestamp, "vuln_detail_count" integer DEFAULT 0, "vuln_attempt_count" integer DEFAULT 0) [0m
|
32983
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_vulns_on_name" ON "vulns" ("name")
|
32984
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "vulns_refs" ("id" serial primary key, "ref_id" integer, "vuln_id" integer) [0m
|
32985
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "web_forms" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "method" character varying(1024), "params" text, "query" text)
|
32986
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_forms_on_path" ON "web_forms" ("path")[0m
|
32987
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "web_pages" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "query" text, "code" integer NOT NULL, "cookie" text, "auth" text, "ctype" text, "mtime" timestamp, "location" text, "headers" text, "body" bytea, "request" bytea)
|
32988
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_pages_on_path" ON "web_pages" ("path")[0m
|
32989
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_pages_on_query" ON "web_pages" ("query")
|
32990
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "web_sites" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "vhost" character varying(2048), "comments" text, "options" text) [0m
|
32991
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_comments" ON "web_sites" ("comments")
|
32992
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_sites_on_options" ON "web_sites" ("options")[0m
|
32993
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_vhost" ON "web_sites" ("vhost")
|
32994
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "web_vulns" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text NOT NULL, "method" character varying(1024) NOT NULL, "params" text NOT NULL, "pname" text, "risk" integer NOT NULL, "name" character varying(1024) NOT NULL, "query" text, "category" text NOT NULL, "confidence" integer NOT NULL, "description" text, "blame" text, "request" bytea, "proof" bytea NOT NULL, "owner" character varying(255), "payload" text) [0m
|
32995
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_web_vulns_on_method" ON "web_vulns" ("method")
|
32996
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_vulns_on_name" ON "web_vulns" ("name")[0m
|
32997
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_web_vulns_on_path" ON "web_vulns" ("path")
|
32998
|
+
[1m[36m (3.8ms)[0m [1mCREATE TABLE "wmap_requests" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "meth" character varying(32), "path" text, "headers" text, "query" text, "body" text, "respcode" character varying(16), "resphead" text, "response" text, "created_at" timestamp, "updated_at" timestamp) [0m
|
32999
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "wmap_targets" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "selected" integer, "created_at" timestamp, "updated_at" timestamp)
|
33000
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "workspace_members" ("workspace_id" integer NOT NULL, "user_id" integer NOT NULL) [0m
|
33001
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "workspaces" ("id" serial primary key, "name" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "boundary" character varying(4096), "description" character varying(4096), "owner_id" integer, "limit_to_network" boolean DEFAULT 'f' NOT NULL)
|
33002
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
33003
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
33004
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
33005
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140703144541')
|
33006
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140331173835')[0m
|
33007
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140407212345')
|
33008
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410132401')[0m
|
33009
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410161611')
|
33010
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410191213')[0m
|
33011
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410205410')
|
33012
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140411142102')[0m
|
33013
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140411205325')
|
33014
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140414192550')[0m
|
33015
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140417140933')
|
33016
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140520140817')[0m
|
33017
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140603163708')
|
33018
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140605173747')[0m
|
33019
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140702184622')
|
33020
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
33021
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('1')
|
33022
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('2')[0m
|
33023
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('3')
|
33024
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('4')[0m
|
33025
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('5')
|
33026
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('6')[0m
|
33027
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('7')
|
33028
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('8')[0m
|
33029
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('9')
|
33030
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('10')[0m
|
33031
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('11')
|
33032
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('12')[0m
|
33033
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('13')
|
33034
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('14')[0m
|
33035
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('15')
|
33036
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('16')[0m
|
33037
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('17')
|
33038
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('18')[0m
|
33039
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('19')
|
33040
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20')[0m
|
33041
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('21')
|
33042
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('22')[0m
|
33043
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('23')
|
33044
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('24')[0m
|
33045
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('25')
|
33046
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('26')[0m
|
33047
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100819123300')
|
33048
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100824151500')[0m
|
33049
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100908001428')
|
33050
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100911122000')[0m
|
33051
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100916151530')
|
33052
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100916175000')[0m
|
33053
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100920012100')
|
33054
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100926214000')[0m
|
33055
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101001000000')
|
33056
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101002000000')[0m
|
33057
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101007000000')
|
33058
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101008111800')[0m
|
33059
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101009023300')
|
33060
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101104135100')[0m
|
33061
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101203000000')
|
33062
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101203000001')[0m
|
33063
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101206212033')
|
33064
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110112154300')[0m
|
33065
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110204112800')
|
33066
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110317144932')[0m
|
33067
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110414180600')
|
33068
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110415175705')[0m
|
33069
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110422000000')
|
33070
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110425095900')[0m
|
33071
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110513143900')
|
33072
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110517160800')[0m
|
33073
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110527000000')
|
33074
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110527000001')[0m
|
33075
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110606000001')
|
33076
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110622000000')[0m
|
33077
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110624000001')
|
33078
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110625000001')[0m
|
33079
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110630000001')
|
33080
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110630000002')[0m
|
33081
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110717000001')
|
33082
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110727163801')[0m
|
33083
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110730000001')
|
33084
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110812000001')[0m
|
33085
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110922000000')
|
33086
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110928101300')[0m
|
33087
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111011110000')
|
33088
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111203000000')[0m
|
33089
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111204000000')
|
33090
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111210000000')[0m
|
33091
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120126110000')
|
33092
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120411173220')[0m
|
33093
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120601152442')
|
33094
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000000')[0m
|
33095
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000001')
|
33096
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000002')[0m
|
33097
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000003')
|
33098
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000004')[0m
|
33099
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000005')
|
33100
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000006')[0m
|
33101
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000007')
|
33102
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000008')[0m
|
33103
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120718202805')
|
33104
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130228214900')[0m
|
33105
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412154159')
|
33106
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412171844')[0m
|
33107
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412173121')
|
33108
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412173640')[0m
|
33109
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412174254')
|
33110
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412174719')[0m
|
33111
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412175040')
|
33112
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130423211152')[0m
|
33113
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130430151353')
|
33114
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130430162145')[0m
|
33115
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130510021637')
|
33116
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130515164311')[0m
|
33117
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130515172727')
|
33118
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130516204810')[0m
|
33119
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522001343')
|
33120
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130522032517')[0m
|
33121
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522041110')
|
33122
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130525015035')[0m
|
33123
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130525212420')
|
33124
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
33125
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
33126
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|
33127
|
+
Connecting to database specified by database.yml
|
33128
|
+
[1m[36m (0.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
33129
|
+
[1m[35m (131.2ms)[0m DROP DATABASE IF EXISTS "metasploit_credential_test"
|
33130
|
+
[1m[36m (229.2ms)[0m [1mCREATE DATABASE "metasploit_credential_test" ENCODING = 'utf8'[0m
|
33131
|
+
[1m[35m (4.7ms)[0m CREATE TABLE "api_keys" ("id" serial primary key, "token" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33132
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "clients" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "ua_string" character varying(1024) NOT NULL, "ua_name" character varying(64), "ua_ver" character varying(32), "updated_at" timestamp) [0m
|
33133
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "credential_cores_tasks" ("core_id" integer, "task_id" integer)
|
33134
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "credential_logins_tasks" ("login_id" integer, "task_id" integer) [0m
|
33135
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "creds" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "user" character varying(2048), "pass" character varying(4096), "active" boolean DEFAULT 't', "proof" character varying(4096), "ptype" character varying(256), "source_id" integer, "source_type" character varying(255))
|
33136
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "events" ("id" serial primary key, "workspace_id" integer, "host_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "critical" boolean, "seen" boolean, "username" character varying(255), "info" text) [0m
|
33137
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "exploit_attempts" ("id" serial primary key, "host_id" integer, "service_id" integer, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "port" integer, "proto" character varying(255), "fail_detail" text)
|
33138
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "exploited_hosts" ("id" serial primary key, "host_id" integer NOT NULL, "service_id" integer, "session_uuid" character varying(8), "name" character varying(2048), "payload" character varying(2048), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33139
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "host_details" ("id" serial primary key, "host_id" integer, "nx_console_id" integer, "nx_device_id" integer, "src" character varying(255), "nx_site_name" character varying(255), "nx_site_importance" character varying(255), "nx_scan_template" character varying(255), "nx_risk_score" float)
|
33140
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "hosts" ("id" serial primary key, "created_at" timestamp, "address" character varying(255) NOT NULL, "mac" character varying(255), "comm" character varying(255), "name" character varying(255), "state" character varying(255), "os_name" character varying(255), "os_flavor" character varying(255), "os_sp" character varying(255), "os_lang" character varying(255), "arch" character varying(255), "workspace_id" integer NOT NULL, "updated_at" timestamp, "purpose" text, "info" character varying(65536), "comments" text, "scope" text, "virtual_host" text, "note_count" integer DEFAULT 0, "vuln_count" integer DEFAULT 0, "service_count" integer DEFAULT 0, "host_detail_count" integer DEFAULT 0, "exploit_attempt_count" integer DEFAULT 0, "cred_count" integer DEFAULT 0) [0m
|
33141
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_hosts_on_name" ON "hosts" ("name")
|
33142
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_os_flavor" ON "hosts" ("os_flavor")[0m
|
33143
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_os_name" ON "hosts" ("os_name")
|
33144
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_purpose" ON "hosts" ("purpose")[0m
|
33145
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_hosts_on_state" ON "hosts" ("state")
|
33146
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_hosts_on_workspace_id_and_address" ON "hosts" ("workspace_id", "address")[0m
|
33147
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "hosts_tags" ("id" serial primary key, "host_id" integer, "tag_id" integer)
|
33148
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "listeners" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "workspace_id" integer DEFAULT 1 NOT NULL, "task_id" integer, "enabled" boolean DEFAULT 't', "owner" text, "payload" text, "address" text, "port" integer, "options" bytea, "macro" text) [0m
|
33149
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "loots" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "host_id" integer, "service_id" integer, "ltype" character varying(512), "path" character varying(1024), "data" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "content_type" character varying(255), "name" text, "info" text)
|
33150
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "macros" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "owner" text, "name" text, "description" text, "actions" bytea, "prefs" bytea) [0m
|
33151
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "metasploit_credential_cores" ("id" serial primary key, "origin_id" integer NOT NULL, "origin_type" character varying(255) NOT NULL, "private_id" integer, "public_id" integer, "realm_id" integer, "workspace_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "logins_count" integer DEFAULT 0)
|
33152
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_origin_type_and_origin_id" ON "metasploit_credential_cores" ("origin_type", "origin_id")[0m
|
33153
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_private_id" ON "metasploit_credential_cores" ("private_id")
|
33154
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_public_id" ON "metasploit_credential_cores" ("public_id")[0m
|
33155
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_realm_id" ON "metasploit_credential_cores" ("realm_id")
|
33156
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_workspace_id" ON "metasploit_credential_cores" ("workspace_id")[0m
|
33157
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "metasploit_credential_logins" ("id" serial primary key, "core_id" integer NOT NULL, "service_id" integer NOT NULL, "access_level" character varying(255), "status" character varying(255) NOT NULL, "last_attempted_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33158
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_metasploit_credential_logins_on_core_id_and_service_id" ON "metasploit_credential_logins" ("core_id", "service_id")[0m
|
33159
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_logins_on_service_id_and_core_id" ON "metasploit_credential_logins" ("service_id", "core_id")
|
33160
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "metasploit_credential_origin_cracked_passwords" ("id" serial primary key, "metasploit_credential_core_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33161
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "originating_credential_cores" ON "metasploit_credential_origin_cracked_passwords" ("metasploit_credential_core_id")
|
33162
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "metasploit_credential_origin_imports" ("id" serial primary key, "filename" text NOT NULL, "task_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33163
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_metasploit_credential_origin_imports_on_task_id" ON "metasploit_credential_origin_imports" ("task_id")
|
33164
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "metasploit_credential_origin_manuals" ("id" serial primary key, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33165
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_metasploit_credential_origin_manuals_on_user_id" ON "metasploit_credential_origin_manuals" ("user_id")
|
33166
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "metasploit_credential_origin_services" ("id" serial primary key, "service_id" integer NOT NULL, "module_full_name" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33167
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_services" ON "metasploit_credential_origin_services" ("service_id", "module_full_name")
|
33168
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "metasploit_credential_origin_sessions" ("id" serial primary key, "post_reference_name" text NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33169
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_sessions" ON "metasploit_credential_origin_sessions" ("session_id", "post_reference_name")
|
33170
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "metasploit_credential_privates" ("id" serial primary key, "type" character varying(255) NOT NULL, "data" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "jtr_format" character varying(255)) [0m
|
33171
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_privates_on_type_and_data" ON "metasploit_credential_privates" ("type", "data")
|
33172
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "metasploit_credential_publics" ("id" serial primary key, "username" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33173
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_publics_on_username" ON "metasploit_credential_publics" ("username")
|
33174
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "metasploit_credential_realms" ("id" serial primary key, "key" character varying(255) NOT NULL, "value" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33175
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_realms_on_key_and_value" ON "metasploit_credential_realms" ("key", "value")
|
33176
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mod_refs" ("id" serial primary key, "module" character varying(1024), "mtype" character varying(128), "ref" text) [0m
|
33177
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "module_actions" ("id" serial primary key, "detail_id" integer, "name" text)
|
33178
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_actions_on_module_detail_id" ON "module_actions" ("detail_id")[0m
|
33179
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "module_archs" ("id" serial primary key, "detail_id" integer, "name" text)
|
33180
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_archs_on_module_detail_id" ON "module_archs" ("detail_id")[0m
|
33181
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "module_authors" ("id" serial primary key, "detail_id" integer, "name" text, "email" text)
|
33182
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_authors_on_module_detail_id" ON "module_authors" ("detail_id")[0m
|
33183
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "module_details" ("id" serial primary key, "mtime" timestamp, "file" text, "mtype" character varying(255), "refname" text, "fullname" text, "name" text, "rank" integer, "description" text, "license" character varying(255), "privileged" boolean, "disclosure_date" timestamp, "default_target" integer, "default_action" text, "stance" character varying(255), "ready" boolean)
|
33184
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_details_on_description" ON "module_details" ("description")[0m
|
33185
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_module_details_on_mtype" ON "module_details" ("mtype")
|
33186
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_details_on_name" ON "module_details" ("name")[0m
|
33187
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_details_on_refname" ON "module_details" ("refname")
|
33188
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "module_mixins" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33189
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_mixins_on_module_detail_id" ON "module_mixins" ("detail_id")
|
33190
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "module_platforms" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33191
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_module_platforms_on_module_detail_id" ON "module_platforms" ("detail_id")
|
33192
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "module_refs" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33193
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_refs_on_module_detail_id" ON "module_refs" ("detail_id")
|
33194
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_refs_on_name" ON "module_refs" ("name")[0m
|
33195
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "module_targets" ("id" serial primary key, "detail_id" integer, "index" integer, "name" text)
|
33196
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_targets_on_module_detail_id" ON "module_targets" ("detail_id")[0m
|
33197
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "nexpose_consoles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "enabled" boolean DEFAULT 't', "owner" text, "address" text, "port" integer DEFAULT 3780, "username" text, "password" text, "status" text, "version" text, "cert" text, "cached_sites" bytea, "name" text)
|
33198
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "notes" ("id" serial primary key, "created_at" timestamp, "ntype" character varying(512), "workspace_id" integer DEFAULT 1 NOT NULL, "service_id" integer, "host_id" integer, "updated_at" timestamp, "critical" boolean, "seen" boolean, "data" text) [0m
|
33199
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_notes_on_ntype" ON "notes" ("ntype")
|
33200
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "profiles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "active" boolean DEFAULT 't', "name" text, "owner" text, "settings" bytea) [0m
|
33201
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "refs" ("id" serial primary key, "ref_id" integer, "created_at" timestamp, "name" character varying(512), "updated_at" timestamp)
|
33202
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_refs_on_name" ON "refs" ("name")[0m
|
33203
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "report_templates" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "path" character varying(1024), "name" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33204
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "reports" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "rtype" character varying(255), "path" character varying(1024), "options" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "downloaded_at" timestamp, "task_id" integer, "name" character varying(63)) [0m
|
33205
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "routes" ("id" serial primary key, "session_id" integer, "subnet" character varying(255), "netmask" character varying(255))
|
33206
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "services" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "port" integer NOT NULL, "proto" character varying(16) NOT NULL, "state" character varying(255), "name" character varying(255), "updated_at" timestamp, "info" text) [0m
|
33207
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_services_on_name" ON "services" ("name")
|
33208
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_port" ON "services" ("port")[0m
|
33209
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_services_on_proto" ON "services" ("proto")
|
33210
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_state" ON "services" ("state")[0m
|
33211
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "session_events" ("id" serial primary key, "session_id" integer, "etype" character varying(255), "command" bytea, "output" bytea, "remote_path" character varying(255), "local_path" character varying(255), "created_at" timestamp)
|
33212
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "sessions" ("id" serial primary key, "host_id" integer, "stype" character varying(255), "via_exploit" character varying(255), "via_payload" character varying(255), "desc" character varying(255), "port" integer, "platform" character varying(255), "datastore" text, "opened_at" timestamp NOT NULL, "closed_at" timestamp, "close_reason" character varying(255), "local_id" integer, "last_seen" timestamp) [0m
|
33213
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "tags" ("id" serial primary key, "user_id" integer, "name" character varying(1024), "desc" text, "report_summary" boolean DEFAULT 'f' NOT NULL, "report_detail" boolean DEFAULT 'f' NOT NULL, "critical" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33214
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "task_creds" ("id" serial primary key, "task_id" integer NOT NULL, "cred_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33215
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "task_hosts" ("id" serial primary key, "task_id" integer NOT NULL, "host_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33216
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "task_services" ("id" serial primary key, "task_id" integer NOT NULL, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33217
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "task_sessions" ("id" serial primary key, "task_id" integer NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33218
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "tasks" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "module" character varying(255), "completed_at" timestamp, "path" character varying(1024), "info" character varying(255), "description" character varying(255), "progress" integer, "options" text, "error" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "result" text, "module_uuid" character varying(8), "settings" bytea) [0m
|
33219
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "users" ("id" serial primary key, "username" character varying(255), "crypted_password" character varying(255), "password_salt" character varying(255), "persistence_token" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "fullname" character varying(255), "email" character varying(255), "phone" character varying(255), "company" character varying(255), "prefs" character varying(524288), "admin" boolean DEFAULT 't' NOT NULL)
|
33220
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "vuln_attempts" ("id" serial primary key, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "fail_detail" text) [0m
|
33221
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "vuln_details" ("id" serial primary key, "vuln_id" integer, "cvss_score" float, "cvss_vector" character varying(255), "title" character varying(255), "description" text, "solution" text, "proof" bytea, "nx_console_id" integer, "nx_device_id" integer, "nx_vuln_id" character varying(255), "nx_severity" float, "nx_pci_severity" float, "nx_published" timestamp, "nx_added" timestamp, "nx_modified" timestamp, "nx_tags" text, "nx_vuln_status" text, "nx_proof_key" text, "src" character varying(255), "nx_scan_id" integer, "nx_vulnerable_since" timestamp, "nx_pci_compliance_status" character varying(255))
|
33222
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "vulns" ("id" serial primary key, "host_id" integer, "service_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "info" character varying(65536), "exploited_at" timestamp, "vuln_detail_count" integer DEFAULT 0, "vuln_attempt_count" integer DEFAULT 0) [0m
|
33223
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_vulns_on_name" ON "vulns" ("name")
|
33224
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "vulns_refs" ("id" serial primary key, "ref_id" integer, "vuln_id" integer) [0m
|
33225
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "web_forms" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "method" character varying(1024), "params" text, "query" text)
|
33226
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_forms_on_path" ON "web_forms" ("path")[0m
|
33227
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "web_pages" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "query" text, "code" integer NOT NULL, "cookie" text, "auth" text, "ctype" text, "mtime" timestamp, "location" text, "headers" text, "body" bytea, "request" bytea)
|
33228
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_web_pages_on_path" ON "web_pages" ("path")[0m
|
33229
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_pages_on_query" ON "web_pages" ("query")
|
33230
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "web_sites" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "vhost" character varying(2048), "comments" text, "options" text) [0m
|
33231
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_comments" ON "web_sites" ("comments")
|
33232
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_web_sites_on_options" ON "web_sites" ("options")[0m
|
33233
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_web_sites_on_vhost" ON "web_sites" ("vhost")
|
33234
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "web_vulns" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text NOT NULL, "method" character varying(1024) NOT NULL, "params" text NOT NULL, "pname" text, "risk" integer NOT NULL, "name" character varying(1024) NOT NULL, "query" text, "category" text NOT NULL, "confidence" integer NOT NULL, "description" text, "blame" text, "request" bytea, "proof" bytea NOT NULL, "owner" character varying(255), "payload" text) [0m
|
33235
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_vulns_on_method" ON "web_vulns" ("method")
|
33236
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_vulns_on_name" ON "web_vulns" ("name")[0m
|
33237
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_vulns_on_path" ON "web_vulns" ("path")
|
33238
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "wmap_requests" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "meth" character varying(32), "path" text, "headers" text, "query" text, "body" text, "respcode" character varying(16), "resphead" text, "response" text, "created_at" timestamp, "updated_at" timestamp) [0m
|
33239
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "wmap_targets" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "selected" integer, "created_at" timestamp, "updated_at" timestamp)
|
33240
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "workspace_members" ("workspace_id" integer NOT NULL, "user_id" integer NOT NULL) [0m
|
33241
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "workspaces" ("id" serial primary key, "name" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "boundary" character varying(4096), "description" character varying(4096), "owner_id" integer, "limit_to_network" boolean DEFAULT 'f' NOT NULL)
|
33242
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
33243
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
33244
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
33245
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140703144541')
|
33246
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140331173835')[0m
|
33247
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140407212345')
|
33248
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410132401')[0m
|
33249
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410161611')
|
33250
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410191213')[0m
|
33251
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410205410')
|
33252
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140411142102')[0m
|
33253
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140411205325')
|
33254
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140414192550')[0m
|
33255
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140417140933')
|
33256
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140520140817')[0m
|
33257
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140603163708')
|
33258
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140605173747')[0m
|
33259
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140702184622')
|
33260
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
33261
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('1')
|
33262
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('2')[0m
|
33263
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('3')
|
33264
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('4')[0m
|
33265
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('5')
|
33266
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('6')[0m
|
33267
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('7')
|
33268
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('8')[0m
|
33269
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('9')
|
33270
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('10')[0m
|
33271
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('11')
|
33272
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('12')[0m
|
33273
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('13')
|
33274
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('14')[0m
|
33275
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('15')
|
33276
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('16')[0m
|
33277
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('17')
|
33278
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('18')[0m
|
33279
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('19')
|
33280
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20')[0m
|
33281
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('21')
|
33282
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('22')[0m
|
33283
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('23')
|
33284
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('24')[0m
|
33285
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('25')
|
33286
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('26')[0m
|
33287
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100819123300')
|
33288
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100824151500')[0m
|
33289
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100908001428')
|
33290
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100911122000')[0m
|
33291
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100916151530')
|
33292
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100916175000')[0m
|
33293
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100920012100')
|
33294
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100926214000')[0m
|
33295
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101001000000')
|
33296
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101002000000')[0m
|
33297
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101007000000')
|
33298
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101008111800')[0m
|
33299
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101009023300')
|
33300
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101104135100')[0m
|
33301
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101203000000')
|
33302
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101203000001')[0m
|
33303
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101206212033')
|
33304
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110112154300')[0m
|
33305
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110204112800')
|
33306
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110317144932')[0m
|
33307
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110414180600')
|
33308
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110415175705')[0m
|
33309
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110422000000')
|
33310
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110425095900')[0m
|
33311
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110513143900')
|
33312
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110517160800')[0m
|
33313
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110527000000')
|
33314
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110527000001')[0m
|
33315
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110606000001')
|
33316
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110622000000')[0m
|
33317
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110624000001')
|
33318
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110625000001')[0m
|
33319
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110630000001')
|
33320
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110630000002')[0m
|
33321
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110717000001')
|
33322
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110727163801')[0m
|
33323
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110730000001')
|
33324
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110812000001')[0m
|
33325
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110922000000')
|
33326
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110928101300')[0m
|
33327
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111011110000')
|
33328
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111203000000')[0m
|
33329
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111204000000')
|
33330
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111210000000')[0m
|
33331
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120126110000')
|
33332
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120411173220')[0m
|
33333
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120601152442')
|
33334
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000000')[0m
|
33335
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000001')
|
33336
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000002')[0m
|
33337
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000003')
|
33338
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000004')[0m
|
33339
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000005')
|
33340
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000006')[0m
|
33341
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000007')
|
33342
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000008')[0m
|
33343
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120718202805')
|
33344
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130228214900')[0m
|
33345
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412154159')
|
33346
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412171844')[0m
|
33347
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412173121')
|
33348
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412173640')[0m
|
33349
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412174254')
|
33350
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412174719')[0m
|
33351
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412175040')
|
33352
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130423211152')[0m
|
33353
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130430151353')
|
33354
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130430162145')[0m
|
33355
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130510021637')
|
33356
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130515164311')[0m
|
33357
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130515172727')
|
33358
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130516204810')[0m
|
33359
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522001343')
|
33360
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130522032517')[0m
|
33361
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522041110')
|
33362
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130525015035')[0m
|
33363
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130525212420')
|
33364
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
33365
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
33366
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|
33367
|
+
Connecting to database specified by database.yml
|
33368
|
+
[1m[36m (0.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
33369
|
+
[1m[35m (130.9ms)[0m DROP DATABASE IF EXISTS "metasploit_credential_test"
|
33370
|
+
[1m[36m (229.6ms)[0m [1mCREATE DATABASE "metasploit_credential_test" ENCODING = 'utf8'[0m
|
33371
|
+
[1m[35m (4.6ms)[0m CREATE TABLE "api_keys" ("id" serial primary key, "token" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33372
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "clients" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "ua_string" character varying(1024) NOT NULL, "ua_name" character varying(64), "ua_ver" character varying(32), "updated_at" timestamp) [0m
|
33373
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "credential_cores_tasks" ("core_id" integer, "task_id" integer)
|
33374
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "credential_logins_tasks" ("login_id" integer, "task_id" integer) [0m
|
33375
|
+
[1m[35m (3.0ms)[0m CREATE TABLE "creds" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "user" character varying(2048), "pass" character varying(4096), "active" boolean DEFAULT 't', "proof" character varying(4096), "ptype" character varying(256), "source_id" integer, "source_type" character varying(255))
|
33376
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "events" ("id" serial primary key, "workspace_id" integer, "host_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "critical" boolean, "seen" boolean, "username" character varying(255), "info" text) [0m
|
33377
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "exploit_attempts" ("id" serial primary key, "host_id" integer, "service_id" integer, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "port" integer, "proto" character varying(255), "fail_detail" text)
|
33378
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "exploited_hosts" ("id" serial primary key, "host_id" integer NOT NULL, "service_id" integer, "session_uuid" character varying(8), "name" character varying(2048), "payload" character varying(2048), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33379
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "host_details" ("id" serial primary key, "host_id" integer, "nx_console_id" integer, "nx_device_id" integer, "src" character varying(255), "nx_site_name" character varying(255), "nx_site_importance" character varying(255), "nx_scan_template" character varying(255), "nx_risk_score" float)
|
33380
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "hosts" ("id" serial primary key, "created_at" timestamp, "address" character varying(255) NOT NULL, "mac" character varying(255), "comm" character varying(255), "name" character varying(255), "state" character varying(255), "os_name" character varying(255), "os_flavor" character varying(255), "os_sp" character varying(255), "os_lang" character varying(255), "arch" character varying(255), "workspace_id" integer NOT NULL, "updated_at" timestamp, "purpose" text, "info" character varying(65536), "comments" text, "scope" text, "virtual_host" text, "note_count" integer DEFAULT 0, "vuln_count" integer DEFAULT 0, "service_count" integer DEFAULT 0, "host_detail_count" integer DEFAULT 0, "exploit_attempt_count" integer DEFAULT 0, "cred_count" integer DEFAULT 0) [0m
|
33381
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_hosts_on_name" ON "hosts" ("name")
|
33382
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_os_flavor" ON "hosts" ("os_flavor")[0m
|
33383
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_hosts_on_os_name" ON "hosts" ("os_name")
|
33384
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_purpose" ON "hosts" ("purpose")[0m
|
33385
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_state" ON "hosts" ("state")
|
33386
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_hosts_on_workspace_id_and_address" ON "hosts" ("workspace_id", "address")[0m
|
33387
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "hosts_tags" ("id" serial primary key, "host_id" integer, "tag_id" integer)
|
33388
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "listeners" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "workspace_id" integer DEFAULT 1 NOT NULL, "task_id" integer, "enabled" boolean DEFAULT 't', "owner" text, "payload" text, "address" text, "port" integer, "options" bytea, "macro" text) [0m
|
33389
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "loots" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "host_id" integer, "service_id" integer, "ltype" character varying(512), "path" character varying(1024), "data" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "content_type" character varying(255), "name" text, "info" text)
|
33390
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "macros" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "owner" text, "name" text, "description" text, "actions" bytea, "prefs" bytea) [0m
|
33391
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "metasploit_credential_cores" ("id" serial primary key, "origin_id" integer NOT NULL, "origin_type" character varying(255) NOT NULL, "private_id" integer, "public_id" integer, "realm_id" integer, "workspace_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "logins_count" integer DEFAULT 0)
|
33392
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_origin_type_and_origin_id" ON "metasploit_credential_cores" ("origin_type", "origin_id")[0m
|
33393
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_private_id" ON "metasploit_credential_cores" ("private_id")
|
33394
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_public_id" ON "metasploit_credential_cores" ("public_id")[0m
|
33395
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_realm_id" ON "metasploit_credential_cores" ("realm_id")
|
33396
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_workspace_id" ON "metasploit_credential_cores" ("workspace_id")[0m
|
33397
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "metasploit_credential_logins" ("id" serial primary key, "core_id" integer NOT NULL, "service_id" integer NOT NULL, "access_level" character varying(255), "status" character varying(255) NOT NULL, "last_attempted_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33398
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_metasploit_credential_logins_on_core_id_and_service_id" ON "metasploit_credential_logins" ("core_id", "service_id")[0m
|
33399
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_logins_on_service_id_and_core_id" ON "metasploit_credential_logins" ("service_id", "core_id")
|
33400
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "metasploit_credential_origin_cracked_passwords" ("id" serial primary key, "metasploit_credential_core_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33401
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "originating_credential_cores" ON "metasploit_credential_origin_cracked_passwords" ("metasploit_credential_core_id")
|
33402
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "metasploit_credential_origin_imports" ("id" serial primary key, "filename" text NOT NULL, "task_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33403
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_origin_imports_on_task_id" ON "metasploit_credential_origin_imports" ("task_id")
|
33404
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "metasploit_credential_origin_manuals" ("id" serial primary key, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33405
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_origin_manuals_on_user_id" ON "metasploit_credential_origin_manuals" ("user_id")
|
33406
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "metasploit_credential_origin_services" ("id" serial primary key, "service_id" integer NOT NULL, "module_full_name" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33407
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_services" ON "metasploit_credential_origin_services" ("service_id", "module_full_name")
|
33408
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "metasploit_credential_origin_sessions" ("id" serial primary key, "post_reference_name" text NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33409
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_sessions" ON "metasploit_credential_origin_sessions" ("session_id", "post_reference_name")
|
33410
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "metasploit_credential_privates" ("id" serial primary key, "type" character varying(255) NOT NULL, "data" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "jtr_format" character varying(255)) [0m
|
33411
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_privates_on_type_and_data" ON "metasploit_credential_privates" ("type", "data")
|
33412
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "metasploit_credential_publics" ("id" serial primary key, "username" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33413
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_publics_on_username" ON "metasploit_credential_publics" ("username")
|
33414
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "metasploit_credential_realms" ("id" serial primary key, "key" character varying(255) NOT NULL, "value" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33415
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_realms_on_key_and_value" ON "metasploit_credential_realms" ("key", "value")
|
33416
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "mod_refs" ("id" serial primary key, "module" character varying(1024), "mtype" character varying(128), "ref" text) [0m
|
33417
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "module_actions" ("id" serial primary key, "detail_id" integer, "name" text)
|
33418
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_actions_on_module_detail_id" ON "module_actions" ("detail_id")[0m
|
33419
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "module_archs" ("id" serial primary key, "detail_id" integer, "name" text)
|
33420
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_archs_on_module_detail_id" ON "module_archs" ("detail_id")[0m
|
33421
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "module_authors" ("id" serial primary key, "detail_id" integer, "name" text, "email" text)
|
33422
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_authors_on_module_detail_id" ON "module_authors" ("detail_id")[0m
|
33423
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "module_details" ("id" serial primary key, "mtime" timestamp, "file" text, "mtype" character varying(255), "refname" text, "fullname" text, "name" text, "rank" integer, "description" text, "license" character varying(255), "privileged" boolean, "disclosure_date" timestamp, "default_target" integer, "default_action" text, "stance" character varying(255), "ready" boolean)
|
33424
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_details_on_description" ON "module_details" ("description")[0m
|
33425
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_module_details_on_mtype" ON "module_details" ("mtype")
|
33426
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_details_on_name" ON "module_details" ("name")[0m
|
33427
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_details_on_refname" ON "module_details" ("refname")
|
33428
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "module_mixins" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33429
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_mixins_on_module_detail_id" ON "module_mixins" ("detail_id")
|
33430
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "module_platforms" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33431
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_module_platforms_on_module_detail_id" ON "module_platforms" ("detail_id")
|
33432
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "module_refs" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33433
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_refs_on_module_detail_id" ON "module_refs" ("detail_id")
|
33434
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_refs_on_name" ON "module_refs" ("name")[0m
|
33435
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "module_targets" ("id" serial primary key, "detail_id" integer, "index" integer, "name" text)
|
33436
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_targets_on_module_detail_id" ON "module_targets" ("detail_id")[0m
|
33437
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "nexpose_consoles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "enabled" boolean DEFAULT 't', "owner" text, "address" text, "port" integer DEFAULT 3780, "username" text, "password" text, "status" text, "version" text, "cert" text, "cached_sites" bytea, "name" text)
|
33438
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "notes" ("id" serial primary key, "created_at" timestamp, "ntype" character varying(512), "workspace_id" integer DEFAULT 1 NOT NULL, "service_id" integer, "host_id" integer, "updated_at" timestamp, "critical" boolean, "seen" boolean, "data" text) [0m
|
33439
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_notes_on_ntype" ON "notes" ("ntype")
|
33440
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "profiles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "active" boolean DEFAULT 't', "name" text, "owner" text, "settings" bytea) [0m
|
33441
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "refs" ("id" serial primary key, "ref_id" integer, "created_at" timestamp, "name" character varying(512), "updated_at" timestamp)
|
33442
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_refs_on_name" ON "refs" ("name")[0m
|
33443
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "report_templates" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "path" character varying(1024), "name" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33444
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "reports" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "rtype" character varying(255), "path" character varying(1024), "options" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "downloaded_at" timestamp, "task_id" integer, "name" character varying(63)) [0m
|
33445
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "routes" ("id" serial primary key, "session_id" integer, "subnet" character varying(255), "netmask" character varying(255))
|
33446
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "services" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "port" integer NOT NULL, "proto" character varying(16) NOT NULL, "state" character varying(255), "name" character varying(255), "updated_at" timestamp, "info" text) [0m
|
33447
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_services_on_name" ON "services" ("name")
|
33448
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_port" ON "services" ("port")[0m
|
33449
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_services_on_proto" ON "services" ("proto")
|
33450
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_services_on_state" ON "services" ("state")[0m
|
33451
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "session_events" ("id" serial primary key, "session_id" integer, "etype" character varying(255), "command" bytea, "output" bytea, "remote_path" character varying(255), "local_path" character varying(255), "created_at" timestamp)
|
33452
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "sessions" ("id" serial primary key, "host_id" integer, "stype" character varying(255), "via_exploit" character varying(255), "via_payload" character varying(255), "desc" character varying(255), "port" integer, "platform" character varying(255), "datastore" text, "opened_at" timestamp NOT NULL, "closed_at" timestamp, "close_reason" character varying(255), "local_id" integer, "last_seen" timestamp) [0m
|
33453
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "tags" ("id" serial primary key, "user_id" integer, "name" character varying(1024), "desc" text, "report_summary" boolean DEFAULT 'f' NOT NULL, "report_detail" boolean DEFAULT 'f' NOT NULL, "critical" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33454
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "task_creds" ("id" serial primary key, "task_id" integer NOT NULL, "cred_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33455
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "task_hosts" ("id" serial primary key, "task_id" integer NOT NULL, "host_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33456
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "task_services" ("id" serial primary key, "task_id" integer NOT NULL, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33457
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "task_sessions" ("id" serial primary key, "task_id" integer NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33458
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "tasks" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "module" character varying(255), "completed_at" timestamp, "path" character varying(1024), "info" character varying(255), "description" character varying(255), "progress" integer, "options" text, "error" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "result" text, "module_uuid" character varying(8), "settings" bytea) [0m
|
33459
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "users" ("id" serial primary key, "username" character varying(255), "crypted_password" character varying(255), "password_salt" character varying(255), "persistence_token" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "fullname" character varying(255), "email" character varying(255), "phone" character varying(255), "company" character varying(255), "prefs" character varying(524288), "admin" boolean DEFAULT 't' NOT NULL)
|
33460
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "vuln_attempts" ("id" serial primary key, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "fail_detail" text) [0m
|
33461
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "vuln_details" ("id" serial primary key, "vuln_id" integer, "cvss_score" float, "cvss_vector" character varying(255), "title" character varying(255), "description" text, "solution" text, "proof" bytea, "nx_console_id" integer, "nx_device_id" integer, "nx_vuln_id" character varying(255), "nx_severity" float, "nx_pci_severity" float, "nx_published" timestamp, "nx_added" timestamp, "nx_modified" timestamp, "nx_tags" text, "nx_vuln_status" text, "nx_proof_key" text, "src" character varying(255), "nx_scan_id" integer, "nx_vulnerable_since" timestamp, "nx_pci_compliance_status" character varying(255))
|
33462
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "vulns" ("id" serial primary key, "host_id" integer, "service_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "info" character varying(65536), "exploited_at" timestamp, "vuln_detail_count" integer DEFAULT 0, "vuln_attempt_count" integer DEFAULT 0) [0m
|
33463
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_vulns_on_name" ON "vulns" ("name")
|
33464
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "vulns_refs" ("id" serial primary key, "ref_id" integer, "vuln_id" integer) [0m
|
33465
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "web_forms" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "method" character varying(1024), "params" text, "query" text)
|
33466
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_web_forms_on_path" ON "web_forms" ("path")[0m
|
33467
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "web_pages" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "query" text, "code" integer NOT NULL, "cookie" text, "auth" text, "ctype" text, "mtime" timestamp, "location" text, "headers" text, "body" bytea, "request" bytea)
|
33468
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_pages_on_path" ON "web_pages" ("path")[0m
|
33469
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_pages_on_query" ON "web_pages" ("query")
|
33470
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "web_sites" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "vhost" character varying(2048), "comments" text, "options" text) [0m
|
33471
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_comments" ON "web_sites" ("comments")
|
33472
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_sites_on_options" ON "web_sites" ("options")[0m
|
33473
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_vhost" ON "web_sites" ("vhost")
|
33474
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "web_vulns" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text NOT NULL, "method" character varying(1024) NOT NULL, "params" text NOT NULL, "pname" text, "risk" integer NOT NULL, "name" character varying(1024) NOT NULL, "query" text, "category" text NOT NULL, "confidence" integer NOT NULL, "description" text, "blame" text, "request" bytea, "proof" bytea NOT NULL, "owner" character varying(255), "payload" text) [0m
|
33475
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_vulns_on_method" ON "web_vulns" ("method")
|
33476
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_vulns_on_name" ON "web_vulns" ("name")[0m
|
33477
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_vulns_on_path" ON "web_vulns" ("path")
|
33478
|
+
[1m[36m (3.4ms)[0m [1mCREATE TABLE "wmap_requests" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "meth" character varying(32), "path" text, "headers" text, "query" text, "body" text, "respcode" character varying(16), "resphead" text, "response" text, "created_at" timestamp, "updated_at" timestamp) [0m
|
33479
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "wmap_targets" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "selected" integer, "created_at" timestamp, "updated_at" timestamp)
|
33480
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "workspace_members" ("workspace_id" integer NOT NULL, "user_id" integer NOT NULL) [0m
|
33481
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "workspaces" ("id" serial primary key, "name" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "boundary" character varying(4096), "description" character varying(4096), "owner_id" integer, "limit_to_network" boolean DEFAULT 'f' NOT NULL)
|
33482
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
33483
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
33484
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
33485
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140703144541')
|
33486
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140331173835')[0m
|
33487
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140407212345')
|
33488
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410132401')[0m
|
33489
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410161611')
|
33490
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410191213')[0m
|
33491
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410205410')
|
33492
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140411142102')[0m
|
33493
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140411205325')
|
33494
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140414192550')[0m
|
33495
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140417140933')
|
33496
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140520140817')[0m
|
33497
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140603163708')
|
33498
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140605173747')[0m
|
33499
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140702184622')
|
33500
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
33501
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('1')
|
33502
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('2')[0m
|
33503
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('3')
|
33504
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('4')[0m
|
33505
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('5')
|
33506
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('6')[0m
|
33507
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('7')
|
33508
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('8')[0m
|
33509
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('9')
|
33510
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('10')[0m
|
33511
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('11')
|
33512
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('12')[0m
|
33513
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('13')
|
33514
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('14')[0m
|
33515
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('15')
|
33516
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('16')[0m
|
33517
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('17')
|
33518
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('18')[0m
|
33519
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('19')
|
33520
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20')[0m
|
33521
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('21')
|
33522
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('22')[0m
|
33523
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('23')
|
33524
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('24')[0m
|
33525
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('25')
|
33526
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('26')[0m
|
33527
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100819123300')
|
33528
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100824151500')[0m
|
33529
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100908001428')
|
33530
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100911122000')[0m
|
33531
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100916151530')
|
33532
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100916175000')[0m
|
33533
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100920012100')
|
33534
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100926214000')[0m
|
33535
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101001000000')
|
33536
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101002000000')[0m
|
33537
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101007000000')
|
33538
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101008111800')[0m
|
33539
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101009023300')
|
33540
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101104135100')[0m
|
33541
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101203000000')
|
33542
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101203000001')[0m
|
33543
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101206212033')
|
33544
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110112154300')[0m
|
33545
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110204112800')
|
33546
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110317144932')[0m
|
33547
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110414180600')
|
33548
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110415175705')[0m
|
33549
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110422000000')
|
33550
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110425095900')[0m
|
33551
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110513143900')
|
33552
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110517160800')[0m
|
33553
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110527000000')
|
33554
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110527000001')[0m
|
33555
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110606000001')
|
33556
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110622000000')[0m
|
33557
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110624000001')
|
33558
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110625000001')[0m
|
33559
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110630000001')
|
33560
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110630000002')[0m
|
33561
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110717000001')
|
33562
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110727163801')[0m
|
33563
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110730000001')
|
33564
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110812000001')[0m
|
33565
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110922000000')
|
33566
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110928101300')[0m
|
33567
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111011110000')
|
33568
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111203000000')[0m
|
33569
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111204000000')
|
33570
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111210000000')[0m
|
33571
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120126110000')
|
33572
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120411173220')[0m
|
33573
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120601152442')
|
33574
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000000')[0m
|
33575
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000001')
|
33576
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000002')[0m
|
33577
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000003')
|
33578
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000004')[0m
|
33579
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000005')
|
33580
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000006')[0m
|
33581
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000007')
|
33582
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000008')[0m
|
33583
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120718202805')
|
33584
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130228214900')[0m
|
33585
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412154159')
|
33586
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412171844')[0m
|
33587
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412173121')
|
33588
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412173640')[0m
|
33589
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412174254')
|
33590
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412174719')[0m
|
33591
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412175040')
|
33592
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130423211152')[0m
|
33593
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130430151353')
|
33594
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130430162145')[0m
|
33595
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130510021637')
|
33596
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130515164311')[0m
|
33597
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130515172727')
|
33598
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130516204810')[0m
|
33599
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522001343')
|
33600
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130522032517')[0m
|
33601
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522041110')
|
33602
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130525015035')[0m
|
33603
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130525212420')
|
33604
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
33605
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
33606
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|
33607
|
+
Connecting to database specified by database.yml
|
33608
|
+
[1m[36m (0.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
33609
|
+
[1m[35m (130.4ms)[0m DROP DATABASE IF EXISTS "metasploit_credential_test"
|
33610
|
+
[1m[36m (229.0ms)[0m [1mCREATE DATABASE "metasploit_credential_test" ENCODING = 'utf8'[0m
|
33611
|
+
[1m[35m (4.8ms)[0m CREATE TABLE "api_keys" ("id" serial primary key, "token" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33612
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "clients" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "ua_string" character varying(1024) NOT NULL, "ua_name" character varying(64), "ua_ver" character varying(32), "updated_at" timestamp) [0m
|
33613
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "credential_cores_tasks" ("core_id" integer, "task_id" integer)
|
33614
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "credential_logins_tasks" ("login_id" integer, "task_id" integer) [0m
|
33615
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "creds" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "user" character varying(2048), "pass" character varying(4096), "active" boolean DEFAULT 't', "proof" character varying(4096), "ptype" character varying(256), "source_id" integer, "source_type" character varying(255))
|
33616
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "events" ("id" serial primary key, "workspace_id" integer, "host_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "critical" boolean, "seen" boolean, "username" character varying(255), "info" text) [0m
|
33617
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "exploit_attempts" ("id" serial primary key, "host_id" integer, "service_id" integer, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "port" integer, "proto" character varying(255), "fail_detail" text)
|
33618
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "exploited_hosts" ("id" serial primary key, "host_id" integer NOT NULL, "service_id" integer, "session_uuid" character varying(8), "name" character varying(2048), "payload" character varying(2048), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33619
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "host_details" ("id" serial primary key, "host_id" integer, "nx_console_id" integer, "nx_device_id" integer, "src" character varying(255), "nx_site_name" character varying(255), "nx_site_importance" character varying(255), "nx_scan_template" character varying(255), "nx_risk_score" float)
|
33620
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "hosts" ("id" serial primary key, "created_at" timestamp, "address" character varying(255) NOT NULL, "mac" character varying(255), "comm" character varying(255), "name" character varying(255), "state" character varying(255), "os_name" character varying(255), "os_flavor" character varying(255), "os_sp" character varying(255), "os_lang" character varying(255), "arch" character varying(255), "workspace_id" integer NOT NULL, "updated_at" timestamp, "purpose" text, "info" character varying(65536), "comments" text, "scope" text, "virtual_host" text, "note_count" integer DEFAULT 0, "vuln_count" integer DEFAULT 0, "service_count" integer DEFAULT 0, "host_detail_count" integer DEFAULT 0, "exploit_attempt_count" integer DEFAULT 0, "cred_count" integer DEFAULT 0) [0m
|
33621
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_hosts_on_name" ON "hosts" ("name")
|
33622
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_os_flavor" ON "hosts" ("os_flavor")[0m
|
33623
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_os_name" ON "hosts" ("os_name")
|
33624
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_purpose" ON "hosts" ("purpose")[0m
|
33625
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_state" ON "hosts" ("state")
|
33626
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_hosts_on_workspace_id_and_address" ON "hosts" ("workspace_id", "address")[0m
|
33627
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "hosts_tags" ("id" serial primary key, "host_id" integer, "tag_id" integer)
|
33628
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "listeners" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "workspace_id" integer DEFAULT 1 NOT NULL, "task_id" integer, "enabled" boolean DEFAULT 't', "owner" text, "payload" text, "address" text, "port" integer, "options" bytea, "macro" text) [0m
|
33629
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "loots" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "host_id" integer, "service_id" integer, "ltype" character varying(512), "path" character varying(1024), "data" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "content_type" character varying(255), "name" text, "info" text)
|
33630
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "macros" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "owner" text, "name" text, "description" text, "actions" bytea, "prefs" bytea) [0m
|
33631
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "metasploit_credential_cores" ("id" serial primary key, "origin_id" integer NOT NULL, "origin_type" character varying(255) NOT NULL, "private_id" integer, "public_id" integer, "realm_id" integer, "workspace_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "logins_count" integer DEFAULT 0)
|
33632
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_origin_type_and_origin_id" ON "metasploit_credential_cores" ("origin_type", "origin_id")[0m
|
33633
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_private_id" ON "metasploit_credential_cores" ("private_id")
|
33634
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_public_id" ON "metasploit_credential_cores" ("public_id")[0m
|
33635
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_realm_id" ON "metasploit_credential_cores" ("realm_id")
|
33636
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_workspace_id" ON "metasploit_credential_cores" ("workspace_id")[0m
|
33637
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "metasploit_credential_logins" ("id" serial primary key, "core_id" integer NOT NULL, "service_id" integer NOT NULL, "access_level" character varying(255), "status" character varying(255) NOT NULL, "last_attempted_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33638
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_metasploit_credential_logins_on_core_id_and_service_id" ON "metasploit_credential_logins" ("core_id", "service_id")[0m
|
33639
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_logins_on_service_id_and_core_id" ON "metasploit_credential_logins" ("service_id", "core_id")
|
33640
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "metasploit_credential_origin_cracked_passwords" ("id" serial primary key, "metasploit_credential_core_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33641
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "originating_credential_cores" ON "metasploit_credential_origin_cracked_passwords" ("metasploit_credential_core_id")
|
33642
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "metasploit_credential_origin_imports" ("id" serial primary key, "filename" text NOT NULL, "task_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33643
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_metasploit_credential_origin_imports_on_task_id" ON "metasploit_credential_origin_imports" ("task_id")
|
33644
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "metasploit_credential_origin_manuals" ("id" serial primary key, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33645
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_origin_manuals_on_user_id" ON "metasploit_credential_origin_manuals" ("user_id")
|
33646
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "metasploit_credential_origin_services" ("id" serial primary key, "service_id" integer NOT NULL, "module_full_name" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33647
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_services" ON "metasploit_credential_origin_services" ("service_id", "module_full_name")
|
33648
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "metasploit_credential_origin_sessions" ("id" serial primary key, "post_reference_name" text NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33649
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_sessions" ON "metasploit_credential_origin_sessions" ("session_id", "post_reference_name")
|
33650
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "metasploit_credential_privates" ("id" serial primary key, "type" character varying(255) NOT NULL, "data" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "jtr_format" character varying(255)) [0m
|
33651
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_privates_on_type_and_data" ON "metasploit_credential_privates" ("type", "data")
|
33652
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "metasploit_credential_publics" ("id" serial primary key, "username" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33653
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_publics_on_username" ON "metasploit_credential_publics" ("username")
|
33654
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "metasploit_credential_realms" ("id" serial primary key, "key" character varying(255) NOT NULL, "value" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33655
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_realms_on_key_and_value" ON "metasploit_credential_realms" ("key", "value")
|
33656
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mod_refs" ("id" serial primary key, "module" character varying(1024), "mtype" character varying(128), "ref" text) [0m
|
33657
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "module_actions" ("id" serial primary key, "detail_id" integer, "name" text)
|
33658
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_actions_on_module_detail_id" ON "module_actions" ("detail_id")[0m
|
33659
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "module_archs" ("id" serial primary key, "detail_id" integer, "name" text)
|
33660
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_archs_on_module_detail_id" ON "module_archs" ("detail_id")[0m
|
33661
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "module_authors" ("id" serial primary key, "detail_id" integer, "name" text, "email" text)
|
33662
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_authors_on_module_detail_id" ON "module_authors" ("detail_id")[0m
|
33663
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "module_details" ("id" serial primary key, "mtime" timestamp, "file" text, "mtype" character varying(255), "refname" text, "fullname" text, "name" text, "rank" integer, "description" text, "license" character varying(255), "privileged" boolean, "disclosure_date" timestamp, "default_target" integer, "default_action" text, "stance" character varying(255), "ready" boolean)
|
33664
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_module_details_on_description" ON "module_details" ("description")[0m
|
33665
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_module_details_on_mtype" ON "module_details" ("mtype")
|
33666
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_details_on_name" ON "module_details" ("name")[0m
|
33667
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_module_details_on_refname" ON "module_details" ("refname")
|
33668
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "module_mixins" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33669
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_mixins_on_module_detail_id" ON "module_mixins" ("detail_id")
|
33670
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "module_platforms" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33671
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_platforms_on_module_detail_id" ON "module_platforms" ("detail_id")
|
33672
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "module_refs" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33673
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_module_refs_on_module_detail_id" ON "module_refs" ("detail_id")
|
33674
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_module_refs_on_name" ON "module_refs" ("name")[0m
|
33675
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "module_targets" ("id" serial primary key, "detail_id" integer, "index" integer, "name" text)
|
33676
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_targets_on_module_detail_id" ON "module_targets" ("detail_id")[0m
|
33677
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "nexpose_consoles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "enabled" boolean DEFAULT 't', "owner" text, "address" text, "port" integer DEFAULT 3780, "username" text, "password" text, "status" text, "version" text, "cert" text, "cached_sites" bytea, "name" text)
|
33678
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "notes" ("id" serial primary key, "created_at" timestamp, "ntype" character varying(512), "workspace_id" integer DEFAULT 1 NOT NULL, "service_id" integer, "host_id" integer, "updated_at" timestamp, "critical" boolean, "seen" boolean, "data" text) [0m
|
33679
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_notes_on_ntype" ON "notes" ("ntype")
|
33680
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "profiles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "active" boolean DEFAULT 't', "name" text, "owner" text, "settings" bytea) [0m
|
33681
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "refs" ("id" serial primary key, "ref_id" integer, "created_at" timestamp, "name" character varying(512), "updated_at" timestamp)
|
33682
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_refs_on_name" ON "refs" ("name")[0m
|
33683
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "report_templates" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "path" character varying(1024), "name" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33684
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "reports" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "rtype" character varying(255), "path" character varying(1024), "options" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "downloaded_at" timestamp, "task_id" integer, "name" character varying(63)) [0m
|
33685
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "routes" ("id" serial primary key, "session_id" integer, "subnet" character varying(255), "netmask" character varying(255))
|
33686
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "services" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "port" integer NOT NULL, "proto" character varying(16) NOT NULL, "state" character varying(255), "name" character varying(255), "updated_at" timestamp, "info" text) [0m
|
33687
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_services_on_name" ON "services" ("name")
|
33688
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_port" ON "services" ("port")[0m
|
33689
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_services_on_proto" ON "services" ("proto")
|
33690
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_state" ON "services" ("state")[0m
|
33691
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "session_events" ("id" serial primary key, "session_id" integer, "etype" character varying(255), "command" bytea, "output" bytea, "remote_path" character varying(255), "local_path" character varying(255), "created_at" timestamp)
|
33692
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "sessions" ("id" serial primary key, "host_id" integer, "stype" character varying(255), "via_exploit" character varying(255), "via_payload" character varying(255), "desc" character varying(255), "port" integer, "platform" character varying(255), "datastore" text, "opened_at" timestamp NOT NULL, "closed_at" timestamp, "close_reason" character varying(255), "local_id" integer, "last_seen" timestamp) [0m
|
33693
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "tags" ("id" serial primary key, "user_id" integer, "name" character varying(1024), "desc" text, "report_summary" boolean DEFAULT 'f' NOT NULL, "report_detail" boolean DEFAULT 'f' NOT NULL, "critical" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33694
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "task_creds" ("id" serial primary key, "task_id" integer NOT NULL, "cred_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33695
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "task_hosts" ("id" serial primary key, "task_id" integer NOT NULL, "host_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33696
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "task_services" ("id" serial primary key, "task_id" integer NOT NULL, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33697
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "task_sessions" ("id" serial primary key, "task_id" integer NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33698
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "tasks" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "module" character varying(255), "completed_at" timestamp, "path" character varying(1024), "info" character varying(255), "description" character varying(255), "progress" integer, "options" text, "error" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "result" text, "module_uuid" character varying(8), "settings" bytea) [0m
|
33699
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "users" ("id" serial primary key, "username" character varying(255), "crypted_password" character varying(255), "password_salt" character varying(255), "persistence_token" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "fullname" character varying(255), "email" character varying(255), "phone" character varying(255), "company" character varying(255), "prefs" character varying(524288), "admin" boolean DEFAULT 't' NOT NULL)
|
33700
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "vuln_attempts" ("id" serial primary key, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "fail_detail" text) [0m
|
33701
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "vuln_details" ("id" serial primary key, "vuln_id" integer, "cvss_score" float, "cvss_vector" character varying(255), "title" character varying(255), "description" text, "solution" text, "proof" bytea, "nx_console_id" integer, "nx_device_id" integer, "nx_vuln_id" character varying(255), "nx_severity" float, "nx_pci_severity" float, "nx_published" timestamp, "nx_added" timestamp, "nx_modified" timestamp, "nx_tags" text, "nx_vuln_status" text, "nx_proof_key" text, "src" character varying(255), "nx_scan_id" integer, "nx_vulnerable_since" timestamp, "nx_pci_compliance_status" character varying(255))
|
33702
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "vulns" ("id" serial primary key, "host_id" integer, "service_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "info" character varying(65536), "exploited_at" timestamp, "vuln_detail_count" integer DEFAULT 0, "vuln_attempt_count" integer DEFAULT 0) [0m
|
33703
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_vulns_on_name" ON "vulns" ("name")
|
33704
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "vulns_refs" ("id" serial primary key, "ref_id" integer, "vuln_id" integer) [0m
|
33705
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "web_forms" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "method" character varying(1024), "params" text, "query" text)
|
33706
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_forms_on_path" ON "web_forms" ("path")[0m
|
33707
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "web_pages" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "query" text, "code" integer NOT NULL, "cookie" text, "auth" text, "ctype" text, "mtime" timestamp, "location" text, "headers" text, "body" bytea, "request" bytea)
|
33708
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_pages_on_path" ON "web_pages" ("path")[0m
|
33709
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_pages_on_query" ON "web_pages" ("query")
|
33710
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "web_sites" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "vhost" character varying(2048), "comments" text, "options" text) [0m
|
33711
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_comments" ON "web_sites" ("comments")
|
33712
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_web_sites_on_options" ON "web_sites" ("options")[0m
|
33713
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_vhost" ON "web_sites" ("vhost")
|
33714
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "web_vulns" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text NOT NULL, "method" character varying(1024) NOT NULL, "params" text NOT NULL, "pname" text, "risk" integer NOT NULL, "name" character varying(1024) NOT NULL, "query" text, "category" text NOT NULL, "confidence" integer NOT NULL, "description" text, "blame" text, "request" bytea, "proof" bytea NOT NULL, "owner" character varying(255), "payload" text) [0m
|
33715
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_vulns_on_method" ON "web_vulns" ("method")
|
33716
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_vulns_on_name" ON "web_vulns" ("name")[0m
|
33717
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_web_vulns_on_path" ON "web_vulns" ("path")
|
33718
|
+
[1m[36m (4.0ms)[0m [1mCREATE TABLE "wmap_requests" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "meth" character varying(32), "path" text, "headers" text, "query" text, "body" text, "respcode" character varying(16), "resphead" text, "response" text, "created_at" timestamp, "updated_at" timestamp) [0m
|
33719
|
+
[1m[35m (3.3ms)[0m CREATE TABLE "wmap_targets" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "selected" integer, "created_at" timestamp, "updated_at" timestamp)
|
33720
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "workspace_members" ("workspace_id" integer NOT NULL, "user_id" integer NOT NULL) [0m
|
33721
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "workspaces" ("id" serial primary key, "name" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "boundary" character varying(4096), "description" character varying(4096), "owner_id" integer, "limit_to_network" boolean DEFAULT 'f' NOT NULL)
|
33722
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
33723
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
33724
|
+
[1m[36m (0.3ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
33725
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140703144541')
|
33726
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140331173835')[0m
|
33727
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140407212345')
|
33728
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410132401')[0m
|
33729
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410161611')
|
33730
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410191213')[0m
|
33731
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410205410')
|
33732
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140411142102')[0m
|
33733
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140411205325')
|
33734
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140414192550')[0m
|
33735
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140417140933')
|
33736
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140520140817')[0m
|
33737
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140603163708')
|
33738
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140605173747')[0m
|
33739
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140702184622')
|
33740
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
33741
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('1')
|
33742
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('2')[0m
|
33743
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('3')
|
33744
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('4')[0m
|
33745
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('5')
|
33746
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('6')[0m
|
33747
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('7')
|
33748
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('8')[0m
|
33749
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('9')
|
33750
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('10')[0m
|
33751
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('11')
|
33752
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('12')[0m
|
33753
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('13')
|
33754
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('14')[0m
|
33755
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('15')
|
33756
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('16')[0m
|
33757
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('17')
|
33758
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('18')[0m
|
33759
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('19')
|
33760
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20')[0m
|
33761
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('21')
|
33762
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('22')[0m
|
33763
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('23')
|
33764
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('24')[0m
|
33765
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('25')
|
33766
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('26')[0m
|
33767
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100819123300')
|
33768
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100824151500')[0m
|
33769
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100908001428')
|
33770
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100911122000')[0m
|
33771
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100916151530')
|
33772
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100916175000')[0m
|
33773
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100920012100')
|
33774
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100926214000')[0m
|
33775
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101001000000')
|
33776
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101002000000')[0m
|
33777
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101007000000')
|
33778
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101008111800')[0m
|
33779
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101009023300')
|
33780
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101104135100')[0m
|
33781
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101203000000')
|
33782
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101203000001')[0m
|
33783
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101206212033')
|
33784
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110112154300')[0m
|
33785
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110204112800')
|
33786
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110317144932')[0m
|
33787
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110414180600')
|
33788
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110415175705')[0m
|
33789
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110422000000')
|
33790
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110425095900')[0m
|
33791
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110513143900')
|
33792
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110517160800')[0m
|
33793
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110527000000')
|
33794
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110527000001')[0m
|
33795
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110606000001')
|
33796
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110622000000')[0m
|
33797
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110624000001')
|
33798
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110625000001')[0m
|
33799
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110630000001')
|
33800
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110630000002')[0m
|
33801
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110717000001')
|
33802
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110727163801')[0m
|
33803
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110730000001')
|
33804
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110812000001')[0m
|
33805
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110922000000')
|
33806
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110928101300')[0m
|
33807
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111011110000')
|
33808
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111203000000')[0m
|
33809
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111204000000')
|
33810
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111210000000')[0m
|
33811
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120126110000')
|
33812
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120411173220')[0m
|
33813
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120601152442')
|
33814
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000000')[0m
|
33815
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000001')
|
33816
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000002')[0m
|
33817
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000003')
|
33818
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000004')[0m
|
33819
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000005')
|
33820
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000006')[0m
|
33821
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000007')
|
33822
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000008')[0m
|
33823
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120718202805')
|
33824
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130228214900')[0m
|
33825
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412154159')
|
33826
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412171844')[0m
|
33827
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412173121')
|
33828
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412173640')[0m
|
33829
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412174254')
|
33830
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412174719')[0m
|
33831
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412175040')
|
33832
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130423211152')[0m
|
33833
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130430151353')
|
33834
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130430162145')[0m
|
33835
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130510021637')
|
33836
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130515164311')[0m
|
33837
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130515172727')
|
33838
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130516204810')[0m
|
33839
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522001343')
|
33840
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130522032517')[0m
|
33841
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522041110')
|
33842
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130525015035')[0m
|
33843
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130525212420')
|
33844
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
33845
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
33846
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|
33847
|
+
Connecting to database specified by database.yml
|
33848
|
+
[1m[36m (0.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
33849
|
+
[1m[35m (138.7ms)[0m DROP DATABASE IF EXISTS "metasploit_credential_test"
|
33850
|
+
[1m[36m (240.8ms)[0m [1mCREATE DATABASE "metasploit_credential_test" ENCODING = 'utf8'[0m
|
33851
|
+
[1m[35m (4.7ms)[0m CREATE TABLE "api_keys" ("id" serial primary key, "token" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33852
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "clients" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "ua_string" character varying(1024) NOT NULL, "ua_name" character varying(64), "ua_ver" character varying(32), "updated_at" timestamp) [0m
|
33853
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "credential_cores_tasks" ("core_id" integer, "task_id" integer)
|
33854
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "credential_logins_tasks" ("login_id" integer, "task_id" integer) [0m
|
33855
|
+
[1m[35m (27.0ms)[0m CREATE TABLE "creds" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "user" character varying(2048), "pass" character varying(4096), "active" boolean DEFAULT 't', "proof" character varying(4096), "ptype" character varying(256), "source_id" integer, "source_type" character varying(255))
|
33856
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "events" ("id" serial primary key, "workspace_id" integer, "host_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "critical" boolean, "seen" boolean, "username" character varying(255), "info" text) [0m
|
33857
|
+
[1m[35m (4.0ms)[0m CREATE TABLE "exploit_attempts" ("id" serial primary key, "host_id" integer, "service_id" integer, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "port" integer, "proto" character varying(255), "fail_detail" text)
|
33858
|
+
[1m[36m (3.8ms)[0m [1mCREATE TABLE "exploited_hosts" ("id" serial primary key, "host_id" integer NOT NULL, "service_id" integer, "session_uuid" character varying(8), "name" character varying(2048), "payload" character varying(2048), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33859
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "host_details" ("id" serial primary key, "host_id" integer, "nx_console_id" integer, "nx_device_id" integer, "src" character varying(255), "nx_site_name" character varying(255), "nx_site_importance" character varying(255), "nx_scan_template" character varying(255), "nx_risk_score" float)
|
33860
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "hosts" ("id" serial primary key, "created_at" timestamp, "address" character varying(255) NOT NULL, "mac" character varying(255), "comm" character varying(255), "name" character varying(255), "state" character varying(255), "os_name" character varying(255), "os_flavor" character varying(255), "os_sp" character varying(255), "os_lang" character varying(255), "arch" character varying(255), "workspace_id" integer NOT NULL, "updated_at" timestamp, "purpose" text, "info" character varying(65536), "comments" text, "scope" text, "virtual_host" text, "note_count" integer DEFAULT 0, "vuln_count" integer DEFAULT 0, "service_count" integer DEFAULT 0, "host_detail_count" integer DEFAULT 0, "exploit_attempt_count" integer DEFAULT 0, "cred_count" integer DEFAULT 0) [0m
|
33861
|
+
[1m[35m (1.4ms)[0m CREATE INDEX "index_hosts_on_name" ON "hosts" ("name")
|
33862
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_hosts_on_os_flavor" ON "hosts" ("os_flavor")[0m
|
33863
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_hosts_on_os_name" ON "hosts" ("os_name")
|
33864
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_hosts_on_purpose" ON "hosts" ("purpose")[0m
|
33865
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_state" ON "hosts" ("state")
|
33866
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_hosts_on_workspace_id_and_address" ON "hosts" ("workspace_id", "address")[0m
|
33867
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "hosts_tags" ("id" serial primary key, "host_id" integer, "tag_id" integer)
|
33868
|
+
[1m[36m (4.2ms)[0m [1mCREATE TABLE "listeners" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "workspace_id" integer DEFAULT 1 NOT NULL, "task_id" integer, "enabled" boolean DEFAULT 't', "owner" text, "payload" text, "address" text, "port" integer, "options" bytea, "macro" text) [0m
|
33869
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "loots" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "host_id" integer, "service_id" integer, "ltype" character varying(512), "path" character varying(1024), "data" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "content_type" character varying(255), "name" text, "info" text)
|
33870
|
+
[1m[36m (3.3ms)[0m [1mCREATE TABLE "macros" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "owner" text, "name" text, "description" text, "actions" bytea, "prefs" bytea) [0m
|
33871
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "metasploit_credential_cores" ("id" serial primary key, "origin_id" integer NOT NULL, "origin_type" character varying(255) NOT NULL, "private_id" integer, "public_id" integer, "realm_id" integer, "workspace_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "logins_count" integer DEFAULT 0)
|
33872
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_origin_type_and_origin_id" ON "metasploit_credential_cores" ("origin_type", "origin_id")[0m
|
33873
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_private_id" ON "metasploit_credential_cores" ("private_id")
|
33874
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_public_id" ON "metasploit_credential_cores" ("public_id")[0m
|
33875
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_realm_id" ON "metasploit_credential_cores" ("realm_id")
|
33876
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_workspace_id" ON "metasploit_credential_cores" ("workspace_id")[0m
|
33877
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "metasploit_credential_logins" ("id" serial primary key, "core_id" integer NOT NULL, "service_id" integer NOT NULL, "access_level" character varying(255), "status" character varying(255) NOT NULL, "last_attempted_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33878
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_metasploit_credential_logins_on_core_id_and_service_id" ON "metasploit_credential_logins" ("core_id", "service_id")[0m
|
33879
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_logins_on_service_id_and_core_id" ON "metasploit_credential_logins" ("service_id", "core_id")
|
33880
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "metasploit_credential_origin_cracked_passwords" ("id" serial primary key, "metasploit_credential_core_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33881
|
+
[1m[35m (26.8ms)[0m CREATE INDEX "originating_credential_cores" ON "metasploit_credential_origin_cracked_passwords" ("metasploit_credential_core_id")
|
33882
|
+
[1m[36m (15.4ms)[0m [1mCREATE TABLE "metasploit_credential_origin_imports" ("id" serial primary key, "filename" text NOT NULL, "task_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33883
|
+
[1m[35m (1.2ms)[0m CREATE INDEX "index_metasploit_credential_origin_imports_on_task_id" ON "metasploit_credential_origin_imports" ("task_id")
|
33884
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "metasploit_credential_origin_manuals" ("id" serial primary key, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33885
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_metasploit_credential_origin_manuals_on_user_id" ON "metasploit_credential_origin_manuals" ("user_id")
|
33886
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "metasploit_credential_origin_services" ("id" serial primary key, "service_id" integer NOT NULL, "module_full_name" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33887
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_services" ON "metasploit_credential_origin_services" ("service_id", "module_full_name")
|
33888
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "metasploit_credential_origin_sessions" ("id" serial primary key, "post_reference_name" text NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33889
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_sessions" ON "metasploit_credential_origin_sessions" ("session_id", "post_reference_name")
|
33890
|
+
[1m[36m (3.5ms)[0m [1mCREATE TABLE "metasploit_credential_privates" ("id" serial primary key, "type" character varying(255) NOT NULL, "data" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "jtr_format" character varying(255)) [0m
|
33891
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_privates_on_type_and_data" ON "metasploit_credential_privates" ("type", "data")
|
33892
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "metasploit_credential_publics" ("id" serial primary key, "username" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33893
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_publics_on_username" ON "metasploit_credential_publics" ("username")
|
33894
|
+
[1m[36m (3.6ms)[0m [1mCREATE TABLE "metasploit_credential_realms" ("id" serial primary key, "key" character varying(255) NOT NULL, "value" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33895
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_realms_on_key_and_value" ON "metasploit_credential_realms" ("key", "value")
|
33896
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "mod_refs" ("id" serial primary key, "module" character varying(1024), "mtype" character varying(128), "ref" text) [0m
|
33897
|
+
[1m[35m (3.3ms)[0m CREATE TABLE "module_actions" ("id" serial primary key, "detail_id" integer, "name" text)
|
33898
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_module_actions_on_module_detail_id" ON "module_actions" ("detail_id")[0m
|
33899
|
+
[1m[35m (3.4ms)[0m CREATE TABLE "module_archs" ("id" serial primary key, "detail_id" integer, "name" text)
|
33900
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_archs_on_module_detail_id" ON "module_archs" ("detail_id")[0m
|
33901
|
+
[1m[35m (3.4ms)[0m CREATE TABLE "module_authors" ("id" serial primary key, "detail_id" integer, "name" text, "email" text)
|
33902
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_authors_on_module_detail_id" ON "module_authors" ("detail_id")[0m
|
33903
|
+
[1m[35m (3.5ms)[0m CREATE TABLE "module_details" ("id" serial primary key, "mtime" timestamp, "file" text, "mtype" character varying(255), "refname" text, "fullname" text, "name" text, "rank" integer, "description" text, "license" character varying(255), "privileged" boolean, "disclosure_date" timestamp, "default_target" integer, "default_action" text, "stance" character varying(255), "ready" boolean)
|
33904
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_module_details_on_description" ON "module_details" ("description")[0m
|
33905
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_module_details_on_mtype" ON "module_details" ("mtype")
|
33906
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_module_details_on_name" ON "module_details" ("name")[0m
|
33907
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_module_details_on_refname" ON "module_details" ("refname")
|
33908
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "module_mixins" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33909
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_module_mixins_on_module_detail_id" ON "module_mixins" ("detail_id")
|
33910
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "module_platforms" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33911
|
+
[1m[35m (1.2ms)[0m CREATE INDEX "index_module_platforms_on_module_detail_id" ON "module_platforms" ("detail_id")
|
33912
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "module_refs" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
33913
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_module_refs_on_module_detail_id" ON "module_refs" ("detail_id")
|
33914
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_refs_on_name" ON "module_refs" ("name")[0m
|
33915
|
+
[1m[35m (3.0ms)[0m CREATE TABLE "module_targets" ("id" serial primary key, "detail_id" integer, "index" integer, "name" text)
|
33916
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_targets_on_module_detail_id" ON "module_targets" ("detail_id")[0m
|
33917
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "nexpose_consoles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "enabled" boolean DEFAULT 't', "owner" text, "address" text, "port" integer DEFAULT 3780, "username" text, "password" text, "status" text, "version" text, "cert" text, "cached_sites" bytea, "name" text)
|
33918
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "notes" ("id" serial primary key, "created_at" timestamp, "ntype" character varying(512), "workspace_id" integer DEFAULT 1 NOT NULL, "service_id" integer, "host_id" integer, "updated_at" timestamp, "critical" boolean, "seen" boolean, "data" text) [0m
|
33919
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_notes_on_ntype" ON "notes" ("ntype")
|
33920
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "profiles" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "active" boolean DEFAULT 't', "name" text, "owner" text, "settings" bytea) [0m
|
33921
|
+
[1m[35m (3.6ms)[0m CREATE TABLE "refs" ("id" serial primary key, "ref_id" integer, "created_at" timestamp, "name" character varying(512), "updated_at" timestamp)
|
33922
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_refs_on_name" ON "refs" ("name")[0m
|
33923
|
+
[1m[35m (3.8ms)[0m CREATE TABLE "report_templates" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "path" character varying(1024), "name" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33924
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "reports" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "rtype" character varying(255), "path" character varying(1024), "options" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "downloaded_at" timestamp, "task_id" integer, "name" character varying(63)) [0m
|
33925
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "routes" ("id" serial primary key, "session_id" integer, "subnet" character varying(255), "netmask" character varying(255))
|
33926
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "services" ("id" serial primary key, "host_id" integer, "created_at" timestamp, "port" integer NOT NULL, "proto" character varying(16) NOT NULL, "state" character varying(255), "name" character varying(255), "updated_at" timestamp, "info" text) [0m
|
33927
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_services_on_name" ON "services" ("name")
|
33928
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_services_on_port" ON "services" ("port")[0m
|
33929
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_services_on_proto" ON "services" ("proto")
|
33930
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_state" ON "services" ("state")[0m
|
33931
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "session_events" ("id" serial primary key, "session_id" integer, "etype" character varying(255), "command" bytea, "output" bytea, "remote_path" character varying(255), "local_path" character varying(255), "created_at" timestamp)
|
33932
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "sessions" ("id" serial primary key, "host_id" integer, "stype" character varying(255), "via_exploit" character varying(255), "via_payload" character varying(255), "desc" character varying(255), "port" integer, "platform" character varying(255), "datastore" text, "opened_at" timestamp NOT NULL, "closed_at" timestamp, "close_reason" character varying(255), "local_id" integer, "last_seen" timestamp) [0m
|
33933
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "tags" ("id" serial primary key, "user_id" integer, "name" character varying(1024), "desc" text, "report_summary" boolean DEFAULT 'f' NOT NULL, "report_detail" boolean DEFAULT 'f' NOT NULL, "critical" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33934
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "task_creds" ("id" serial primary key, "task_id" integer NOT NULL, "cred_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33935
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "task_hosts" ("id" serial primary key, "task_id" integer NOT NULL, "host_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33936
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "task_services" ("id" serial primary key, "task_id" integer NOT NULL, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
33937
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "task_sessions" ("id" serial primary key, "task_id" integer NOT NULL, "session_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
33938
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "tasks" ("id" serial primary key, "workspace_id" integer DEFAULT 1 NOT NULL, "created_by" character varying(255), "module" character varying(255), "completed_at" timestamp, "path" character varying(1024), "info" character varying(255), "description" character varying(255), "progress" integer, "options" text, "error" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "result" text, "module_uuid" character varying(8), "settings" bytea) [0m
|
33939
|
+
[1m[35m (2.9ms)[0m CREATE TABLE "users" ("id" serial primary key, "username" character varying(255), "crypted_password" character varying(255), "password_salt" character varying(255), "persistence_token" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "fullname" character varying(255), "email" character varying(255), "phone" character varying(255), "company" character varying(255), "prefs" character varying(524288), "admin" boolean DEFAULT 't' NOT NULL)
|
33940
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "vuln_attempts" ("id" serial primary key, "vuln_id" integer, "attempted_at" timestamp, "exploited" boolean, "fail_reason" character varying(255), "username" character varying(255), "module" text, "session_id" integer, "loot_id" integer, "fail_detail" text) [0m
|
33941
|
+
[1m[35m (3.8ms)[0m CREATE TABLE "vuln_details" ("id" serial primary key, "vuln_id" integer, "cvss_score" float, "cvss_vector" character varying(255), "title" character varying(255), "description" text, "solution" text, "proof" bytea, "nx_console_id" integer, "nx_device_id" integer, "nx_vuln_id" character varying(255), "nx_severity" float, "nx_pci_severity" float, "nx_published" timestamp, "nx_added" timestamp, "nx_modified" timestamp, "nx_tags" text, "nx_vuln_status" text, "nx_proof_key" text, "src" character varying(255), "nx_scan_id" integer, "nx_vulnerable_since" timestamp, "nx_pci_compliance_status" character varying(255))
|
33942
|
+
[1m[36m (3.4ms)[0m [1mCREATE TABLE "vulns" ("id" serial primary key, "host_id" integer, "service_id" integer, "created_at" timestamp, "name" character varying(255), "updated_at" timestamp, "info" character varying(65536), "exploited_at" timestamp, "vuln_detail_count" integer DEFAULT 0, "vuln_attempt_count" integer DEFAULT 0) [0m
|
33943
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_vulns_on_name" ON "vulns" ("name")
|
33944
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "vulns_refs" ("id" serial primary key, "ref_id" integer, "vuln_id" integer) [0m
|
33945
|
+
[1m[35m (3.9ms)[0m CREATE TABLE "web_forms" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "method" character varying(1024), "params" text, "query" text)
|
33946
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_forms_on_path" ON "web_forms" ("path")[0m
|
33947
|
+
[1m[35m (2.9ms)[0m CREATE TABLE "web_pages" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text, "query" text, "code" integer NOT NULL, "cookie" text, "auth" text, "ctype" text, "mtime" timestamp, "location" text, "headers" text, "body" bytea, "request" bytea)
|
33948
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_pages_on_path" ON "web_pages" ("path")[0m
|
33949
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_pages_on_query" ON "web_pages" ("query")
|
33950
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "web_sites" ("id" serial primary key, "service_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "vhost" character varying(2048), "comments" text, "options" text) [0m
|
33951
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_comments" ON "web_sites" ("comments")
|
33952
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_web_sites_on_options" ON "web_sites" ("options")[0m
|
33953
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_web_sites_on_vhost" ON "web_sites" ("vhost")
|
33954
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "web_vulns" ("id" serial primary key, "web_site_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "path" text NOT NULL, "method" character varying(1024) NOT NULL, "params" text NOT NULL, "pname" text, "risk" integer NOT NULL, "name" character varying(1024) NOT NULL, "query" text, "category" text NOT NULL, "confidence" integer NOT NULL, "description" text, "blame" text, "request" bytea, "proof" bytea NOT NULL, "owner" character varying(255), "payload" text) [0m
|
33955
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_vulns_on_method" ON "web_vulns" ("method")
|
33956
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_vulns_on_name" ON "web_vulns" ("name")[0m
|
33957
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_web_vulns_on_path" ON "web_vulns" ("path")
|
33958
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "wmap_requests" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "meth" character varying(32), "path" text, "headers" text, "query" text, "body" text, "respcode" character varying(16), "resphead" text, "response" text, "created_at" timestamp, "updated_at" timestamp) [0m
|
33959
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "wmap_targets" ("id" serial primary key, "host" character varying(255), "address" character varying(255), "port" integer, "ssl" integer, "selected" integer, "created_at" timestamp, "updated_at" timestamp)
|
33960
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "workspace_members" ("workspace_id" integer NOT NULL, "user_id" integer NOT NULL) [0m
|
33961
|
+
[1m[35m (3.0ms)[0m CREATE TABLE "workspaces" ("id" serial primary key, "name" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "boundary" character varying(4096), "description" character varying(4096), "owner_id" integer, "limit_to_network" boolean DEFAULT 'f' NOT NULL)
|
33962
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
33963
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
33964
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
33965
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140703144541')
|
33966
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140331173835')[0m
|
33967
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140407212345')
|
33968
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410132401')[0m
|
33969
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410161611')
|
33970
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410191213')[0m
|
33971
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410205410')
|
33972
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140411142102')[0m
|
33973
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140411205325')
|
33974
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140414192550')[0m
|
33975
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140417140933')
|
33976
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140520140817')[0m
|
33977
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140603163708')
|
33978
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140605173747')[0m
|
33979
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140702184622')
|
33980
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
33981
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('1')
|
33982
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('2')[0m
|
33983
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('3')
|
33984
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('4')[0m
|
33985
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('5')
|
33986
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('6')[0m
|
33987
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('7')
|
33988
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('8')[0m
|
33989
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('9')
|
33990
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('10')[0m
|
33991
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('11')
|
33992
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('12')[0m
|
33993
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('13')
|
33994
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('14')[0m
|
33995
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('15')
|
33996
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('16')[0m
|
33997
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('17')
|
33998
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('18')[0m
|
33999
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('19')
|
34000
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20')[0m
|
34001
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('21')
|
34002
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('22')[0m
|
34003
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('23')
|
34004
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('24')[0m
|
34005
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('25')
|
34006
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('26')[0m
|
34007
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100819123300')
|
34008
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100824151500')[0m
|
34009
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100908001428')
|
34010
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100911122000')[0m
|
34011
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100916151530')
|
34012
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100916175000')[0m
|
34013
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100920012100')
|
34014
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100926214000')[0m
|
34015
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101001000000')
|
34016
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101002000000')[0m
|
34017
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101007000000')
|
34018
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101008111800')[0m
|
34019
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101009023300')
|
34020
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101104135100')[0m
|
34021
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101203000000')
|
34022
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101203000001')[0m
|
34023
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101206212033')
|
34024
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110112154300')[0m
|
34025
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110204112800')
|
34026
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110317144932')[0m
|
34027
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110414180600')
|
34028
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110415175705')[0m
|
34029
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110422000000')
|
34030
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110425095900')[0m
|
34031
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110513143900')
|
34032
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110517160800')[0m
|
34033
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110527000000')
|
34034
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110527000001')[0m
|
34035
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110606000001')
|
34036
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110622000000')[0m
|
34037
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110624000001')
|
34038
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110625000001')[0m
|
34039
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110630000001')
|
34040
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110630000002')[0m
|
34041
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110717000001')
|
34042
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110727163801')[0m
|
34043
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110730000001')
|
34044
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110812000001')[0m
|
34045
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110922000000')
|
34046
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110928101300')[0m
|
34047
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111011110000')
|
34048
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111203000000')[0m
|
34049
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111204000000')
|
34050
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111210000000')[0m
|
34051
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120126110000')
|
34052
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120411173220')[0m
|
34053
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120601152442')
|
34054
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000000')[0m
|
34055
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000001')
|
34056
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000002')[0m
|
34057
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000003')
|
34058
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000004')[0m
|
34059
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000005')
|
34060
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000006')[0m
|
34061
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000007')
|
34062
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000008')[0m
|
34063
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120718202805')
|
34064
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130228214900')[0m
|
34065
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412154159')
|
34066
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412171844')[0m
|
34067
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412173121')
|
34068
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412173640')[0m
|
34069
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412174254')
|
34070
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412174719')[0m
|
34071
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412175040')
|
34072
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130423211152')[0m
|
34073
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130430151353')
|
34074
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130430162145')[0m
|
34075
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130510021637')
|
34076
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130515164311')[0m
|
34077
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130515172727')
|
34078
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130516204810')[0m
|
34079
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522001343')
|
34080
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130522032517')[0m
|
34081
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522041110')
|
34082
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130525015035')[0m
|
34083
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130525212420')
|
34084
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
34085
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
34086
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|