ronin 1.0.0.pre3 → 1.0.0.pre4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (198) hide show
  1. data/COPYING.txt +623 -288
  2. data/ChangeLog.md +21 -2
  3. data/Gemfile +5 -12
  4. data/README.md +6 -7
  5. data/gemspec.yml +3 -3
  6. data/lib/ronin.rb +6 -7
  7. data/lib/ronin/address.rb +18 -7
  8. data/lib/ronin/arch.rb +6 -7
  9. data/lib/ronin/author.rb +6 -7
  10. data/lib/ronin/bootstrap.rb +6 -8
  11. data/lib/ronin/cached_file.rb +6 -7
  12. data/lib/ronin/campaign.rb +10 -11
  13. data/lib/ronin/class_methods.rb +6 -7
  14. data/lib/ronin/config.rb +6 -7
  15. data/lib/ronin/credential.rb +19 -8
  16. data/lib/ronin/database.rb +6 -7
  17. data/lib/ronin/database/database.rb +8 -9
  18. data/lib/ronin/database/exceptions.rb +6 -7
  19. data/lib/ronin/database/exceptions/invalid_config.rb +6 -7
  20. data/lib/ronin/database/exceptions/unknown_repository.rb +6 -7
  21. data/lib/ronin/database/migrations.rb +6 -7
  22. data/lib/ronin/database/migrations/create_addresses_table.rb +6 -7
  23. data/lib/ronin/database/migrations/create_arches_table.rb +6 -7
  24. data/lib/ronin/database/migrations/create_authors_table.rb +6 -7
  25. data/lib/ronin/database/migrations/create_cached_files_table.rb +6 -7
  26. data/lib/ronin/database/migrations/create_campaigns_table.rb +8 -7
  27. data/lib/ronin/database/migrations/create_countries_table.rb +6 -7
  28. data/lib/ronin/database/migrations/create_credentials_table.rb +16 -10
  29. data/lib/ronin/database/migrations/create_email_addresses_table.rb +10 -11
  30. data/lib/ronin/database/migrations/create_host_name_ip_addresses_table.rb +14 -9
  31. data/lib/ronin/database/migrations/create_ip_address_mac_addresses_table.rb +14 -9
  32. data/lib/ronin/database/migrations/create_licenses_table.rb +6 -7
  33. data/lib/ronin/database/migrations/create_open_ports_table.rb +11 -7
  34. data/lib/ronin/database/migrations/create_organizations_table.rb +8 -7
  35. data/lib/ronin/database/migrations/create_os_guesses_table.rb +13 -9
  36. data/lib/ronin/database/migrations/create_os_table.rb +6 -7
  37. data/lib/ronin/database/migrations/create_passwords_table.rb +6 -7
  38. data/lib/ronin/database/migrations/create_ports_table.rb +6 -7
  39. data/lib/ronin/database/migrations/create_proxies_table.rb +6 -7
  40. data/lib/ronin/database/migrations/create_remote_files_table.rb +6 -7
  41. data/lib/ronin/database/migrations/create_repositories_table.rb +6 -7
  42. data/lib/ronin/database/migrations/create_services_table.rb +6 -8
  43. data/lib/ronin/database/migrations/create_softwares_table.rb +6 -7
  44. data/lib/ronin/database/migrations/create_taggings_table.rb +6 -7
  45. data/lib/ronin/database/migrations/create_tags_table.rb +6 -7
  46. data/lib/ronin/database/migrations/create_targets_table.rb +7 -8
  47. data/lib/ronin/database/migrations/create_url_query_params_table.rb +6 -7
  48. data/lib/ronin/database/migrations/create_url_schemes_table.rb +6 -7
  49. data/lib/ronin/database/migrations/create_urls_table.rb +16 -9
  50. data/lib/ronin/database/migrations/create_user_names_table.rb +6 -7
  51. data/lib/ronin/database/migrations/create_vendors_table.rb +6 -7
  52. data/lib/ronin/database/migrations/exceptions.rb +6 -7
  53. data/lib/ronin/database/migrations/exceptions/duplicate_migration.rb +6 -7
  54. data/lib/ronin/database/migrations/exceptions/unknown_migration.rb +6 -7
  55. data/lib/ronin/database/migrations/graph.rb +19 -0
  56. data/lib/ronin/database/migrations/migration.rb +6 -7
  57. data/lib/ronin/database/migrations/migrations.rb +6 -7
  58. data/lib/ronin/email_address.rb +34 -13
  59. data/lib/ronin/engine.rb +6 -7
  60. data/lib/ronin/engine/buildable.rb +6 -7
  61. data/lib/ronin/engine/class_methods.rb +6 -7
  62. data/lib/ronin/engine/deployable.rb +6 -7
  63. data/lib/ronin/engine/engine.rb +6 -7
  64. data/lib/ronin/engine/exceptions.rb +6 -7
  65. data/lib/ronin/engine/exceptions/deploy_failed.rb +6 -7
  66. data/lib/ronin/engine/exceptions/not_built.rb +6 -7
  67. data/lib/ronin/engine/exceptions/verification_failed.rb +6 -7
  68. data/lib/ronin/engine/instance_methods.rb +6 -7
  69. data/lib/ronin/engine/verifiable.rb +6 -7
  70. data/lib/ronin/environment.rb +11 -7
  71. data/lib/ronin/exceptions.rb +6 -7
  72. data/lib/ronin/exceptions/duplicate_repository.rb +6 -7
  73. data/lib/ronin/exceptions/repository_not_found.rb +6 -7
  74. data/lib/ronin/host_name.rb +40 -22
  75. data/lib/ronin/host_name_ip_address.rb +11 -9
  76. data/lib/ronin/installation.rb +6 -7
  77. data/lib/ronin/ip_address.rb +41 -33
  78. data/lib/ronin/ip_address_mac_address.rb +11 -9
  79. data/lib/ronin/license.rb +6 -7
  80. data/lib/ronin/mac_address.rb +8 -13
  81. data/lib/ronin/model.rb +6 -7
  82. data/lib/ronin/model/cacheable.rb +6 -7
  83. data/lib/ronin/model/cacheable/cacheable.rb +6 -7
  84. data/lib/ronin/model/cacheable/class_methods.rb +6 -7
  85. data/lib/ronin/model/class_methods.rb +6 -7
  86. data/lib/ronin/model/has_authors.rb +6 -7
  87. data/lib/ronin/model/has_authors/class_methods.rb +8 -9
  88. data/lib/ronin/model/has_authors/has_authors.rb +6 -7
  89. data/lib/ronin/model/has_description.rb +6 -7
  90. data/lib/ronin/model/has_description/class_methods.rb +7 -8
  91. data/lib/ronin/model/has_description/has_description.rb +6 -7
  92. data/lib/ronin/model/has_license.rb +6 -7
  93. data/lib/ronin/model/has_license/class_methods.rb +7 -8
  94. data/lib/ronin/model/has_license/has_license.rb +6 -7
  95. data/lib/ronin/model/has_name.rb +6 -7
  96. data/lib/ronin/model/has_name/class_methods.rb +7 -12
  97. data/lib/ronin/model/has_name/has_name.rb +6 -7
  98. data/lib/ronin/model/has_title.rb +6 -7
  99. data/lib/ronin/model/has_title/class_methods.rb +7 -8
  100. data/lib/ronin/model/has_title/has_title.rb +6 -7
  101. data/lib/ronin/model/has_unique_name.rb +18 -7
  102. data/lib/ronin/model/has_version.rb +6 -7
  103. data/lib/ronin/model/has_version/class_methods.rb +7 -8
  104. data/lib/ronin/model/has_version/has_version.rb +6 -7
  105. data/lib/ronin/model/model.rb +6 -7
  106. data/lib/ronin/model/types.rb +6 -7
  107. data/lib/ronin/model/types/description.rb +6 -7
  108. data/lib/ronin/network/mixins.rb +11 -13
  109. data/lib/ronin/network/mixins/esmtp.rb +11 -13
  110. data/lib/ronin/network/mixins/http.rb +11 -13
  111. data/lib/ronin/network/mixins/imap.rb +11 -13
  112. data/lib/ronin/network/mixins/pop3.rb +11 -13
  113. data/lib/ronin/network/mixins/smtp.rb +11 -13
  114. data/lib/ronin/network/mixins/tcp.rb +11 -13
  115. data/lib/ronin/network/mixins/telnet.rb +11 -13
  116. data/lib/ronin/network/mixins/udp.rb +11 -13
  117. data/lib/ronin/open_port.rb +11 -11
  118. data/lib/ronin/organization.rb +8 -9
  119. data/lib/ronin/os.rb +6 -7
  120. data/lib/ronin/os_guess.rb +14 -12
  121. data/lib/ronin/password.rb +18 -7
  122. data/lib/ronin/port.rb +18 -7
  123. data/lib/ronin/proxy.rb +6 -7
  124. data/lib/ronin/proxy_credential.rb +6 -7
  125. data/lib/ronin/remote_file.rb +13 -11
  126. data/lib/ronin/repository.rb +8 -12
  127. data/lib/ronin/ronin.rb +6 -7
  128. data/lib/ronin/service.rb +8 -23
  129. data/lib/ronin/service_credential.rb +6 -7
  130. data/lib/ronin/software.rb +6 -7
  131. data/lib/ronin/spec/database.rb +6 -7
  132. data/lib/ronin/spec/ui/output.rb +6 -7
  133. data/lib/ronin/target.rb +11 -9
  134. data/lib/ronin/tcp_port.rb +6 -7
  135. data/lib/ronin/udp_port.rb +6 -7
  136. data/lib/ronin/ui.rb +6 -7
  137. data/lib/ronin/ui/cli.rb +6 -7
  138. data/lib/ronin/ui/cli/cli.rb +6 -7
  139. data/lib/ronin/ui/cli/command.rb +6 -7
  140. data/lib/ronin/ui/cli/commands.rb +6 -7
  141. data/lib/ronin/ui/cli/commands/campaigns.rb +6 -7
  142. data/lib/ronin/ui/cli/commands/console.rb +7 -8
  143. data/lib/ronin/ui/cli/commands/creds.rb +6 -7
  144. data/lib/ronin/ui/cli/commands/database.rb +6 -7
  145. data/lib/ronin/ui/cli/commands/emails.rb +6 -7
  146. data/lib/ronin/ui/cli/commands/exec.rb +6 -7
  147. data/lib/ronin/ui/cli/commands/help.rb +6 -7
  148. data/lib/ronin/ui/cli/commands/hosts.rb +10 -9
  149. data/lib/ronin/ui/cli/commands/ips.rb +10 -9
  150. data/lib/ronin/ui/cli/commands/repos.rb +6 -7
  151. data/lib/ronin/ui/cli/commands/urls.rb +6 -7
  152. data/lib/ronin/ui/cli/engine_command.rb +6 -7
  153. data/lib/ronin/ui/cli/exceptions.rb +6 -7
  154. data/lib/ronin/ui/cli/exceptions/unknown_command.rb +6 -7
  155. data/lib/ronin/ui/cli/model_command.rb +6 -7
  156. data/lib/ronin/ui/console.rb +8 -12
  157. data/lib/ronin/ui/hexdump.rb +6 -7
  158. data/lib/ronin/ui/hexdump/extensions.rb +6 -7
  159. data/lib/ronin/ui/hexdump/extensions/file.rb +6 -7
  160. data/lib/ronin/ui/hexdump/extensions/kernel.rb +6 -7
  161. data/lib/ronin/ui/hexdump/hexdump.rb +13 -7
  162. data/lib/ronin/ui/output.rb +6 -7
  163. data/lib/ronin/ui/output/helpers.rb +6 -7
  164. data/lib/ronin/ui/output/output.rb +6 -7
  165. data/lib/ronin/ui/output/terminal.rb +6 -7
  166. data/lib/ronin/ui/output/terminal/color.rb +6 -7
  167. data/lib/ronin/ui/output/terminal/raw.rb +6 -7
  168. data/lib/ronin/ui/shell.rb +6 -7
  169. data/lib/ronin/url.rb +123 -30
  170. data/lib/ronin/url_query_param.rb +32 -7
  171. data/lib/ronin/url_scheme.rb +6 -7
  172. data/lib/ronin/user_name.rb +6 -7
  173. data/lib/ronin/vendor.rb +6 -7
  174. data/lib/ronin/version.rb +7 -8
  175. data/lib/ronin/web_credential.rb +52 -8
  176. data/spec/arch_spec.rb +7 -0
  177. data/spec/author_spec.rb +1 -1
  178. data/spec/campaign_spec.rb +1 -1
  179. data/spec/credential_spec.rb +33 -0
  180. data/spec/database_spec.rb +23 -0
  181. data/spec/email_address_spec.rb +15 -0
  182. data/spec/engine/buildable_spec.rb +2 -2
  183. data/spec/engine/deployable_spec.rb +2 -2
  184. data/spec/host_name_spec.rb +20 -0
  185. data/spec/ip_address.rb +20 -3
  186. data/spec/model/cacheable_spec.rb +1 -1
  187. data/spec/model/has_description_spec.rb +1 -1
  188. data/spec/os_spec.rb +26 -0
  189. data/spec/password_spec.rb +4 -0
  190. data/spec/port_spec.rb +43 -0
  191. data/spec/repository_spec.rb +10 -10
  192. data/spec/service_spec.rb +18 -0
  193. data/spec/software_spec.rb +15 -5
  194. data/spec/url_query_param_spec.rb +30 -0
  195. data/spec/url_scheme_spec.rb +18 -0
  196. data/spec/url_spec.rb +54 -37
  197. metadata +18 -9
  198. data/lib/ronin/ui/async_console.rb +0 -130
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2009-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/user_name'
@@ -78,6 +77,18 @@ module Ronin
78
77
  self.user_name.name if self.user_name
