Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions spec/support/acceptance/session/java.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ module Acceptance::Session::Java
name: "java/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".jar",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["java", "-jar", "${payload_path}"],
generate_options: {
'-f': "jar"
Expand All @@ -73,8 +72,7 @@ module Acceptance::Session::Java
name: "java/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".jar",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["java", "-jar", "${payload_path}"],
generate_options: {
'-f': "jar"
Expand Down
12 changes: 4 additions & 8 deletions spec/support/acceptance/session/php.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ module Acceptance::Session::Php
name: "php/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".php",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["php", "${payload_path}"],
generate_options: {
'-f': "raw"
Expand All @@ -76,8 +75,7 @@ module Acceptance::Session::Php
name: "php/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".php",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["php", "${payload_path}"],
generate_options: {
'-f': "raw"
Expand Down Expand Up @@ -128,8 +126,7 @@ module Acceptance::Session::Php
name: "php/meterpreter/reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".php",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["php", "${payload_path}"],
generate_options: {
'-f': "raw"
Expand All @@ -146,8 +143,7 @@ module Acceptance::Session::Php
name: "php/meterpreter/reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".php",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["php", "${payload_path}"],
generate_options: {
'-f': "raw"
Expand Down
12 changes: 4 additions & 8 deletions spec/support/acceptance/session/python.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ module Acceptance::Session::Python
name: "python/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".py",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["python", "${payload_path}"],
generate_options: {
'-f': "raw"
Expand All @@ -80,8 +79,7 @@ module Acceptance::Session::Python
name: "python/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".py",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["python", "${payload_path}"],
generate_options: {
'-f': "raw"
Expand Down Expand Up @@ -135,8 +133,7 @@ module Acceptance::Session::Python
name: "python/meterpreter/reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".py",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["python", "${payload_path}"],
generate_options: {
'-f': "raw"
Expand All @@ -154,8 +151,7 @@ module Acceptance::Session::Python
name: "python/meterpreter/reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".py",
# TODO: HTTPS payloads broken on Windows environments
platforms: [:osx, :linux],
platforms: [:osx, :linux, :windows],
execute_cmd: ["python", "${payload_path}"],
generate_options: {
'-f': "raw"
Expand Down
12 changes: 4 additions & 8 deletions spec/support/acceptance/session/windows_meterpreter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,7 @@ module Acceptance::Session::WindowsMeterpreter
name: "windows/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".exe",
# TODO: HTTPS payloads broken on Windows environments
platforms: [],
platforms: [:windows],
execute_cmd: ["${payload_path}"],
executable: true,
generate_options: {
Expand All @@ -136,8 +135,7 @@ module Acceptance::Session::WindowsMeterpreter
name: "windows/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".exe",
# TODO: HTTPS payloads broken on Windows environments
platforms: [],
platforms: [:windows],
execute_cmd: ["${payload_path}"],
executable: true,
generate_options: {
Expand All @@ -155,8 +153,7 @@ module Acceptance::Session::WindowsMeterpreter
name: "windows/x64/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".exe",
# TODO: HTTPS payloads broken on Windows environments
platforms: [],
platforms: [:windows],
execute_cmd: ["${payload_path}"],
executable: true,
generate_options: {
Expand All @@ -174,8 +171,7 @@ module Acceptance::Session::WindowsMeterpreter
name: "windows/x64/meterpreter_reverse_https",
skip_module_tests: ['post/test/socket_channels'],
extension: ".exe",
# TODO: HTTPS payloads broken on Windows environments
platforms: [],
platforms: [:windows],
execute_cmd: ["${payload_path}"],
executable: true,
generate_options: {
Expand Down
Loading