ronin-exploits 0.3.1 → 1.0.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (338) hide show
  1. checksums.yaml +7 -0
  2. data/.document +4 -0
  3. data/.editorconfig +11 -0
  4. data/.github/workflows/ruby.yml +31 -0
  5. data/.gitignore +13 -0
  6. data/.mailmap +1 -0
  7. data/.rspec +1 -0
  8. data/.ruby-version +1 -0
  9. data/.yardopts +1 -0
  10. data/COPYING.txt +161 -335
  11. data/{History.txt → ChangeLog.md} +119 -16
  12. data/Gemfile +50 -0
  13. data/README.md +454 -0
  14. data/Rakefile +37 -23
  15. data/bin/ronin-exploits +13 -6
  16. data/data/new/exploit.rb.erb +158 -0
  17. data/gemspec.yml +44 -0
  18. data/lib/ronin/exploits/advisory.rb +84 -0
  19. data/lib/ronin/exploits/cli/command.rb +39 -0
  20. data/lib/ronin/exploits/cli/commands/irb.rb +57 -0
  21. data/lib/ronin/exploits/cli/commands/list.rb +80 -0
  22. data/lib/ronin/exploits/cli/commands/new.rb +332 -0
  23. data/lib/ronin/exploits/cli/commands/run.rb +396 -0
  24. data/lib/ronin/exploits/cli/commands/show.rb +290 -0
  25. data/lib/ronin/exploits/cli/exploit_command.rb +114 -0
  26. data/lib/ronin/exploits/cli/exploit_methods.rb +114 -0
  27. data/lib/ronin/exploits/cli/ruby_shell.rb +51 -0
  28. data/lib/ronin/exploits/cli.rb +51 -0
  29. data/lib/ronin/exploits/client_side_web_vuln.rb +69 -0
  30. data/lib/ronin/exploits/exceptions.rb +27 -17
  31. data/lib/ronin/exploits/exploit.rb +501 -582
  32. data/lib/ronin/exploits/heap_overflow.rb +50 -0
  33. data/lib/ronin/exploits/lfi.rb +141 -0
  34. data/lib/ronin/exploits/loot/file.rb +113 -0
  35. data/lib/ronin/exploits/loot.rb +119 -0
  36. data/lib/ronin/exploits/memory_corruption.rb +53 -0
  37. data/lib/ronin/exploits/metadata/arch.rb +83 -0
  38. data/lib/ronin/exploits/metadata/cookie_param.rb +80 -0
  39. data/lib/ronin/exploits/metadata/default_filename.rb +69 -0
  40. data/lib/ronin/exploits/metadata/default_port.rb +69 -0
  41. data/lib/ronin/exploits/metadata/header_name.rb +80 -0
  42. data/lib/ronin/exploits/metadata/os.rb +117 -0
  43. data/lib/ronin/exploits/metadata/shouts.rb +85 -0
  44. data/lib/ronin/exploits/metadata/url_path.rb +82 -0
  45. data/lib/ronin/exploits/metadata/url_query_param.rb +80 -0
  46. data/lib/ronin/exploits/mixins/binary.rb +106 -0
  47. data/lib/ronin/exploits/mixins/build_dir.rb +61 -0
  48. data/lib/ronin/exploits/mixins/file_builder.rb +102 -0
  49. data/lib/ronin/exploits/mixins/format_string.rb +87 -0
  50. data/lib/ronin/exploits/mixins/has_payload.rb +202 -0
  51. data/lib/ronin/exploits/mixins/has_targets.rb +297 -0
  52. data/lib/ronin/exploits/mixins/html.rb +213 -0
  53. data/lib/ronin/exploits/mixins/http.rb +866 -0
  54. data/lib/ronin/exploits/mixins/loot.rb +84 -0
  55. data/lib/ronin/exploits/mixins/nops.rb +121 -0
  56. data/lib/ronin/exploits/mixins/remote_tcp.rb +272 -0
  57. data/lib/ronin/exploits/mixins/remote_udp.rb +264 -0
  58. data/lib/ronin/exploits/mixins/seh.rb +136 -0
  59. data/lib/ronin/exploits/mixins/stack_overflow.rb +124 -0
  60. data/lib/ronin/exploits/mixins/text.rb +65 -0
  61. data/lib/ronin/exploits/mixins.rb +32 -0
  62. data/lib/ronin/exploits/open_redirect.rb +103 -0
  63. data/lib/ronin/exploits/params/base_url.rb +84 -0
  64. data/lib/ronin/exploits/params/bind_host.rb +53 -0
  65. data/lib/ronin/exploits/params/bind_port.rb +53 -0
  66. data/lib/ronin/exploits/params/filename.rb +71 -0
  67. data/lib/ronin/exploits/params/host.rb +56 -0
  68. data/lib/ronin/exploits/params/port.rb +71 -0
  69. data/lib/ronin/exploits/registry.rb +32 -0
  70. data/lib/ronin/exploits/rfi.rb +106 -0
  71. data/lib/ronin/exploits/root.rb +28 -0
  72. data/lib/ronin/exploits/seh_overflow.rb +90 -0
  73. data/lib/ronin/exploits/sqli.rb +172 -0
  74. data/lib/ronin/exploits/ssti.rb +108 -0
  75. data/lib/ronin/exploits/stack_overflow.rb +90 -0
  76. data/lib/ronin/exploits/target.rb +63 -103
  77. data/lib/ronin/exploits/test_result.rb +80 -0
  78. data/lib/ronin/exploits/use_after_free.rb +50 -0
  79. data/lib/ronin/exploits/version.rb +11 -12
  80. data/lib/ronin/exploits/web.rb +18 -89
  81. data/lib/ronin/exploits/web_vuln.rb +378 -0
  82. data/lib/ronin/exploits/xss.rb +102 -0
  83. data/lib/ronin/exploits.rb +19 -26
  84. data/man/ronin-exploits-irb.1 +31 -0
  85. data/man/ronin-exploits-irb.1.md +22 -0
  86. data/man/ronin-exploits-list.1 +37 -0
  87. data/man/ronin-exploits-list.1.md +27 -0
  88. data/man/ronin-exploits-new.1 +98 -0
  89. data/man/ronin-exploits-new.1.md +73 -0
  90. data/man/ronin-exploits-run.1 +117 -0
  91. data/man/ronin-exploits-run.1.md +87 -0
  92. data/man/ronin-exploits-show.1 +45 -0
  93. data/man/ronin-exploits-show.1.md +33 -0
  94. data/man/ronin-exploits.1 +55 -0
  95. data/man/ronin-exploits.1.md +41 -0
  96. data/ronin-exploits.gemspec +62 -0
  97. data/spec/advisory_spec.rb +71 -0
  98. data/spec/cli/exploit_command_spec.rb +68 -0
  99. data/spec/cli/exploit_methods_spec.rb +208 -0
  100. data/spec/cli/ruby_shell_spec.rb +14 -0
  101. data/spec/client_side_web_vuln_spec.rb +117 -0
  102. data/spec/exploit_spec.rb +538 -0
  103. data/spec/exploits_spec.rb +3 -4
  104. data/spec/heap_overflow_spec.rb +14 -0
  105. data/spec/lfi_spec.rb +162 -0
  106. data/spec/loot/file_spec.rb +131 -0
  107. data/spec/loot_spec.rb +138 -0
  108. data/spec/memory_corruption_spec.rb +22 -0
  109. data/spec/metadata/arch_spec.rb +82 -0
  110. data/spec/metadata/cookie_param_spec.rb +67 -0
  111. data/spec/metadata/default_filename_spec.rb +62 -0
  112. data/spec/metadata/default_port_spec.rb +62 -0
  113. data/spec/metadata/header_name_spec.rb +67 -0
  114. data/spec/metadata/os_spec.rb +164 -0
  115. data/spec/metadata/shouts_spec.rb +100 -0
  116. data/spec/metadata/url_path_spec.rb +67 -0
  117. data/spec/metadata/url_query_param_spec.rb +67 -0
  118. data/spec/mixins/binary_spec.rb +129 -0
  119. data/spec/mixins/build_dir.rb +66 -0
  120. data/spec/mixins/file_builder_spec.rb +67 -0
  121. data/spec/mixins/format_string_spec.rb +44 -0
  122. data/spec/mixins/has_payload_spec.rb +333 -0
  123. data/spec/mixins/has_targets_spec.rb +434 -0
  124. data/spec/mixins/html_spec.rb +772 -0
  125. data/spec/mixins/http_spec.rb +1227 -0
  126. data/spec/mixins/loot_spec.rb +20 -0
  127. data/spec/mixins/nops_spec.rb +165 -0
  128. data/spec/mixins/remote_tcp_spec.rb +217 -0
  129. data/spec/mixins/remote_udp_spec.rb +217 -0
  130. data/spec/mixins/seh_spec.rb +89 -0
  131. data/spec/mixins/stack_overflow_spec.rb +87 -0
  132. data/spec/mixins/text_spec.rb +43 -0
  133. data/spec/open_redirect_spec.rb +71 -0
  134. data/spec/params/base_url_spec.rb +71 -0
  135. data/spec/params/bind_host_spec.rb +34 -0
  136. data/spec/params/bind_port_spec.rb +35 -0
  137. data/spec/params/filename_spec.rb +77 -0
  138. data/spec/params/host_spec.rb +34 -0
  139. data/spec/params/port_spec.rb +77 -0
  140. data/spec/rfi_spec.rb +107 -0
  141. data/spec/seh_overflow_spec.rb +18 -0
  142. data/spec/spec_helper.rb +6 -10
  143. data/spec/sqli_spec.rb +306 -0
  144. data/spec/ssti_spec.rb +121 -0
  145. data/spec/stack_overflow_spec.rb +18 -0
  146. data/spec/target_spec.rb +92 -0
  147. data/spec/test_result_spec.rb +32 -0
  148. data/spec/use_after_free_spec.rb +14 -0
  149. data/spec/web_spec.rb +12 -0
  150. data/spec/web_vuln_spec.rb +854 -0
  151. data/spec/xss_spec.rb +69 -0
  152. metadata +361 -324
  153. data/Manifest.txt +0 -196
  154. data/README.txt +0 -274
  155. data/bin/ronin-exploit +0 -12
  156. data/bin/ronin-gen-binary-payload +0 -12
  157. data/bin/ronin-gen-exploit +0 -12
  158. data/bin/ronin-gen-ftp-exploit +0 -12
  159. data/bin/ronin-gen-http-exploit +0 -12
  160. data/bin/ronin-gen-local-exploit +0 -12
  161. data/bin/ronin-gen-nops +0 -12
  162. data/bin/ronin-gen-payload +0 -12
  163. data/bin/ronin-gen-remote-exploit +0 -12
  164. data/bin/ronin-gen-remote-tcp-exploit +0 -12
  165. data/bin/ronin-gen-remote-udp-exploit +0 -12
  166. data/bin/ronin-gen-shellcode +0 -12
  167. data/bin/ronin-gen-web-exploit +0 -12
  168. data/bin/ronin-payload +0 -12
  169. data/bin/ronin-payloads +0 -12
  170. data/lib/ronin/controls/behaviors.rb +0 -133
  171. data/lib/ronin/controls/exceptions/not_implemented.rb +0 -27
  172. data/lib/ronin/controls/exceptions/program_not_found.rb +0 -27
  173. data/lib/ronin/controls/exceptions.rb +0 -23
  174. data/lib/ronin/controls/file_system.rb +0 -145
  175. data/lib/ronin/controls/helpers/command_exec.rb +0 -143
  176. data/lib/ronin/controls/helpers/dir_create.rb +0 -42
  177. data/lib/ronin/controls/helpers/dir_listing.rb +0 -62
  178. data/lib/ronin/controls/helpers/dir_remove.rb +0 -42
  179. data/lib/ronin/controls/helpers/file_ctime.rb +0 -52
  180. data/lib/ronin/controls/helpers/file_mtime.rb +0 -53
  181. data/lib/ronin/controls/helpers/file_ownership.rb +0 -53
  182. data/lib/ronin/controls/helpers/file_read.rb +0 -62
  183. data/lib/ronin/controls/helpers/file_remove.rb +0 -51
  184. data/lib/ronin/controls/helpers/file_write.rb +0 -62
  185. data/lib/ronin/controls/helpers/memory_read.rb +0 -39
  186. data/lib/ronin/controls/helpers/memory_write.rb +0 -39
  187. data/lib/ronin/controls/helpers.rb +0 -33
  188. data/lib/ronin/controls.rb +0 -23
  189. data/lib/ronin/exploits/control.rb +0 -47
  190. data/lib/ronin/exploits/exceptions/exception.rb +0 -27
  191. data/lib/ronin/exploits/exceptions/exploit_not_built.rb +0 -29
  192. data/lib/ronin/exploits/exceptions/payload_size.rb +0 -29
  193. data/lib/ronin/exploits/exceptions/restricted_char.rb +0 -29
  194. data/lib/ronin/exploits/exceptions/target_data_missing.rb +0 -29
  195. data/lib/ronin/exploits/exceptions/target_unspecified.rb +0 -29
  196. data/lib/ronin/exploits/exceptions/unknown_helper.rb +0 -29
  197. data/lib/ronin/exploits/exploit_author.rb +0 -33
  198. data/lib/ronin/exploits/ftp.rb +0 -42
  199. data/lib/ronin/exploits/helpers/binary.rb +0 -50
  200. data/lib/ronin/exploits/helpers/buffer_overflow.rb +0 -115
  201. data/lib/ronin/exploits/helpers/file_based.rb +0 -112
  202. data/lib/ronin/exploits/helpers/format_string.rb +0 -117
  203. data/lib/ronin/exploits/helpers/padding.rb +0 -101
  204. data/lib/ronin/exploits/helpers.rb +0 -26
  205. data/lib/ronin/exploits/http.rb +0 -49
  206. data/lib/ronin/exploits/local.rb +0 -40
  207. data/lib/ronin/exploits/remote.rb +0 -40
  208. data/lib/ronin/exploits/remote_tcp.rb +0 -87
  209. data/lib/ronin/exploits/remote_udp.rb +0 -87
  210. data/lib/ronin/exploits/targets/buffer_overflow.rb +0 -46
  211. data/lib/ronin/exploits/targets/format_string.rb +0 -43
  212. data/lib/ronin/exploits/targets.rb +0 -27
  213. data/lib/ronin/exploits/verifiers.rb +0 -121
  214. data/lib/ronin/generators/exploits/exploit.rb +0 -70
  215. data/lib/ronin/generators/exploits/ftp.rb +0 -42
  216. data/lib/ronin/generators/exploits/http.rb +0 -42
  217. data/lib/ronin/generators/exploits/local.rb +0 -42
  218. data/lib/ronin/generators/exploits/remote.rb +0 -42
  219. data/lib/ronin/generators/exploits/remote_tcp.rb +0 -44
  220. data/lib/ronin/generators/exploits/remote_udp.rb +0 -44
  221. data/lib/ronin/generators/exploits/static.rb +0 -30
  222. data/lib/ronin/generators/exploits/web.rb +0 -45
  223. data/lib/ronin/generators/exploits.rb +0 -23
  224. data/lib/ronin/generators/payloads/binary_payload.rb +0 -42
  225. data/lib/ronin/generators/payloads/nops.rb +0 -42
  226. data/lib/ronin/generators/payloads/payload.rb +0 -66
  227. data/lib/ronin/generators/payloads/shellcode.rb +0 -42
  228. data/lib/ronin/generators/payloads/static.rb +0 -30
  229. data/lib/ronin/generators/payloads.rb +0 -23
  230. data/lib/ronin/model/has_default_port.rb +0 -54
  231. data/lib/ronin/model/targets_arch.rb +0 -68
  232. data/lib/ronin/model/targets_os.rb +0 -69
  233. data/lib/ronin/model/targets_product.rb +0 -68
  234. data/lib/ronin/payloads/asm_payload.rb +0 -40
  235. data/lib/ronin/payloads/binary_payload.rb +0 -42
  236. data/lib/ronin/payloads/control.rb +0 -47
  237. data/lib/ronin/payloads/encoders/encoder.rb +0 -92
  238. data/lib/ronin/payloads/encoders/xor.rb +0 -79
  239. data/lib/ronin/payloads/encoders.rb +0 -32
  240. data/lib/ronin/payloads/exceptions/exception.rb +0 -27
  241. data/lib/ronin/payloads/exceptions/not_implemented.rb +0 -29
  242. data/lib/ronin/payloads/exceptions/unknown_helper.rb +0 -29
  243. data/lib/ronin/payloads/exceptions.rb +0 -23
  244. data/lib/ronin/payloads/has_payload.rb +0 -111
  245. data/lib/ronin/payloads/helpers/chained.rb +0 -61
  246. data/lib/ronin/payloads/helpers/rpc.rb +0 -93
  247. data/lib/ronin/payloads/helpers.rb +0 -23
  248. data/lib/ronin/payloads/nops.rb +0 -39
  249. data/lib/ronin/payloads/payload.rb +0 -350
  250. data/lib/ronin/payloads/payload_author.rb +0 -33
  251. data/lib/ronin/payloads/shellcode.rb +0 -40
  252. data/lib/ronin/payloads/web_payload.rb +0 -41
  253. data/lib/ronin/payloads.rb +0 -36
  254. data/lib/ronin/ui/command_line/commands/exploit.rb +0 -193
  255. data/lib/ronin/ui/command_line/commands/exploits.rb +0 -154
  256. data/lib/ronin/ui/command_line/commands/gen_binary_payload.rb +0 -34
  257. data/lib/ronin/ui/command_line/commands/gen_exploit.rb +0 -34
  258. data/lib/ronin/ui/command_line/commands/gen_ftp_exploit.rb +0 -34
  259. data/lib/ronin/ui/command_line/commands/gen_http_exploit.rb +0 -34
  260. data/lib/ronin/ui/command_line/commands/gen_local_exploit.rb +0 -34
  261. data/lib/ronin/ui/command_line/commands/gen_nops.rb +0 -34
  262. data/lib/ronin/ui/command_line/commands/gen_payload.rb +0 -34
  263. data/lib/ronin/ui/command_line/commands/gen_remote_exploit.rb +0 -34
  264. data/lib/ronin/ui/command_line/commands/gen_remote_tcp_exploit.rb +0 -34
  265. data/lib/ronin/ui/command_line/commands/gen_remote_udp_exploit.rb +0 -34
  266. data/lib/ronin/ui/command_line/commands/gen_shellcode.rb +0 -34
  267. data/lib/ronin/ui/command_line/commands/gen_web_exploit.rb +0 -34
  268. data/lib/ronin/ui/command_line/commands/payload.rb +0 -129
  269. data/lib/ronin/ui/command_line/commands/payloads.rb +0 -128
  270. data/lib/ronin/vuln/behavior.rb +0 -165
  271. data/spec/controls/behaviors_examples.rb +0 -38
  272. data/spec/exploits/binary_exploit_spec.rb +0 -44
  273. data/spec/exploits/buffer_overflow_exploit_spec.rb +0 -70
  274. data/spec/exploits/exploit_spec.rb +0 -313
  275. data/spec/exploits/file_based_exploit_spec.rb +0 -48
  276. data/spec/exploits/format_string_exploit_spec.rb +0 -32
  277. data/spec/exploits/ftp_spec.rb +0 -13
  278. data/spec/exploits/http_spec.rb +0 -17
  279. data/spec/exploits/padding_exploit_spec.rb +0 -44
  280. data/spec/exploits/remote_tcp_spec.rb +0 -28
  281. data/spec/exploits/remote_udp_spec.rb +0 -28
  282. data/spec/exploits/target_spec.rb +0 -98
  283. data/spec/exploits/targets/buffer_overflow_spec.rb +0 -22
  284. data/spec/exploits/web_spec.rb +0 -35
  285. data/spec/generators/exploits/exploit_examples.rb +0 -24
  286. data/spec/generators/exploits/exploit_spec.rb +0 -42
  287. data/spec/generators/exploits/ftp_spec.rb +0 -42
  288. data/spec/generators/exploits/http_spec.rb +0 -42
  289. data/spec/generators/exploits/local_spec.rb +0 -42
  290. data/spec/generators/exploits/remote_spec.rb +0 -42
  291. data/spec/generators/exploits/remote_tcp_spec.rb +0 -47
  292. data/spec/generators/exploits/remote_udp_spec.rb +0 -47
  293. data/spec/generators/exploits/web_spec.rb +0 -52
  294. data/spec/generators/payloads/binary_payload_spec.rb +0 -31
  295. data/spec/generators/payloads/nops_spec.rb +0 -31
  296. data/spec/generators/payloads/payload_examples.rb +0 -16
  297. data/spec/generators/payloads/payload_spec.rb +0 -31
  298. data/spec/generators/payloads/shellcode_spec.rb +0 -31
  299. data/spec/helpers/database.rb +0 -5
  300. data/spec/helpers/objects.rb +0 -22
  301. data/spec/model/has_default_port_spec.rb +0 -27
  302. data/spec/model/models/default_port_model.rb +0 -13
  303. data/spec/model/models/non_default_port_model.rb +0 -11
  304. data/spec/model/models/targets_arch_model.rb +0 -11
  305. data/spec/model/models/targets_os_model.rb +0 -11
  306. data/spec/model/models/targets_product_model.rb +0 -11
  307. data/spec/model/targets_arch_spec.rb +0 -32
  308. data/spec/model/targets_os_spec.rb +0 -33
  309. data/spec/model/targets_product_spec.rb +0 -35
  310. data/spec/objects/exploits/example.rb +0 -25
  311. data/spec/objects/exploits/simple.rb +0 -24
  312. data/spec/objects/payloads/simple.rb +0 -19
  313. data/spec/payloads/encoders/encoder_spec.rb +0 -30
  314. data/spec/payloads/encoders/xor_spec.rb +0 -20
  315. data/spec/payloads/payload_spec.rb +0 -156
  316. data/spec/vuln/behavior_spec.rb +0 -15
  317. data/static/ronin/generators/exploits/_cache.erb +0 -14
  318. data/static/ronin/generators/exploits/_header.erb +0 -1
  319. data/static/ronin/generators/exploits/_helpers.erb +0 -4
  320. data/static/ronin/generators/exploits/exploit.erb +0 -24
  321. data/static/ronin/generators/exploits/ftp.erb +0 -24
  322. data/static/ronin/generators/exploits/http.erb +0 -26
  323. data/static/ronin/generators/exploits/local.erb +0 -24
  324. data/static/ronin/generators/exploits/remote.erb +0 -24
  325. data/static/ronin/generators/exploits/remote_tcp.erb +0 -26
  326. data/static/ronin/generators/exploits/remote_udp.erb +0 -26
  327. data/static/ronin/generators/exploits/web.erb +0 -28
  328. data/static/ronin/generators/payloads/_cache.erb +0 -10
  329. data/static/ronin/generators/payloads/_header.erb +0 -1
  330. data/static/ronin/generators/payloads/_helpers.erb +0 -2
  331. data/static/ronin/generators/payloads/binary_payload.erb +0 -25
  332. data/static/ronin/generators/payloads/nops.erb +0 -19
  333. data/static/ronin/generators/payloads/payload.erb +0 -25
  334. data/static/ronin/generators/payloads/shellcode.erb +0 -25
  335. data/tasks/spec.rb +0 -10
  336. data/tasks/yard.rb +0 -13
  337. data.tar.gz.sig +0 -0
  338. metadata.gz.sig +0 -0
