Skip to content

Commit 452fc6b

Browse files
David MaloneyDavid Maloney
authored andcommitted
Merge branch 'feature/MSP-12357/meterp-ntds' into feature/MSP-12358/ntds-dump-module
2 parents 0e666d5 + 6e813f6 commit 452fc6b

File tree

163 files changed

+4802
-2160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+4802
-2160
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,10 @@ external/source/exploits/**/Debug
6666
external/source/exploits/**/Release
6767

6868
# Avoid checking in Meterpreter binaries. These are supplied upstream by
69-
# the meterpreter_bins gem.
69+
# the metasploit-payloads gem.
7070
data/meterpreter/*.dll
71+
data/meterpreter/*.bin
72+
data/meterpreter/*.lso
7173

7274
# Avoid checking in Meterpreter libs that are built from
7375
# private source. If you're interested in this functionality,

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.5
1+
2.1.6

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ script:
2525
- git diff --exit-code && bundle exec rake $RAKE_TASKS
2626
sudo: false
2727
rvm:
28-
- '2.1'
28+
- '2.1.6'
2929

3030
notifications:
3131
irc: "irc.freenode.org#msfnotify"
@@ -40,4 +40,4 @@ branches:
4040
- metakitty
4141

4242
addons:
43-
postgresql: '9.3'
43+
postgresql: '9.3'

Gemfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ group :coverage do
88
# code coverage for tests
99
# any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
1010
# see: https://github.com/colszowka/simplecov/issues/127 (hopefully fixed in 0.8.0)
11-
gem 'simplecov', '0.5.4', :require => false
11+
gem 'simplecov'
1212
end
1313

1414
group :db do
@@ -25,12 +25,8 @@ group :development do
2525
end
2626

2727
group :development, :test do
28-
# supplies factories for producing model instance for specs
29-
# Version 4.1.0 or newer is needed to support generate calls without the
30-
# 'FactoryGirl.' in factory definitions syntax.
31-
gem 'factory_girl', '>= 4.1.0'
3228
# automatically include factories from spec/factories
33-
gem 'factory_girl_rails'
29+
gem 'factory_girl_rails', '~> 4.5.0'
3430
# Make rspec output shorter and more useful
3531
gem 'fivemat', '1.2.1'
3632
# running documentation generation tasks and rspec tasks

0 commit comments

Comments
 (0)