metasploit-payloads 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +2 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +43 -0
- data/CONTRIBUTING.md +8 -0
- data/Gemfile +4 -0
- data/LICENSE +39 -0
- data/README.md +41 -0
- data/Rakefile +143 -0
- data/build.sh +0 -0
- data/lib/metasploit-payloads.rb +151 -0
- data/lib/metasploit-payloads/version.rb +9 -0
- data/metasploit-payloads.gemspec +45 -0
- metadata +226 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a9430f34d4548e0482bc7f06c0cb786666273d75
|
4
|
+
data.tar.gz: 7860265eac617962a26799a2026a7babd920eae3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0607a507379df5c4a0e7c321bbd9a3868074e544acc3bcf9d6f2e0812910feabd2cb33cf25f7e8cbbc52bd42eca8fa1736961b3bddd221aaf1d40bebd9f140e8
|
7
|
+
data.tar.gz: dd9e10a18e7eae73f09e7bceddb556c63bb917b6e682bbaf57cf73f8ddf68d17911aa12c3dfc597e7d305d0aebfe810183a52e19273a93dab66f24d578e28517
|
checksums.yaml.gz.sig
ADDED
data.tar.gz.sig
ADDED
Binary file
|
data/.gitignore
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
coverage
|
6
|
+
InstalledFiles
|
7
|
+
lib/bundler/man
|
8
|
+
rdoc
|
9
|
+
spec/reports
|
10
|
+
test/tmp
|
11
|
+
test/version_tmp
|
12
|
+
tmp
|
13
|
+
|
14
|
+
# YARD artifacts
|
15
|
+
.yardoc
|
16
|
+
_yardoc
|
17
|
+
doc/
|
18
|
+
|
19
|
+
# Compiled Object files
|
20
|
+
*.slo
|
21
|
+
*.lo
|
22
|
+
*.o
|
23
|
+
|
24
|
+
# Compiled Dynamic libraries
|
25
|
+
*.so
|
26
|
+
*.dylib
|
27
|
+
|
28
|
+
# Compiled Static libraries
|
29
|
+
*.lai
|
30
|
+
*.la
|
31
|
+
*.a
|
32
|
+
|
33
|
+
# temp stuff
|
34
|
+
*.swp
|
35
|
+
Gemfile.lock
|
36
|
+
|
37
|
+
# and the generated output
|
38
|
+
pkg/*
|
39
|
+
data/*
|
40
|
+
|
41
|
+
# never include private bins!
|
42
|
+
# If you're interested in these, consider http://metasploit.pro
|
43
|
+
data/meterpreter/ext_server_pivot.*
|
data/CONTRIBUTING.md
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
Meterpreter is available for use under the following license, commonly known as the
|
2
|
+
3-clause (or "modified") BSD license:
|
3
|
+
|
4
|
+
=========================================================================================
|
5
|
+
|
6
|
+
Meterpreter
|
7
|
+
-----------
|
8
|
+
|
9
|
+
Copyright (c) 2006-2013, Rapid7 Inc
|
10
|
+
|
11
|
+
Redistribution and use in source and binary forms, with or without modification, are
|
12
|
+
permitted provided that the following conditions are met:
|
13
|
+
|
14
|
+
* Redistributions of source code must retain the above copyright notice, this list of
|
15
|
+
conditions and the following disclaimer.
|
16
|
+
|
17
|
+
* Redistributions in binary form must reproduce the above copyright notice, this list of
|
18
|
+
conditions and the following disclaimer in the documentation and/or other materials
|
19
|
+
provided with the distribution.
|
20
|
+
|
21
|
+
* Neither the name of Rapid7 nor the names of its contributors may be used to endorse or
|
22
|
+
promote products derived from this software without specific prior written permission.
|
23
|
+
|
24
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
25
|
+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
26
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
27
|
+
THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
28
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
29
|
+
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
30
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
31
|
+
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
32
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
33
|
+
|
34
|
+
=========================================================================================
|
35
|
+
|
36
|
+
Portions of Meterpreter are based on works by others. Licenses for those
|
37
|
+
portions are detailed at the Meterpreter source repository
|
38
|
+
https://github.com/rapid7/meterpreter
|
39
|
+
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Metasploit Payloads
|
2
|
+
|
3
|
+
This gem is a Metasploit-specific gem that contains all of the
|
4
|
+
Meterpreter payloads. This is made up of:
|
5
|
+
|
6
|
+
* Windows DLLs
|
7
|
+
* POSIX LSOs
|
8
|
+
* POSIX BIN
|
9
|
+
* Java Classes
|
10
|
+
* PHP/Python Scripts
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
Given the nature of the contents of this gem, installation
|
15
|
+
outside of Metasploit is not advised. To use Meterpreter,
|
16
|
+
download and install Metasploit itself.
|
17
|
+
|
18
|
+
## Building
|
19
|
+
|
20
|
+
To build the gem:
|
21
|
+
|
22
|
+
1. Update the version number in `lib/metasploit-payloads/version.rb`
|
23
|
+
1. Run:
|
24
|
+
- `rake win_prep` to build on Windows
|
25
|
+
- `rake posix_prep` to build on Linux
|
26
|
+
- `rake java_prep` to build Java files
|
27
|
+
- `rake python_prep` and `rake php_prep` to copy the latest PHP/Python
|
28
|
+
meterpreter files into place
|
29
|
+
1. Binaries will be built in the `data` folder.
|
30
|
+
1. Run `rake build` to generate the new gem file using content in
|
31
|
+
meterpreter folder.
|
32
|
+
1. Run `rake release` to release the binary to RubyGems.
|
33
|
+
|
34
|
+
Note, when using the command `rake win_prep` and related Windows rake
|
35
|
+
tasks, you must be in the Visual Studio Developer command prompt,
|
36
|
+
**and** have a path to a git binary in your default path. If your
|
37
|
+
git.exe is part of posh-git or GitHub for Windows, that means adding
|
38
|
+
something like the following to your path:
|
39
|
+
|
40
|
+
`"C:\Users\USERNAME\AppData\Local\GitHub\PortableGit_LONG_UUID_STRING_THING\bin"`
|
41
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,143 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "shell"
|
3
|
+
|
4
|
+
c_source = "../c/meterpreter/"
|
5
|
+
java_source = "../java"
|
6
|
+
php_source = "../php/meterpreter/"
|
7
|
+
python_source = "../python/meterpreter/"
|
8
|
+
dest = "./data"
|
9
|
+
meterpreter_dest = "./data/meterpreter"
|
10
|
+
|
11
|
+
platform_config = {
|
12
|
+
:windows => {
|
13
|
+
:sources => [
|
14
|
+
"../c/meterpreter/output/x64",
|
15
|
+
"../c/meterpreter/output/x86"
|
16
|
+
],
|
17
|
+
:extensions => [
|
18
|
+
"dll"
|
19
|
+
]
|
20
|
+
},
|
21
|
+
:posix => {
|
22
|
+
:sources => [
|
23
|
+
"../c/meterpreter/data/meterpreter"
|
24
|
+
],
|
25
|
+
:extensions => [
|
26
|
+
"lso", "bin"
|
27
|
+
]
|
28
|
+
},
|
29
|
+
:java => {
|
30
|
+
:sources => [
|
31
|
+
"../java/output/data/meterpreter"
|
32
|
+
],
|
33
|
+
:extensions => [
|
34
|
+
"jar"
|
35
|
+
],
|
36
|
+
},
|
37
|
+
:php => {
|
38
|
+
:sources => [
|
39
|
+
php_source
|
40
|
+
],
|
41
|
+
:extensions => [
|
42
|
+
"php"
|
43
|
+
]
|
44
|
+
},
|
45
|
+
:python => {
|
46
|
+
:sources => [
|
47
|
+
python_source
|
48
|
+
],
|
49
|
+
:extensions => [
|
50
|
+
"py"
|
51
|
+
]
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
def copy_files(cnf, meterpreter_dest)
|
56
|
+
cnf[:sources].each do |f|
|
57
|
+
cnf[:extensions].each do |ext|
|
58
|
+
Dir.glob("#{f}/*.#{ext}").each do |bin|
|
59
|
+
target = File.join(meterpreter_dest, File.basename(bin))
|
60
|
+
print("Copying: #{bin} -> #{target}\n")
|
61
|
+
FileUtils.cp(bin, target)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
task :create_dir do
|
68
|
+
Dir.mkdir(dest) unless Dir.exist?(dest)
|
69
|
+
Dir.mkdir(meterpreter_dest) unless Dir.exist?(meterpreter_dest)
|
70
|
+
end
|
71
|
+
|
72
|
+
task :win_compile do
|
73
|
+
Dir.chdir(c_source) do
|
74
|
+
system('cmd.exe /c make.bat')
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
task :posix_compile do
|
79
|
+
Dir.chdir(c_source) do
|
80
|
+
system('make clean && make')
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
task :java_compile do
|
85
|
+
Dir.chdir(java_source) do
|
86
|
+
system('mvn package -Ddeploy.path=output -Dandroid.release=true -q -P deploy')
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
task :win_copy do
|
91
|
+
copy_files(platform_config[:windows], meterpreter_dest)
|
92
|
+
end
|
93
|
+
|
94
|
+
task :posix_copy do
|
95
|
+
copy_files(platform_config[:posix], meterpreter_dest)
|
96
|
+
end
|
97
|
+
|
98
|
+
task :java_copy do
|
99
|
+
copy_files(platform_config[:java], meterpreter_dest)
|
100
|
+
FileUtils.remove_entry_secure('./java', :force => true)
|
101
|
+
FileUtils.cp_r('../java/output/data/java', dest)
|
102
|
+
end
|
103
|
+
|
104
|
+
task :php_copy do
|
105
|
+
copy_files(platform_config[:php], meterpreter_dest)
|
106
|
+
end
|
107
|
+
|
108
|
+
task :python_copy do
|
109
|
+
copy_files(platform_config[:python], meterpreter_dest)
|
110
|
+
end
|
111
|
+
|
112
|
+
task :win_prep => [:create_dir, :win_compile, :win_copy] do
|
113
|
+
end
|
114
|
+
|
115
|
+
task :posix_prep => [:create_dir, :posix_compile, :posix_copy] do
|
116
|
+
end
|
117
|
+
|
118
|
+
task :java_prep => [:create_dir, :java_compile, :java_copy] do
|
119
|
+
end
|
120
|
+
|
121
|
+
task :php_prep => [:create_dir, :php_copy] do
|
122
|
+
end
|
123
|
+
|
124
|
+
task :python_prep => [:create_dir, :python_copy] do
|
125
|
+
end
|
126
|
+
|
127
|
+
task :default => [:python_prep, :php_prep, :java_prep, :posix_prep] do
|
128
|
+
end
|
129
|
+
|
130
|
+
# Override tag_version in bundler-#.#.#/lib/bundler/gem_helper.rb to force signed tags
|
131
|
+
module Bundler
|
132
|
+
class GemHelper
|
133
|
+
def tag_version
|
134
|
+
sh "git tag -m \"Version #{version}\" -s #{version_tag}"
|
135
|
+
Bundler.ui.confirm "Tagged #{version_tag}."
|
136
|
+
yield if block_given?
|
137
|
+
rescue
|
138
|
+
Bundler.ui.error "Untagging #{version_tag} due to error."
|
139
|
+
sh_with_code "git tag -d #{version_tag}"
|
140
|
+
raise
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
data/build.sh
ADDED
File without changes
|
@@ -0,0 +1,151 @@
|
|
1
|
+
# -*- coding:binary -*-
|
2
|
+
|
3
|
+
require 'metasploit-payloads/version' unless defined? MetasploitPayloads::VERSION
|
4
|
+
|
5
|
+
module MetasploitPayloads
|
6
|
+
|
7
|
+
EXTENSION_PREFIX = 'ext_server_'
|
8
|
+
METERPRETER_SUBFOLDER = 'meterpreter'
|
9
|
+
|
10
|
+
#
|
11
|
+
# Get the path to an extension based on its name (no prefix).
|
12
|
+
#
|
13
|
+
def self.meterpreter_ext_path(ext_name, binary_suffix)
|
14
|
+
path("#{EXTENSION_PREFIX}#{ext_name}", binary_suffix)
|
15
|
+
end
|
16
|
+
|
17
|
+
#
|
18
|
+
# Get the path to a meterpreter binary by full name.
|
19
|
+
#
|
20
|
+
def self.meterpreter_path(name, binary_suffix)
|
21
|
+
file_name = "#{name}.#{binary_suffix}".downcase
|
22
|
+
root_dirs = [local_meterpreter_dir]
|
23
|
+
|
24
|
+
# Try the data folder first to see if the extension exists, as this
|
25
|
+
# allows for the MSF data/meterpreter folder to override what is
|
26
|
+
# in the gem. This is very helpful for testing/development without
|
27
|
+
# having to move the binaries to the gem folder each time. We only
|
28
|
+
# do this is MSF is installed.
|
29
|
+
root_dirs.unshift(msf_meterpreter_dir) if metasploit_installed?
|
30
|
+
|
31
|
+
until root_dirs.length.zero?
|
32
|
+
file_path = expand(root_dirs.shift, file_name)
|
33
|
+
return file_path if ::File.readable?(file_path)
|
34
|
+
end
|
35
|
+
|
36
|
+
nil
|
37
|
+
end
|
38
|
+
|
39
|
+
#
|
40
|
+
# Get the full path to any file packaged in this gem by local path and name.
|
41
|
+
#
|
42
|
+
def self.path(*path_parts)
|
43
|
+
root_dirs = [data_directory]
|
44
|
+
|
45
|
+
# Same as above, we try the data folder first, the fall back to the local
|
46
|
+
# meterpreter folder
|
47
|
+
root_dirs.unshift(Msf::Config.data_directory) if metasploit_installed?
|
48
|
+
|
49
|
+
until root_dirs.length.zero?
|
50
|
+
file_path = expand(root_dirs.shift, ::File.join(path_parts))
|
51
|
+
return file_path if ::File.readable?(file_path)
|
52
|
+
end
|
53
|
+
|
54
|
+
nil
|
55
|
+
end
|
56
|
+
|
57
|
+
#
|
58
|
+
# Get the contents of any file packaged in this gem by local path and name.
|
59
|
+
#
|
60
|
+
def self.read(*path_parts)
|
61
|
+
file_path = path(path_parts)
|
62
|
+
if file_path.nil?
|
63
|
+
full_path = ::File.join(path_parts)
|
64
|
+
raise RuntimeError, "#{full_path} not found", caller
|
65
|
+
end
|
66
|
+
|
67
|
+
::File.open(file_path, "rb" ) { |f|
|
68
|
+
f.read(f.stat.size)
|
69
|
+
}
|
70
|
+
end
|
71
|
+
|
72
|
+
#
|
73
|
+
# List all the available extensions for the given suffix.
|
74
|
+
#
|
75
|
+
def self.list_meterpreter_extensions(binary_suffix)
|
76
|
+
extensions = []
|
77
|
+
|
78
|
+
root_dirs = [local_meterpreter_dir]
|
79
|
+
# Find the valid extensions in the data folder first, if MSF
|
80
|
+
# is installed.
|
81
|
+
root_dirs.unshift(msf_meterpreter_dir) if metasploit_installed?
|
82
|
+
|
83
|
+
until root_dirs.length.zero?
|
84
|
+
# Merge in any that don't already exist in the collection.
|
85
|
+
meterpreter_enum_ext(root_dirs.shift, binary_suffix).each do |e|
|
86
|
+
extensions.push(e) unless extensions.include?(e)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
extensions
|
91
|
+
end
|
92
|
+
|
93
|
+
#
|
94
|
+
# Full path to the local gem folder containing the base data
|
95
|
+
#
|
96
|
+
def self.data_directory
|
97
|
+
::File.join(::File.dirname(__FILE__), '..', 'data')
|
98
|
+
end
|
99
|
+
|
100
|
+
#
|
101
|
+
# Full path to the MSF data folder which contains the meterpreter binaries.
|
102
|
+
#
|
103
|
+
def self.msf_meterpreter_dir
|
104
|
+
::File.join(Msf::Config.data_directory, METERPRETER_SUBFOLDER)
|
105
|
+
end
|
106
|
+
|
107
|
+
#
|
108
|
+
# Full path to the local gem folder which contains the meterpreter binaries.
|
109
|
+
#
|
110
|
+
def self.local_meterpreter_dir
|
111
|
+
::File.join(data_directory, METERPRETER_SUBFOLDER)
|
112
|
+
end
|
113
|
+
|
114
|
+
#
|
115
|
+
# Full path to the MSF data folder which contains the binaries.
|
116
|
+
#
|
117
|
+
def self.msf_meterpreter_dir
|
118
|
+
::File.join(Msf::Config.data_directory, METERPRETER_SUBFOLDER)
|
119
|
+
end
|
120
|
+
|
121
|
+
#
|
122
|
+
# Enumerate extensions in the given root folder based on the suffix.
|
123
|
+
#
|
124
|
+
def self.meterpreter_enum_ext(root_dir, binary_suffix)
|
125
|
+
exts = []
|
126
|
+
::Dir.entries(root_dir).each do |f|
|
127
|
+
if (::File.readable?(::File.join(root_dir, f)) && f =~ /#{EXTENSION_PREFIX}(.*)\.#{binary_suffix}/)
|
128
|
+
exts.push($1)
|
129
|
+
end
|
130
|
+
end
|
131
|
+
exts
|
132
|
+
end
|
133
|
+
|
134
|
+
private
|
135
|
+
|
136
|
+
#
|
137
|
+
# Determine if MSF has been installed and is being used.
|
138
|
+
#
|
139
|
+
def self.metasploit_installed?
|
140
|
+
defined? Msf::Config
|
141
|
+
end
|
142
|
+
|
143
|
+
#
|
144
|
+
# Expand the given root path and file name into a full file location.
|
145
|
+
#
|
146
|
+
def self.expand(root_dir, file_name)
|
147
|
+
::File.expand_path(::File.join(root_dir, file_name))
|
148
|
+
end
|
149
|
+
|
150
|
+
end
|
151
|
+
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# -*- coding:binary -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'metasploit-payloads/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'metasploit-payloads'
|
8
|
+
spec.version = MetasploitPayloads::VERSION
|
9
|
+
spec.authors = ['OJ Reeves', 'Tod Beardsley', 'Chris Doughty', 'Brent Cook']
|
10
|
+
spec.email = ['oj@buffered.io', 'tod_beardsley@rapid7.com', 'chris_doughty@rapid7.com', 'brent_cook@rapid7.com']
|
11
|
+
spec.description = %q{Compiled binaries for Metasploit's Meterpreter}
|
12
|
+
spec.summary = %q{This gem contains the compiled binaries required to make
|
13
|
+
Meterpreter function, and eventually other payloads that
|
14
|
+
require compiled binaries.}
|
15
|
+
spec.homepage = 'http://www.metasploit.com'
|
16
|
+
spec.license = '3-clause (or "modified") BSD'
|
17
|
+
|
18
|
+
spec.files = `git ls-files`.split("\n")
|
19
|
+
spec.files += Dir['data/**/*']
|
20
|
+
spec.executables = []
|
21
|
+
spec.require_paths = ['lib']
|
22
|
+
|
23
|
+
# NOTE: I had to comment out all the metadata sections because, for some reason,
|
24
|
+
# my local installation of ruby/rake seems to think that metadata isn't valid.
|
25
|
+
# I get the following error:
|
26
|
+
# C:\code\metasploit-payloads>rake win_prep
|
27
|
+
# rake aborted!
|
28
|
+
# There was a NoMethodError while loading metasploit-payloads.gemspec:
|
29
|
+
# undefined method `metadata' for #<Gem::Specification name=metasploit-payloads version=0.0.1> from
|
30
|
+
# C:/code/metasploit-payloads/metasploit-payloads.gemspec:29:in `block in <main>'
|
31
|
+
# C:/code/metasploit-payloads/Rakefile:1:in `<top (required)>'
|
32
|
+
# (See full trace by running task with --trace)
|
33
|
+
|
34
|
+
# Since this is a pre-compiled binary, we'll need to give people a
|
35
|
+
# hint as to what state the source was actually in when we compiled
|
36
|
+
# up. In this way, the gem version can be linked to a commit hash and
|
37
|
+
# users can get a sense of where in the history they are.
|
38
|
+
#spec.metadata['source'] = 'https://github.com/rapid7/meterpreter'
|
39
|
+
#spec.metadata['source_commit'] = '51b1a6d1dce9f617ab5fe0f27796e2217d9a9ca6'
|
40
|
+
#spec.metadata['source_commit_url'] = "#{spec.metadata['source']}/commit/#{spec.metadata['source_commit']}"
|
41
|
+
|
42
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
43
|
+
spec.add_development_dependency 'rake'
|
44
|
+
spec.add_development_dependency 'gem-release'
|
45
|
+
end
|
metadata
ADDED
@@ -0,0 +1,226 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: metasploit-payloads
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- OJ Reeves
|
8
|
+
- Tod Beardsley
|
9
|
+
- Chris Doughty
|
10
|
+
- Brent Cook
|
11
|
+
autorequire:
|
12
|
+
bindir: bin
|
13
|
+
cert_chain:
|
14
|
+
- |
|
15
|
+
-----BEGIN CERTIFICATE-----
|
16
|
+
MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG
|
17
|
+
A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv
|
18
|
+
b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw
|
19
|
+
MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i
|
20
|
+
YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT
|
21
|
+
aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ
|
22
|
+
jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp
|
23
|
+
xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp
|
24
|
+
1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG
|
25
|
+
snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ
|
26
|
+
U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8
|
27
|
+
9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E
|
28
|
+
BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B
|
29
|
+
AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz
|
30
|
+
yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE
|
31
|
+
38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP
|
32
|
+
AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad
|
33
|
+
DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME
|
34
|
+
HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A==
|
35
|
+
-----END CERTIFICATE-----
|
36
|
+
- |
|
37
|
+
-----BEGIN CERTIFICATE-----
|
38
|
+
MIIEKDCCAxCgAwIBAgILBAAAAAABL07hNVwwDQYJKoZIhvcNAQEFBQAwVzELMAkG
|
39
|
+
A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv
|
40
|
+
b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw0xMTA0MTMxMDAw
|
41
|
+
MDBaFw0xOTA0MTMxMDAwMDBaMFExCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i
|
42
|
+
YWxTaWduIG52LXNhMScwJQYDVQQDEx5HbG9iYWxTaWduIENvZGVTaWduaW5nIENB
|
43
|
+
IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyTxTnEL7XJnKr
|
44
|
+
NpfvU79ChF5Y0Yoo/ENGb34oRFALdV0A1zwKRJ4gaqT3RUo3YKNuPxL6bfq2RsNq
|
45
|
+
o7gMJygCVyjRUPdhOVW4w+ElhlI8vwUd17Oa+JokMUnVoqni05GrPjxz7/Yp8cg1
|
46
|
+
0DB7f06SpQaPh+LO9cFjZqwYaSrBXrta6G6V/zuAYp2Zx8cvZtX9YhqCVVrG+kB3
|
47
|
+
jskwPBvw8jW4bFmc/enWyrRAHvcEytFnqXTjpQhU2YM1O46MIwx1tt6GSp4aPgpQ
|
48
|
+
STic0qiQv5j6yIwrJxF+KvvO3qmuOJMi+qbs+1xhdsNE1swMfi9tBoCidEC7tx/0
|
49
|
+
O9dzVB/zAgMBAAGjgfowgfcwDgYDVR0PAQH/BAQDAgEGMBIGA1UdEwEB/wQIMAYB
|
50
|
+
Af8CAQAwHQYDVR0OBBYEFAhu2Lacir/tPtfDdF3MgB+oL1B6MEcGA1UdIARAMD4w
|
51
|
+
PAYEVR0gADA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNv
|
52
|
+
bS9yZXBvc2l0b3J5LzAzBgNVHR8ELDAqMCigJqAkhiJodHRwOi8vY3JsLmdsb2Jh
|
53
|
+
bHNpZ24ubmV0L3Jvb3QuY3JsMBMGA1UdJQQMMAoGCCsGAQUFBwMDMB8GA1UdIwQY
|
54
|
+
MBaAFGB7ZhpFDZfKiVAvfQTNNKj//P1LMA0GCSqGSIb3DQEBBQUAA4IBAQAiXMXd
|
55
|
+
PfQLcNjj9efFjgkBu7GWNlxaB63HqERJUSV6rg2kGTuSnM+5Qia7O2yX58fOEW1o
|
56
|
+
kdqNbfFTTVQ4jGHzyIJ2ab6BMgsxw2zJniAKWC/wSP5+SAeq10NYlHNUBDGpeA07
|
57
|
+
jLBwwT1+170vKsPi9Y8MkNxrpci+aF5dbfh40r5JlR4VeAiR+zTIvoStvODG3Rjb
|
58
|
+
88rwe8IUPBi4A7qVPiEeP2Bpen9qA56NSvnwKCwwhF7sJnJCsW3LZMMSjNaES2dB
|
59
|
+
fLEDF3gJ462otpYtpH6AA0+I98FrWkYVzSwZi9hwnOUtSYhgcqikGVJwQ17a1kYD
|
60
|
+
sGgOJO9K9gslJO8k
|
61
|
+
-----END CERTIFICATE-----
|
62
|
+
- |
|
63
|
+
-----BEGIN CERTIFICATE-----
|
64
|
+
MIIEyjCCA7KgAwIBAgISESEyE8rNriS4+1dc8jOHEUL8MA0GCSqGSIb3DQEBBQUA
|
65
|
+
MFExCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMScwJQYD
|
66
|
+
VQQDEx5HbG9iYWxTaWduIENvZGVTaWduaW5nIENBIC0gRzIwHhcNMTMxMDExMTUx
|
67
|
+
NTM4WhcNMTYxMDExMTUxNTM4WjBgMQswCQYDVQQGEwJVUzEWMBQGA1UECBMNTWFz
|
68
|
+
c2FjaHVzZXR0czEPMA0GA1UEBxMGQm9zdG9uMRMwEQYDVQQKEwpSYXBpZDcgTExD
|
69
|
+
MRMwEQYDVQQDEwpSYXBpZDcgTExDMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
70
|
+
CgKCAQEAhD//7+739c69hssg0mD6CXgf2JkuWTcU81dgD7aKcoEPqU8e1FseBvDW
|
71
|
+
/Q5fNK2H2NgHV/Msn18zXuK0PkaJXqj/vDsuKB3Hq0BiR2AwyDdEw8K5MK5bgQc2
|
72
|
+
tmcVtEAejRoy1Uv5UyfaAYAxG6zsma3buV1fjnEAC3VouRg4+EX/f65H/a6srntK
|
73
|
+
5Etp3D71k2f0oUl8dOqOmSsRJQQ5zSs4ktDvpjAmsvzoA+1svceLYU95mvQsIw2T
|
74
|
+
edpmibGMwGw/HmgV+YWBgF5UGvax6zbC2i6DF2YHnDfkNb8/1MEIaxOTAbJTazTK
|
75
|
+
8laCQOyay6L1BNPQKjZBgOge8LZq1wIDAQABo4IBizCCAYcwDgYDVR0PAQH/BAQD
|
76
|
+
AgeAMEwGA1UdIARFMEMwQQYJKwYBBAGgMgEyMDQwMgYIKwYBBQUHAgEWJmh0dHBz
|
77
|
+
Oi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAkGA1UdEwQCMAAwEwYD
|
78
|
+
VR0lBAwwCgYIKwYBBQUHAwMwPgYDVR0fBDcwNTAzoDGgL4YtaHR0cDovL2NybC5n
|
79
|
+
bG9iYWxzaWduLmNvbS9ncy9nc2NvZGVzaWduZzIuY3JsMIGGBggrBgEFBQcBAQR6
|
80
|
+
MHgwQAYIKwYBBQUHMAKGNGh0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2Fj
|
81
|
+
ZXJ0L2dzY29kZXNpZ25nMi5jcnQwNAYIKwYBBQUHMAGGKGh0dHA6Ly9vY3NwMi5n
|
82
|
+
bG9iYWxzaWduLmNvbS9nc2NvZGVzaWduZzIwHQYDVR0OBBYEFE536JwFx9SpaEi3
|
83
|
+
w8pcq2GRFA5BMB8GA1UdIwQYMBaAFAhu2Lacir/tPtfDdF3MgB+oL1B6MA0GCSqG
|
84
|
+
SIb3DQEBBQUAA4IBAQAGpGXHtFLjTTivV+xQPwtZhfPuJ7f+VGTMSAAYWmfzyHXM
|
85
|
+
YMFYUWJzSFcuVR2YfxtbS45P7U5Qopd7jBQ0Ygk5h2a+B5nE4+UlhHj665d0zpYM
|
86
|
+
1eWndMaO6WBOYnqtNyi8Dqqc1foKZDNHEDggYhGso7OIBunup+N4sPL9PwQ3eYe6
|
87
|
+
mUu8z0E4GXYViaMPOFkqaYnoYgf2L+7L5zKYT4h/NE/P7kj7EbduHgy/v/aAIrNl
|
88
|
+
2SpuQH+SWteq3NXkAmFEEqvLJQ4sbptZt8OP8ghL3pVAvZNFmww/YVszSkShSzcg
|
89
|
+
QdihYCSEL2drS2cFd50jBeq71sxUtxbv82DUa2b+
|
90
|
+
-----END CERTIFICATE-----
|
91
|
+
date: 2015-04-17 00:00:00.000000000 Z
|
92
|
+
dependencies:
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: bundler
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '1.3'
|
100
|
+
type: :development
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - "~>"
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '1.3'
|
107
|
+
- !ruby/object:Gem::Dependency
|
108
|
+
name: rake
|
109
|
+
requirement: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
type: :development
|
115
|
+
prerelease: false
|
116
|
+
version_requirements: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
- !ruby/object:Gem::Dependency
|
122
|
+
name: gem-release
|
123
|
+
requirement: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
128
|
+
type: :development
|
129
|
+
prerelease: false
|
130
|
+
version_requirements: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '0'
|
135
|
+
description: Compiled binaries for Metasploit's Meterpreter
|
136
|
+
email:
|
137
|
+
- oj@buffered.io
|
138
|
+
- tod_beardsley@rapid7.com
|
139
|
+
- chris_doughty@rapid7.com
|
140
|
+
- brent_cook@rapid7.com
|
141
|
+
executables: []
|
142
|
+
extensions: []
|
143
|
+
extra_rdoc_files: []
|
144
|
+
files:
|
145
|
+
- ".gitignore"
|
146
|
+
- CONTRIBUTING.md
|
147
|
+
- Gemfile
|
148
|
+
- LICENSE
|
149
|
+
- README.md
|
150
|
+
- Rakefile
|
151
|
+
- build.sh
|
152
|
+
- data/java/com/metasploit/meterpreter/MemoryBufferURLConnection.class
|
153
|
+
- data/java/com/metasploit/meterpreter/MemoryBufferURLStreamHandler.class
|
154
|
+
- data/java/javapayload/stage/Meterpreter.class
|
155
|
+
- data/java/javapayload/stage/Shell.class
|
156
|
+
- data/java/javapayload/stage/Stage.class
|
157
|
+
- data/java/javapayload/stage/StreamForwarder.class
|
158
|
+
- data/java/metasploit/AESEncryption.class
|
159
|
+
- data/java/metasploit/JMXPayload.class
|
160
|
+
- data/java/metasploit/JMXPayloadMBean.class
|
161
|
+
- data/java/metasploit/Payload.class
|
162
|
+
- data/java/metasploit/PayloadServlet.class
|
163
|
+
- data/java/metasploit/PayloadTrustManager.class
|
164
|
+
- data/java/metasploit/RMILoader.class
|
165
|
+
- data/java/metasploit/RMIPayload.class
|
166
|
+
- data/meterpreter/elevator.x64.dll
|
167
|
+
- data/meterpreter/elevator.x86.dll
|
168
|
+
- data/meterpreter/ext_server_espia.x64.dll
|
169
|
+
- data/meterpreter/ext_server_espia.x86.dll
|
170
|
+
- data/meterpreter/ext_server_extapi.x64.dll
|
171
|
+
- data/meterpreter/ext_server_extapi.x86.dll
|
172
|
+
- data/meterpreter/ext_server_incognito.x64.dll
|
173
|
+
- data/meterpreter/ext_server_incognito.x86.dll
|
174
|
+
- data/meterpreter/ext_server_kiwi.x64.dll
|
175
|
+
- data/meterpreter/ext_server_kiwi.x86.dll
|
176
|
+
- data/meterpreter/ext_server_lanattacks.x64.dll
|
177
|
+
- data/meterpreter/ext_server_lanattacks.x86.dll
|
178
|
+
- data/meterpreter/ext_server_mimikatz.x64.dll
|
179
|
+
- data/meterpreter/ext_server_mimikatz.x86.dll
|
180
|
+
- data/meterpreter/ext_server_networkpug.lso
|
181
|
+
- data/meterpreter/ext_server_priv.x64.dll
|
182
|
+
- data/meterpreter/ext_server_priv.x86.dll
|
183
|
+
- data/meterpreter/ext_server_sniffer.lso
|
184
|
+
- data/meterpreter/ext_server_sniffer.x64.dll
|
185
|
+
- data/meterpreter/ext_server_sniffer.x86.dll
|
186
|
+
- data/meterpreter/ext_server_stdapi.jar
|
187
|
+
- data/meterpreter/ext_server_stdapi.lso
|
188
|
+
- data/meterpreter/ext_server_stdapi.php
|
189
|
+
- data/meterpreter/ext_server_stdapi.x64.dll
|
190
|
+
- data/meterpreter/ext_server_stdapi.x86.dll
|
191
|
+
- data/meterpreter/meterpreter.jar
|
192
|
+
- data/meterpreter/meterpreter.php
|
193
|
+
- data/meterpreter/metsrv.x64.dll
|
194
|
+
- data/meterpreter/metsrv.x86.dll
|
195
|
+
- data/meterpreter/msflinker_linux_x86.bin
|
196
|
+
- data/meterpreter/screenshot.x64.dll
|
197
|
+
- data/meterpreter/screenshot.x86.dll
|
198
|
+
- lib/metasploit-payloads.rb
|
199
|
+
- lib/metasploit-payloads/version.rb
|
200
|
+
- metasploit-payloads.gemspec
|
201
|
+
homepage: http://www.metasploit.com
|
202
|
+
licenses:
|
203
|
+
- 3-clause (or "modified") BSD
|
204
|
+
metadata: {}
|
205
|
+
post_install_message:
|
206
|
+
rdoc_options: []
|
207
|
+
require_paths:
|
208
|
+
- lib
|
209
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
210
|
+
requirements:
|
211
|
+
- - ">="
|
212
|
+
- !ruby/object:Gem::Version
|
213
|
+
version: '0'
|
214
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
215
|
+
requirements:
|
216
|
+
- - ">="
|
217
|
+
- !ruby/object:Gem::Version
|
218
|
+
version: '0'
|
219
|
+
requirements: []
|
220
|
+
rubyforge_project:
|
221
|
+
rubygems_version: 2.4.3
|
222
|
+
signing_key:
|
223
|
+
specification_version: 4
|
224
|
+
summary: This gem contains the compiled binaries required to make Meterpreter function,
|
225
|
+
and eventually other payloads that require compiled binaries.
|
226
|
+
test_files: []
|
metadata.gz.sig
ADDED
Binary file
|