@@ -0,0 +1,20 @@
1
+ require 'ronin/exploits/mixins/loot'
2
+
3
+ require 'ronin/exploits/exploit'
4
+
5
+ describe Ronin::Exploits::Mixins::Loot do
6
+ module TestLootMixin
7
+ class TestExploit < Ronin::Exploits::Exploit
8
+ include Ronin::Exploits::Mixins::Loot
9
+ end
10
+ end
11
+
12
+ let(:exploit_class) { TestLootMixin::TestExploit }
13
+ subject { exploit_class.new }
14
+
15
+ describe "#initialize" do
16
+ it "must initialize #loot to a Ronin::Exploits::Loot object" do
17
+ expect(subject.loot).to be_kind_of(Ronin::Exploits::Loot)
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,165 @@
1
+ require 'spec_helper'
2
+ require 'ronin/exploits/mixins/nops'
3
+
4
+ require 'ronin/exploits/exploit'
5
+ require 'ronin/exploits/metadata/arch'
6
+
7
+ describe Ronin::Exploits::Mixins::NOPS do
8
+ describe "NOPS" do
9
+ subject { described_class::NOPS }
10
+
11
+ describe ":x86" do
12
+ subject { super()[:x86] }
13
+
14
+ it "must return \"\\x90\"" do
15
+ expect(subject).to eq("\x90".b)
16
+ end
17
+ end
18
+
19
+ describe ":x86_64" do
20
+ subject { super()[:x86_64] }
21
+
22
+ it "must return \"\\x90\"" do
23
+ expect(subject).to eq("\x90".b)
24
+ end
25
+ end
26
+
27
+ describe ":arm" do
28
+ subject { super()[:arm] }
29
+
30
+ it "must return \"\\x05P\\xa0\\xe1\"" do
31
+ expect(subject).to eq("\x05P\xa0\xe1".b)
32
+ end
33
+ end
34
+
35
+ describe ":arm64" do
36
+ subject { super()[:arm64] }
37
+
38
+ it "must return \"\\xe5\\x03\\x05\\xaa\"" do
39
+ expect(subject).to eq("\xe5\x03\x05\xaa".b)
40
+ end
41
+ end
42
+ end
43
+
44
+ module TestNOPSMixin
45
+ class ExploitWithArchSet < Ronin::Exploits::Exploit
46
+ include Ronin::Exploits::Metadata::Arch
47
+ include Ronin::Exploits::Mixins::NOPS
48
+
49
+ arch :x86
50
+ end
51
+
52
+ class ExploitWithMultiByteNopArchSet < Ronin::Exploits::Exploit
53
+ include Ronin::Exploits::Metadata::Arch
54
+ include Ronin::Exploits::Mixins::NOPS
55
+
56
+ arch :arm
57
+ end
58
+
59
+ class ExploitWithoutArch < Ronin::Exploits::Exploit
60
+ include Ronin::Exploits::Mixins::NOPS
61
+ end
62
+
63
+ class ExploitWithoutArchSet < Ronin::Exploits::Exploit
64
+ include Ronin::Exploits::Metadata::Arch
65
+ include Ronin::Exploits::Mixins::NOPS
66
+ end
67
+
68
+ class ExploitWithUnsupportedArch < Ronin::Exploits::Exploit
69
+ include Ronin::Exploits::Metadata::Arch
70
+ include Ronin::Exploits::Mixins::NOPS
71
+
72
+ arch :mips
73
+ end
74
+ end
75
+
76
+ subject { exploit_class.new }
77
+
78
+ describe "#perform_validate" do
79
+ context "when the exploit class does not define an #arch method" do
80
+ let(:exploit_class) { TestNOPSMixin::ExploitWithoutArch }
81
+
82
+ it do
83
+ expect {
84
+ subject.perform_validate
85
+ }.to raise_error(Ronin::Exploits::ValidationError,"exploit #{exploit_class} did not include Ronin::Exploits::Metadata::Arch or Ronin::Exploits::Mixins::HasTargets")
86
+ end
87
+ end
88
+
89
+ context "when the exploit class's #arch method returns nil" do
90
+ let(:exploit_class) { TestNOPSMixin::ExploitWithoutArchSet }
91
+
92
+ it do
93
+ expect {
94
+ subject.perform_validate
95
+ }.to raise_error(Ronin::Exploits::ValidationError,"exploit #{exploit_class} did not include define an architecture")
96
+ end
97
+ end
98
+
99
+ context "when the exploit class defines an architecture" do
100
+ let(:exploit_class) { TestNOPSMixin::ExploitWithArchSet }
101
+
102
+ it do
103
+ expect {
104
+ subject.perform_validate
105
+ }.to_not raise_error
106
+ end
107
+ end
108
+ end
109
+
110
+ describe "#nop" do
111
+ context "when #arch returns an architecture name" do
112
+ context "and it's supported" do
113
+ let(:exploit_class) { TestNOPSMixin::ExploitWithArchSet }
114
+
115
+ it "must return the String from #{described_class}::NOPS for the #arch" do
116
+ expect(subject.nop).to eq(described_class::NOPS.fetch(subject.arch))
117
+ end
118
+ end
119
+
120
+ context "but it's not supported" do
121
+ let(:exploit_class) { TestNOPSMixin::ExploitWithUnsupportedArch }
122
+
123
+ it do
124
+ expect {
125
+ subject.nop
126
+ }.to raise_error(NotImplementedError,"no NOP string is currently defined for the architecture: #{subject.arch.inspect}")
127
+ end
128
+ end
129
+ end
130
+ end
131
+
132
+ describe "#nops" do
133
+ let(:size) { 100 }
134
+
135
+ context "when #arch returns an architecture name" do
136
+ context "and it's supported" do
137
+ let(:exploit_class) { TestNOPSMixin::ExploitWithArchSet }
138
+
139
+ let(:nop) { described_class::NOPS.fetch(subject.arch) }
140
+
141
+ it "must return a String of the NOP instruction for the #arch repeated size times" do
142
+ expect(subject.nops(size)).to eq(nop * size)
143
+ end
144
+
145
+ context "but the NOP instruction for the architecture is more than one byte" do
146
+ let(:exploit_class) { TestNOPSMixin::ExploitWithMultiByteNopArchSet }
147
+
148
+ it "must return a String of the desired length containing as many of the NOP instructions as possible" do
149
+ expect(subject.nops(size)).to eq(nop * (size / nop.bytesize))
150
+ end
151
+ end
152
+ end
153
+
154
+ context "but it's not supported" do
155
+ let(:exploit_class) { TestNOPSMixin::ExploitWithUnsupportedArch }
156
+
157
+ it do
158
+ expect {
159
+ subject.nops(size)
160
+ }.to raise_error(NotImplementedError,"no NOP string is currently defined for the architecture: #{subject.arch.inspect}")
161
+ end
162
+ end
163
+ end
164
+ end
165
+ end
@@ -0,0 +1,217 @@
1
+ require 'spec_helper'
2
+ require 'ronin/exploits/mixins/remote_tcp'
3
+ require 'ronin/exploits/exploit'
4
+
5
+ describe Ronin::Exploits::Mixins::RemoteTCP do
6
+ module TestMixinsRemoteTCP
7
+ class TestExploit < Ronin::Exploits::Exploit
8
+ include Ronin::Exploits::Mixins::RemoteTCP
9
+ end
10
+ end
11
+
12
+ let(:test_class) { TestMixinsRemoteTCP::TestExploit }
13
+
14
+ describe ".included" do
15
+ subject { test_class }
16
+
17
+ it "must include Ronin::Support::Network::TCP::Mixin" do
18
+ expect(subject).to include(Ronin::Support::Network::TCP::Mixin)
19
+ end
20
+
21
+ it "must include Ronin::Exploits::Params::Host" do
22
+ expect(subject).to include(Ronin::Exploits::Params::Host)
23
+ end
24
+
25
+ it "must include Ronin::Exploits::Params::Port" do
26
+ expect(subject).to include(Ronin::Exploits::Params::Port)
27
+ end
28
+
29
+ it "must include Ronin::Exploits::Params::BindHost" do
30
+ expect(subject).to include(Ronin::Exploits::Params::BindHost)
31
+ end
32
+
33
+ it "must include Ronin::Exploits::Params::BindPort" do
34
+ expect(subject).to include(Ronin::Exploits::Params::BindPort)
35
+ end
36
+ end
37
+
38
+ let(:host) { 'example.com' }
39
+ let(:port) { 1337 }
40
+ let(:bind_host) { 'localhost' }
41
+ let(:bind_port) { 9000 }
42
+
43
+ subject do
44
+ test_class.new(
45
+ params: {
46
+ host: host,
47
+ port: port,
48
+ bind_host: bind_host,
49
+ bind_port: bind_port
50
+ }
51
+ )
52
+ end
53
+
54
+ describe "#tcp_open?" do
55
+ context "when given no arguments" do
56
+ it "must call Ronin::Support::Network::TCP.open? with #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
57
+ expect(Ronin::Support::Network::TCP).to receive(:open?).with(
58
+ subject.host, subject.port, bind_host: subject.bind_host,
59
+ bind_port: subject.bind_port
60
+ )
61
+
62
+ subject.tcp_open?
63
+ end
64
+
65
+ context "when debug messages are enabled" do
66
+ before { Ronin::Support::CLI::Printing.debug = true }
67
+
68
+ it "must print a debugging message" do
69
+ allow(Ronin::Support::Network::TCP).to receive(:open?).with(
70
+ subject.host, subject.port, bind_host: subject.bind_host,
71
+ bind_port: subject.bind_port
72
+ )
73
+
74
+ expect(subject).to receive(:print_debug).with(
75
+ "Testing if #{subject.host}:#{subject.port} is open ..."
76
+ )
77
+
78
+ subject.tcp_open?
79
+ end
80
+
81
+ after { Ronin::Support::CLI::Printing.debug = false }
82
+ end
83
+ end
84
+ end
85
+
86
+ describe "#tcp_connect" do
87
+ context "when given no arguments" do
88
+ it "must call Ronin::Support::Network::TCP.connect with #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
89
+ expect(Ronin::Support::Network::TCP).to receive(:connect).with(
90
+ subject.host, subject.port, bind_host: subject.bind_host,
91
+ bind_port: subject.bind_port
92
+ )
93
+
94
+ subject.tcp_connect
95
+ end
96
+
97
+ context "when debug messages are enabled" do
98
+ before { Ronin::Support::CLI::Printing.debug = true }
99
+
100
+ it "must print a debugging message" do
101
+ allow(Ronin::Support::Network::TCP).to receive(:connect).with(
102
+ subject.host, subject.port, bind_host: subject.bind_host,
103
+ bind_port: subject.bind_port
104
+ )
105
+
106
+ expect(subject).to receive(:print_debug).with(
107
+ "Connecting to #{subject.host}:#{subject.port} ..."
108
+ )
109
+
110
+ subject.tcp_connect
111
+ end
112
+
113
+ after { Ronin::Support::CLI::Printing.debug = false }
114
+ end
115
+ end
116
+ end
117
+
118
+ describe "#tcp_connect_and_send" do
119
+ context "when given one argument" do
120
+ let(:data) { 'foo' }
121
+
122
+ it "must call Ronin::Support::Network::TCP.connect_and_send with data, #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
123
+ expect(Ronin::Support::Network::TCP).to receive(:connect_and_send).with(
124
+ data, subject.host, subject.port, bind_host: subject.bind_host,
125
+ bind_port: subject.bind_port
126
+ )
127
+
128
+ subject.tcp_connect_and_send(data)
129
+ end
130
+
131
+ context "when debug messages are enabled" do
132
+ before { Ronin::Support::CLI::Printing.debug = true }
133
+
134
+ it "must print a debugging message" do
135
+ allow(Ronin::Support::Network::TCP).to receive(:connect_and_send).with(
136
+ data, subject.host, subject.port, bind_host: subject.bind_host,
137
+ bind_port: subject.bind_port
138
+ )
139
+
140
+ expect(subject).to receive(:print_debug).with(
141
+ "Connecting to #{subject.host}:#{subject.port} and sending #{data.inspect} ..."
142
+ )
143
+
144
+ subject.tcp_connect_and_send(data)
145
+ end
146
+
147
+ after { Ronin::Support::CLI::Printing.debug = false }
148
+ end
149
+ end
150
+ end
151
+
152
+ describe "#tcp_banner" do
153
+ context "when given no arguments" do
154
+ it "must call Ronin::Support::Network::TCP.banner with #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
155
+ expect(Ronin::Support::Network::TCP).to receive(:banner).with(
156
+ subject.host, subject.port, bind_host: subject.bind_host,
157
+ bind_port: subject.bind_port
158
+ )
159
+
160
+ subject.tcp_banner
161
+ end
162
+
163
+ context "when debug messages are enabled" do
164
+ before { Ronin::Support::CLI::Printing.debug = true }
165
+
166
+ it "must print a debugging message" do
167
+ allow(Ronin::Support::Network::TCP).to receive(:banner).with(
168
+ subject.host, subject.port, bind_host: subject.bind_host,
169
+ bind_port: subject.bind_port
170
+ )
171
+
172
+ expect(subject).to receive(:print_debug).with(
173
+ "Fetching the banner for #{subject.host}:#{subject.port} ..."
174
+ )
175
+
176
+ subject.tcp_banner
177
+ end
178
+
179
+ after { Ronin::Support::CLI::Printing.debug = false }
180
+ end
181
+ end
182
+ end
183
+
184
+ describe "#tcp_send" do
185
+ context "when given one argument" do
186
+ let(:data) { 'foo' }
187
+
188
+ it "must call Ronin::Support::Network::TCP.send with data, #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
189
+ expect(Ronin::Support::Network::TCP).to receive(:send).with(
190
+ data, subject.host, subject.port, bind_host: subject.bind_host,
191
+ bind_port: subject.bind_port
192
+ )
193
+
194
+ subject.tcp_send(data)
195
+ end
196
+
197
+ context "when debug messages are enabled" do
198
+ before { Ronin::Support::CLI::Printing.debug = true }
199
+
200
+ it "must print a debugging message" do
201
+ allow(Ronin::Support::Network::TCP).to receive(:send).with(
202
+ data, subject.host, subject.port, bind_host: subject.bind_host,
203
+ bind_port: subject.bind_port
204
+ )
205
+
206
+ expect(subject).to receive(:print_debug).with(
207
+ "Sending #{data.inspect} to #{subject.host}:#{subject.port} ..."
208
+ )
209
+
210
+ subject.tcp_send(data)
211
+ end
212
+
213
+ after { Ronin::Support::CLI::Printing.debug = false }
214
+ end
215
+ end
216
+ end
217
+ end
@@ -0,0 +1,217 @@
1
+ require 'spec_helper'
2
+ require 'ronin/exploits/mixins/remote_udp'
3
+ require 'ronin/exploits/exploit'
4
+
5
+ describe Ronin::Exploits::Mixins::RemoteUDP do
6
+ module TestMixinsRemoteUDP
7
+ class TestExploit < Ronin::Exploits::Exploit
8
+ include Ronin::Exploits::Mixins::RemoteUDP
9
+ end
10
+ end
11
+
12
+ let(:test_class) { TestMixinsRemoteUDP::TestExploit }
13
+
14
+ describe ".included" do
15
+ subject { test_class }
16
+
17
+ it "must include Ronin::Support::Network::UDP::Mixin" do
18
+ expect(subject).to include(Ronin::Support::Network::UDP::Mixin)
19
+ end
20
+
21
+ it "must include Ronin::Exploits::Params::Host" do
22
+ expect(subject).to include(Ronin::Exploits::Params::Host)
23
+ end
24
+
25
+ it "must include Ronin::Exploits::Params::Port" do
26
+ expect(subject).to include(Ronin::Exploits::Params::Port)
27
+ end
28
+
29
+ it "must include Ronin::Exploits::Params::BindHost" do
30
+ expect(subject).to include(Ronin::Exploits::Params::BindHost)
31
+ end
32
+
33
+ it "must include Ronin::Exploits::Params::BindPort" do
34
+ expect(subject).to include(Ronin::Exploits::Params::BindPort)
35
+ end
36
+ end
37
+
38
+ let(:host) { 'example.com' }
39
+ let(:port) { 1337 }
40
+ let(:bind_host) { 'localhost' }
41
+ let(:bind_port) { 9000 }
42
+
43
+ subject do
44
+ test_class.new(
45
+ params: {
46
+ host: host,
47
+ port: port,
48
+ bind_host: bind_host,
49
+ bind_port: bind_port
50
+ }
51
+ )
52
+ end
53
+
54
+ describe "#udp_open?" do
55
+ context "when given no arguments" do
56
+ it "must call Ronin::Support::Network::UDP.open? with #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
57
+ expect(Ronin::Support::Network::UDP).to receive(:open?).with(
58
+ subject.host, subject.port, bind_host: subject.bind_host,
59
+ bind_port: subject.bind_port
60
+ )
61
+
62
+ subject.udp_open?
63
+ end
64
+
65
+ context "when debug messages are enabled" do
66
+ before { Ronin::Support::CLI::Printing.debug = true }
67
+
68
+ it "must print a debugging message" do
69
+ allow(Ronin::Support::Network::UDP).to receive(:open?).with(
70
+ subject.host, subject.port, bind_host: subject.bind_host,
71
+ bind_port: subject.bind_port
72
+ )
73
+
74
+ expect(subject).to receive(:print_debug).with(
75
+ "Testing if #{subject.host}:#{subject.port} is open ..."
76
+ )
77
+
78
+ subject.udp_open?
79
+ end
80
+
81
+ after { Ronin::Support::CLI::Printing.debug = false }
82
+ end
83
+ end
84
+ end
85
+
86
+ describe "#udp_connect" do
87
+ context "when given no arguments" do
88
+ it "must call Ronin::Support::Network::UDP.connect with #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
89
+ expect(Ronin::Support::Network::UDP).to receive(:connect).with(
90
+ subject.host, subject.port, bind_host: subject.bind_host,
91
+ bind_port: subject.bind_port
92
+ )
93
+
94
+ subject.udp_connect
95
+ end
96
+
97
+ context "when debug messages are enabled" do
98
+ before { Ronin::Support::CLI::Printing.debug = true }
99
+
100
+ it "must print a debugging message" do
101
+ allow(Ronin::Support::Network::UDP).to receive(:connect).with(
102
+ subject.host, subject.port, bind_host: subject.bind_host,
103
+ bind_port: subject.bind_port
104
+ )
105
+
106
+ expect(subject).to receive(:print_debug).with(
107
+ "Connecting to #{subject.host}:#{subject.port} ..."
108
+ )
109
+
110
+ subject.udp_connect
111
+ end
112
+
113
+ after { Ronin::Support::CLI::Printing.debug = false }
114
+ end
115
+ end
116
+ end
117
+
118
+ describe "#udp_connect_and_send" do
119
+ context "when given one argument" do
120
+ let(:data) { 'foo' }
121
+
122
+ it "must call Ronin::Support::Network::UDP.connect_and_send with data, #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
123
+ expect(Ronin::Support::Network::UDP).to receive(:connect_and_send).with(
124
+ data, subject.host, subject.port, bind_host: subject.bind_host,
125
+ bind_port: subject.bind_port
126
+ )
127
+
128
+ subject.udp_connect_and_send(data)
129
+ end
130
+
131
+ context "when debug messages are enabled" do
132
+ before { Ronin::Support::CLI::Printing.debug = true }
133
+
134
+ it "must print a debugging message" do
135
+ allow(Ronin::Support::Network::UDP).to receive(:connect_and_send).with(
136
+ data, subject.host, subject.port, bind_host: subject.bind_host,
137
+ bind_port: subject.bind_port
138
+ )
139
+
140
+ expect(subject).to receive(:print_debug).with(
141
+ "Connecting to #{subject.host}:#{subject.port} and sending #{data.inspect} ..."
142
+ )
143
+
144
+ subject.udp_connect_and_send(data)
145
+ end
146
+
147
+ after { Ronin::Support::CLI::Printing.debug = false }
148
+ end
149
+ end
150
+ end
151
+
152
+ describe "#udp_banner" do
153
+ context "when given no arguments" do
154
+ it "must call Ronin::Support::Network::UDP.banner with #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
155
+ expect(Ronin::Support::Network::UDP).to receive(:banner).with(
156
+ subject.host, subject.port, bind_host: subject.bind_host,
157
+ bind_port: subject.bind_port
158
+ )
159
+
160
+ subject.udp_banner
161
+ end
162
+
163
+ context "when debug messages are enabled" do
164
+ before { Ronin::Support::CLI::Printing.debug = true }
165
+
166
+ it "must print a debugging message" do
167
+ allow(Ronin::Support::Network::UDP).to receive(:banner).with(
168
+ subject.host, subject.port, bind_host: subject.bind_host,
169
+ bind_port: subject.bind_port
170
+ )
171
+
172
+ expect(subject).to receive(:print_debug).with(
173
+ "Fetching the banner for #{subject.host}:#{subject.port} ..."
174
+ )
175
+
176
+ subject.udp_banner
177
+ end
178
+
179
+ after { Ronin::Support::CLI::Printing.debug = false }
180
+ end
181
+ end
182
+ end
183
+
184
+ describe "#udp_send" do
185
+ context "when given one argument" do
186
+ let(:data) { 'foo' }
187
+
188
+ it "must call Ronin::Support::Network::UDP.send with data, #host, #port, bind_host: #bind_host, bind_port: #bind_port" do
189
+ expect(Ronin::Support::Network::UDP).to receive(:send).with(
190
+ data, subject.host, subject.port, bind_host: subject.bind_host,
191
+ bind_port: subject.bind_port
192
+ )
193
+
194
+ subject.udp_send(data)
195
+ end
196
+
197
+ context "when debug messages are enabled" do
198
+ before { Ronin::Support::CLI::Printing.debug = true }
199
+
200
+ it "must print a debugging message" do
201
+ allow(Ronin::Support::Network::UDP).to receive(:send).with(
202
+ data, subject.host, subject.port, bind_host: subject.bind_host,
203
+ bind_port: subject.bind_port
204
+ )
205
+
206
+ expect(subject).to receive(:print_debug).with(
207
+ "Sending #{data.inspect} to #{subject.host}:#{subject.port} ..."
208
+ )
209
+
210
+ subject.udp_send(data)
211
+ end
212
+
213
+ after { Ronin::Support::CLI::Printing.debug = false }
214
+ end
215
+ end
216
+ end
217
+ end
@@ -0,0 +1,89 @@
1
+ require 'spec_helper'
2
+ require 'ronin/exploits/mixins/seh'
3
+
4
+ require 'ronin/exploits/exploit'
5
+ require 'ronin/exploits/metadata/arch'
6
+ require 'ronin/exploits/metadata/os'
7
+
8
+ describe Ronin::Exploits::Mixins::SEH do
9
+ module TestSEHMixin
10
+ class TestExploit < Ronin::Exploits::Exploit
11
+ include Ronin::Exploits::Metadata::Arch
12
+ include Ronin::Exploits::Metadata::OS
13
+ include Ronin::Exploits::Mixins::SEH
14
+
15
+ arch :x86
16
+ os :windows
17
+ end
18
+ end
19
+
20
+ let(:exploit_class) { TestSEHMixin::TestExploit }
21
+
22
+ it "must include Ronin::Exploits::Mixins::Text" do
23
+ expect(exploit_class).to include(Ronin::Exploits::Mixins::Text)
24
+ end
25
+
26
+ it "must include Ronin::Exploits::Mixins::Binary" do
27
+ expect(exploit_class).to include(Ronin::Exploits::Mixins::Binary)
28
+ end
29
+
30
+ it "must include Ronin::Exploits::Mixins::NOPS" do
31
+ expect(exploit_class).to include(Ronin::Exploits::Mixins::NOPS)
32
+ end
33
+
34
+ subject { exploit_class.new }
35
+
36
+ let(:nseh) { 0x06eb9090 }
37
+ let(:seh) { 0x1001ae86 }
38
+
39
+ describe "#seh_record" do
40
+ it "must pack the nseh and seh arguments as machine words" do
41
+ expect(subject.seh_record(nseh,seh)).to eq(
42
+ [nseh, seh].pack('L<2')
43
+ )
44
+ end
45
+ end
46
+
47
+ describe "#seh_buffer_overflow" do
48
+ let(:length) { 1024 }
49
+ let(:payload) { 'shellcode here'.b }
50
+
51
+ it "must return a buffer of the given size, containing junk data, the payload, nseh, and seh addresses" do
52
+ buffer = subject.seh_buffer_overflow(
53
+ length: length, payload: payload, nseh: nseh, seh: seh
54
+ )
55
+
56
+ expect(buffer.length).to eq(length)
57
+
58
+ junk = subject.junk(length - payload.bytesize - (subject.platform[:machine_word].size * 2))
59
+
60
+ packed_nseh = subject.pack(:machine_word,nseh)
61
+ packed_seh = subject.pack(:machine_word,seh)
62
+
63
+ expect(buffer).to eq(junk + payload + packed_nseh + packed_seh)
64
+ end
65
+
66
+ context "when the nops: keyword argument is given" do
67
+ let(:nops) { 16 }
68
+
69
+ it "must add additional NOP padding to the beginning of the payload" do
70
+ buffer = subject.seh_buffer_overflow(
71
+ length: length, nops: nops, payload: payload, nseh: nseh, seh: seh
72
+ )
73
+
74
+ expect(buffer.length).to eq(length)
75
+
76
+ junk = subject.junk(length - (subject.nop.bytesize * nops) - payload.bytesize - (subject.platform[:machine_word].size * 2))
77
+
78
+ nop_pad = subject.nops(nops)
79
+
80
+ packed_nseh = subject.pack(:machine_word,nseh)
81
+ packed_seh = subject.pack(:machine_word,seh)
82
+
83
+ expect(buffer).to eq(
84
+ junk + nop_pad + payload + packed_nseh + packed_seh
85
+ )
86
+ end
87
+ end
88
+ end
89
+ end