79
78
  end
80
79
 
80
+ #
81
+ # The clear-text password of the credential.
82
+ #
83
+ # @return [String]
84
+ # The clear-text password.
85
+ #
86
+ # @since 1.0.0
87
+ #
88
+ def clear_text
89
+ self.password.clear_text if self.password
90
+ end
91
+
81
92
  #
82
93
  # Converts the credentials to a String.
83
94
  #
@@ -107,7 +118,7 @@ module Ronin
107
118
  # @since 1.0.0
108
119
  #
109
120
  def to_ary
110
- [self.user.name, self.password.clear_text]
121
+ [self.user_name.name, self.password.clear_text]
111
122
  end
112
123
 
113
124
  end
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/database'
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/exceptions/invalid_config'
@@ -275,12 +274,12 @@ module Ronin
275
274
  #
276
275
  # @since 1.0.0
277
276
  #
278
- def Database.map(&block)
277
+ def Database.map
279
278
  results = []
280
279
 
281
280
  Database.repositories.each_key do |name|
282
281
  DataMapper.repository(name) do
283
- result = block.call()
282
+ result = yield
284
283
  results << result unless result.nil?
285
284
  end
286
285
  end
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/exceptions/invalid_config'
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  module Ronin
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  module Ronin
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/migrations/migrations'
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/migrations/create_organizations_table'
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/migrations/migrations'
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/migrations/migrations'
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/migrations/create_repositories_table'
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/migrations/migrations'
@@ -31,6 +30,8 @@ module Ronin
31
30
  column :description, Text, :not_null => true
