metasploit-credential 0.7.8 → 0.7.9.pre.core.pre.search
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/app/models/metasploit/credential/core.rb +17 -0
- data/config/locales/en.yml +8 -8
- data/lib/metasploit/credential/version.rb +3 -1
- data/spec/dummy/log/development.log +241 -0
- data/spec/dummy/log/test.log +13639 -0
- data/spec/models/metasploit/credential/core_spec.rb +13 -0
- data/spec/models/metasploit_data_models/search/visitor/relation_spec.rb +264 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MDAyODg0M2YyNjJjMmJhZmYzN2I5Mjc0MTM4ZDgzZDI0MTAzMDhkZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZjA5MDlmMjEwMDcwZjc1NzNlOTIxMTc2YzQ4ZWFlNDZlNjZmNTJjOA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YjM1OGE0MDhkMGUzYzQwODYwM2UyYmRhY2QzN2RkNDA0OWIwNWUxOTE3ODVk
|
10
|
+
YzQ5NTAxNDlhZTE4NTI3MmY1MTlkNDM2MmFiZTNjNWY1NGE5NzY4ZWJkNTBh
|
11
|
+
ZjVhMTlkODcyYWUwMzcxZjQ0YzAxNjM0NGQzOThkY2ZjOGM3NGQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MGM5OGJmNGRhZmVjOWUwZjFiNmVlMzg3NzZhNWJjMTRjNzljMTcyZTdiMTRj
|
14
|
+
M2Q2ODk4YmIyM2Q2N2EyN2U0OTE4NDkwMjhiODJlMmJiNjYyZjRlYmMyNWE0
|
15
|
+
YjUyNTUwNWJlYjFjNTM2MmY3MjIzZjBkZDExZTk3Yjk3NDAyZjA=
|
@@ -4,6 +4,8 @@
|
|
4
4
|
#
|
5
5
|
# A core credential must always have an {#origin}, but only needs 1 of {#private}, {#public}, or {#realm} set.
|
6
6
|
class Metasploit::Credential::Core < ActiveRecord::Base
|
7
|
+
include Metasploit::Model::Search
|
8
|
+
|
7
9
|
#
|
8
10
|
# Associations
|
9
11
|
#
|
@@ -256,6 +258,21 @@ class Metasploit::Credential::Core < ActiveRecord::Base
|
|
256
258
|
includes(:realm)
|
257
259
|
}
|
258
260
|
|
261
|
+
#
|
262
|
+
#
|
263
|
+
# Search
|
264
|
+
#
|
265
|
+
#
|
266
|
+
|
267
|
+
#
|
268
|
+
# Search Associations
|
269
|
+
#
|
270
|
+
|
271
|
+
search_association :logins
|
272
|
+
search_association :private
|
273
|
+
search_association :public
|
274
|
+
search_association :realm
|
275
|
+
|
259
276
|
#
|
260
277
|
# Class Methods
|
261
278
|
#
|
data/config/locales/en.yml
CHANGED
@@ -21,14 +21,6 @@ en:
|
|
21
21
|
missing_manifest: "This Metasploit credentials zip export appears to be missing its CSV manifest"
|
22
22
|
activerecord:
|
23
23
|
ancestors:
|
24
|
-
metasploit/credential/realm:
|
25
|
-
search:
|
26
|
-
operator:
|
27
|
-
names:
|
28
|
-
key:
|
29
|
-
help: "The type of realm, such as Active Directory Domain or PostgreSQL Database."
|
30
|
-
value:
|
31
|
-
help: "The name of the realm, such as the domain name or the database name."
|
32
24
|
metasploit/credential/login:
|
33
25
|
search:
|
34
26
|
operator:
|
@@ -37,6 +29,14 @@ en:
|
|
37
29
|
help: "The level of access granted to the service by core credential, such as 'root' or 'Administrator'."
|
38
30
|
status:
|
39
31
|
help: "The status of this login: 'Denied Access', 'Disabled', 'Incorrect', 'Locked Out', 'No Auth Required', 'Successful', 'Unable to Connect', or 'Untried'"
|
32
|
+
metasploit/credential/realm:
|
33
|
+
search:
|
34
|
+
operator:
|
35
|
+
names:
|
36
|
+
key:
|
37
|
+
help: "The type of realm, such as Active Directory Domain or PostgreSQL Database."
|
38
|
+
value:
|
39
|
+
help: "The name of the realm, such as the domain name or the database name."
|
40
40
|
models:
|
41
41
|
metasploit/credential/ntlm_hash: "NTLM hash"
|
42
42
|
metasploit/credential/ssh_key: "SSH key"
|
@@ -7,7 +7,9 @@ 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 = 9
|
11
|
+
# The prerelease name of the given {MAJOR}.{MINOR}.{PATCH} version number. Will not be defined on master.
|
12
|
+
PRERELEASE = 'core-search'
|
11
13
|
|
12
14
|
# The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the {PRERELEASE} in the
|
13
15
|
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
|
@@ -47870,3 +47870,244 @@ Connecting to database specified by database.yml
|
|
47870
47870
|
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
47871
47871
|
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
47872
47872
|
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|
47873
|
+
Connecting to database specified by database.yml
|
47874
|
+
[1m[36m (0.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
47875
|
+
[1m[35m (166.1ms)[0m DROP DATABASE IF EXISTS "metasploit_credential_test"
|
47876
|
+
[1m[36m (389.6ms)[0m [1mCREATE DATABASE "metasploit_credential_test" ENCODING = 'utf8'[0m
|
47877
|
+
[1m[35m (10.5ms)[0m CREATE TABLE "api_keys" ("id" serial primary key, "token" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
47878
|
+
[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
|
47879
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "credential_cores_tasks" ("core_id" integer, "task_id" integer)
|
47880
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "credential_logins_tasks" ("login_id" integer, "task_id" integer) [0m
|
47881
|
+
[1m[35m (20.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))
|
47882
|
+
[1m[36m (3.0ms)[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
|
47883
|
+
[1m[35m (2.9ms)[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)
|
47884
|
+
[1m[36m (2.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
|
47885
|
+
[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)
|
47886
|
+
[1m[36m (3.6ms)[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
|
47887
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_hosts_on_name" ON "hosts" ("name")
|
47888
|
+
[1m[36m (1.6ms)[0m [1mCREATE INDEX "index_hosts_on_os_flavor" ON "hosts" ("os_flavor")[0m
|
47889
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_hosts_on_os_name" ON "hosts" ("os_name")
|
47890
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_hosts_on_purpose" ON "hosts" ("purpose")[0m
|
47891
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_hosts_on_state" ON "hosts" ("state")
|
47892
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_hosts_on_workspace_id_and_address" ON "hosts" ("workspace_id", "address")[0m
|
47893
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "hosts_tags" ("id" serial primary key, "host_id" integer, "tag_id" integer)
|
47894
|
+
[1m[36m (3.0ms)[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
|
47895
|
+
[1m[35m (2.9ms)[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)
|
47896
|
+
[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
|
47897
|
+
[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)
|
47898
|
+
[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
|
47899
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_private_id" ON "metasploit_credential_cores" ("private_id")
|
47900
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_public_id" ON "metasploit_credential_cores" ("public_id")[0m
|
47901
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_cores_on_realm_id" ON "metasploit_credential_cores" ("realm_id")
|
47902
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_metasploit_credential_cores_on_workspace_id" ON "metasploit_credential_cores" ("workspace_id")[0m
|
47903
|
+
[1m[35m (2.9ms)[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)
|
47904
|
+
[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
|
47905
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_logins_on_service_id_and_core_id" ON "metasploit_credential_logins" ("service_id", "core_id")
|
47906
|
+
[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
|
47907
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "originating_credential_cores" ON "metasploit_credential_origin_cracked_passwords" ("metasploit_credential_core_id")
|
47908
|
+
[1m[36m (2.9ms)[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
|
47909
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_metasploit_credential_origin_imports_on_task_id" ON "metasploit_credential_origin_imports" ("task_id")
|
47910
|
+
[1m[36m (2.0ms)[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
|
47911
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_metasploit_credential_origin_manuals_on_user_id" ON "metasploit_credential_origin_manuals" ("user_id")
|
47912
|
+
[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
|
47913
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_services" ON "metasploit_credential_origin_services" ("service_id", "module_full_name")
|
47914
|
+
[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
|
47915
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_metasploit_credential_origin_sessions" ON "metasploit_credential_origin_sessions" ("session_id", "post_reference_name")
|
47916
|
+
[1m[36m (2.8ms)[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
|
47917
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_privates_on_type_and_data" ON "metasploit_credential_privates" ("type", "data")
|
47918
|
+
[1m[36m (1.9ms)[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
|
47919
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_publics_on_username" ON "metasploit_credential_publics" ("username")
|
47920
|
+
[1m[36m (2.9ms)[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
|
47921
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_metasploit_credential_realms_on_key_and_value" ON "metasploit_credential_realms" ("key", "value")
|
47922
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "mod_refs" ("id" serial primary key, "module" character varying(1024), "mtype" character varying(128), "ref" text) [0m
|
47923
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "module_actions" ("id" serial primary key, "detail_id" integer, "name" text)
|
47924
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_actions_on_module_detail_id" ON "module_actions" ("detail_id")[0m
|
47925
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "module_archs" ("id" serial primary key, "detail_id" integer, "name" text)
|
47926
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_archs_on_module_detail_id" ON "module_archs" ("detail_id")[0m
|
47927
|
+
[1m[35m (3.0ms)[0m CREATE TABLE "module_authors" ("id" serial primary key, "detail_id" integer, "name" text, "email" text)
|
47928
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_authors_on_module_detail_id" ON "module_authors" ("detail_id")[0m
|
47929
|
+
[1m[35m (3.1ms)[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)
|
47930
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_details_on_description" ON "module_details" ("description")[0m
|
47931
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_module_details_on_mtype" ON "module_details" ("mtype")
|
47932
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_details_on_name" ON "module_details" ("name")[0m
|
47933
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_module_details_on_refname" ON "module_details" ("refname")
|
47934
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "module_mixins" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
47935
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_module_mixins_on_module_detail_id" ON "module_mixins" ("detail_id")
|
47936
|
+
[1m[36m (3.5ms)[0m [1mCREATE TABLE "module_platforms" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
47937
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_module_platforms_on_module_detail_id" ON "module_platforms" ("detail_id")
|
47938
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "module_refs" ("id" serial primary key, "detail_id" integer, "name" text) [0m
|
47939
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_module_refs_on_module_detail_id" ON "module_refs" ("detail_id")
|
47940
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_module_refs_on_name" ON "module_refs" ("name")[0m
|
47941
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "module_targets" ("id" serial primary key, "detail_id" integer, "index" integer, "name" text)
|
47942
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_module_targets_on_module_detail_id" ON "module_targets" ("detail_id")[0m
|
47943
|
+
[1m[35m (3.0ms)[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)
|
47944
|
+
[1m[36m (4.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
|
47945
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_notes_on_ntype" ON "notes" ("ntype")
|
47946
|
+
[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
|
47947
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "refs" ("id" serial primary key, "ref_id" integer, "created_at" timestamp, "name" character varying(512), "updated_at" timestamp)
|
47948
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_refs_on_name" ON "refs" ("name")[0m
|
47949
|
+
[1m[35m (3.2ms)[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)
|
47950
|
+
[1m[36m (2.9ms)[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
|
47951
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "routes" ("id" serial primary key, "session_id" integer, "subnet" character varying(255), "netmask" character varying(255))
|
47952
|
+
[1m[36m (2.8ms)[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
|
47953
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_services_on_name" ON "services" ("name")
|
47954
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_services_on_port" ON "services" ("port")[0m
|
47955
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_services_on_proto" ON "services" ("proto")
|
47956
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_services_on_state" ON "services" ("state")[0m
|
47957
|
+
[1m[35m (3.1ms)[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)
|
47958
|
+
[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
|
47959
|
+
[1m[35m (3.2ms)[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)
|
47960
|
+
[1m[36m (2.1ms)[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
|
47961
|
+
[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)
|
47962
|
+
[1m[36m (2.2ms)[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
|
47963
|
+
[1m[35m (2.3ms)[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)
|
47964
|
+
[1m[36m (3.0ms)[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
|
47965
|
+
[1m[35m (3.2ms)[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)
|
47966
|
+
[1m[36m (3.0ms)[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
|
47967
|
+
[1m[35m (3.0ms)[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))
|
47968
|
+
[1m[36m (3.2ms)[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
|
47969
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_vulns_on_name" ON "vulns" ("name")
|
47970
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "vulns_refs" ("id" serial primary key, "ref_id" integer, "vuln_id" integer) [0m
|
47971
|
+
[1m[35m (2.7ms)[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)
|
47972
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_web_forms_on_path" ON "web_forms" ("path")[0m
|
47973
|
+
[1m[35m (3.1ms)[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)
|
47974
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_web_pages_on_path" ON "web_pages" ("path")[0m
|
47975
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_web_pages_on_query" ON "web_pages" ("query")
|
47976
|
+
[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
|
47977
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_web_sites_on_comments" ON "web_sites" ("comments")
|
47978
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_sites_on_options" ON "web_sites" ("options")[0m
|
47979
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_sites_on_vhost" ON "web_sites" ("vhost")
|
47980
|
+
[1m[36m (2.9ms)[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
|
47981
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_web_vulns_on_method" ON "web_vulns" ("method")
|
47982
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_web_vulns_on_name" ON "web_vulns" ("name")[0m
|
47983
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_web_vulns_on_path" ON "web_vulns" ("path")
|
47984
|
+
[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
|
47985
|
+
[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)
|
47986
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "workspace_members" ("workspace_id" integer NOT NULL, "user_id" integer NOT NULL) [0m
|
47987
|
+
[1m[35m (4.3ms)[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)
|
47988
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
47989
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
47990
|
+
[1m[36m (0.3ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
47991
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140703144541')
|
47992
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140331173835')[0m
|
47993
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140407212345')
|
47994
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410132401')[0m
|
47995
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410161611')
|
47996
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140410191213')[0m
|
47997
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140410205410')
|
47998
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140411142102')[0m
|
47999
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140411205325')
|
48000
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140414192550')[0m
|
48001
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140417140933')
|
48002
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140520140817')[0m
|
48003
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140603163708')
|
48004
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140605173747')[0m
|
48005
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140702184622')
|
48006
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
48007
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('1')
|
48008
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('2')[0m
|
48009
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('3')
|
48010
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('4')[0m
|
48011
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('5')
|
48012
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('6')[0m
|
48013
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('7')
|
48014
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('8')[0m
|
48015
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('9')
|
48016
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('10')[0m
|
48017
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('11')
|
48018
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('12')[0m
|
48019
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('13')
|
48020
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('14')[0m
|
48021
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('15')
|
48022
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('16')[0m
|
48023
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('17')
|
48024
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('18')[0m
|
48025
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('19')
|
48026
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20')[0m
|
48027
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('21')
|
48028
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('22')[0m
|
48029
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('23')
|
48030
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('24')[0m
|
48031
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('25')
|
48032
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('26')[0m
|
48033
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100819123300')
|
48034
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100824151500')[0m
|
48035
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100908001428')
|
48036
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100911122000')[0m
|
48037
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100916151530')
|
48038
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100916175000')[0m
|
48039
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20100920012100')
|
48040
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20100926214000')[0m
|
48041
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101001000000')
|
48042
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101002000000')[0m
|
48043
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101007000000')
|
48044
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101008111800')[0m
|
48045
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101009023300')
|
48046
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101104135100')[0m
|
48047
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101203000000')
|
48048
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101203000001')[0m
|
48049
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101206212033')
|
48050
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110112154300')[0m
|
48051
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110204112800')
|
48052
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110317144932')[0m
|
48053
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110414180600')
|
48054
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110415175705')[0m
|
48055
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110422000000')
|
48056
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110425095900')[0m
|
48057
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110513143900')
|
48058
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110517160800')[0m
|
48059
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110527000000')
|
48060
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110527000001')[0m
|
48061
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110606000001')
|
48062
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110622000000')[0m
|
48063
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110624000001')
|
48064
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110625000001')[0m
|
48065
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110630000001')
|
48066
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110630000002')[0m
|
48067
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110717000001')
|
48068
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110727163801')[0m
|
48069
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110730000001')
|
48070
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110812000001')[0m
|
48071
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110922000000')
|
48072
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110928101300')[0m
|
48073
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111011110000')
|
48074
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111203000000')[0m
|
48075
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111204000000')
|
48076
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111210000000')[0m
|
48077
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120126110000')
|
48078
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120411173220')[0m
|
48079
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120601152442')
|
48080
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000000')[0m
|
48081
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000001')
|
48082
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000002')[0m
|
48083
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000003')
|
48084
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000004')[0m
|
48085
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000005')
|
48086
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000006')[0m
|
48087
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120625000007')
|
48088
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120625000008')[0m
|
48089
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120718202805')
|
48090
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130228214900')[0m
|
48091
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412154159')
|
48092
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412171844')[0m
|
48093
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412173121')
|
48094
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412173640')[0m
|
48095
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412174254')
|
48096
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130412174719')[0m
|
48097
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130412175040')
|
48098
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130423211152')[0m
|
48099
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130430151353')
|
48100
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130430162145')[0m
|
48101
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130510021637')
|
48102
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130515164311')[0m
|
48103
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130515172727')
|
48104
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130516204810')[0m
|
48105
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522001343')
|
48106
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130522032517')[0m
|
48107
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130522041110')
|
48108
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130525015035')[0m
|
48109
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130525212420')
|
48110
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130531144949')[0m
|
48111
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130604145732')
|
48112
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130717150737')[0m
|
48113
|
+
Connecting to database specified by database.yml
|