32
31
  column :created_at, Time
33
32
  end
33
+
34
+ create_index :ronin_campaigns, :name, :unique => true
34
35
  end
35
36
 
36
37
  down do
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/migrations/migrations'
@@ -1,21 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin.
5
5
  #
6
- # This program is free software; you can redistribute it and/or modify
6
+ # Ronin is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU General Public License as published by
8
- # the Free Software Foundation; either version 2 of the License, or
8
+ # the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # This program is distributed in the hope that it will be useful,
11
+ # Ronin is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU General Public License
17
- # along with this program; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ # along with Ronin. If not, see <http://www.gnu.org/licenses/>.
19
18
  #
20
19
 
21
20
  require 'ronin/database/migrations/create_user_names_table'
@@ -40,14 +39,21 @@ module Ronin
40
39
  ) do
41
40
  up do
42
41
  create_table :ronin_credentials do
43
- column :id, Integer, :serial => true
44
- column :user_name_id, Integer, :not_null => true, :key => true
45
- column :password_id, Integer, :not_null => true, :key => true
42
+ column :id, Serial
43
+ column :user_name_id, Integer, :not_null => true
44
+ column :password_id, Integer, :not_null => true
46
45
 
47
46
  column :open_port_id, Integer
47
+ column :email_address_id, Integer
48
48
  column :url_id, Integer
49
49
  column :proxy_id, Integer
50
50
  end
51
+
52
+ create_index :ronin_credentials,
53
+ :user_name_id, :password_id,
54
+ :open_port_id, :email_address_id, :url_id, :proxy_id,
55
+ :name => :unique_index_ronin_credentials,
56
+ :unique => true
51
57
  end
52
58
 
53
59
  down do