Skip to content

Commit be36b46

Browse files
committed
Merge branch 'master' into freefloatftp_user
2 parents 96f3a2d + e3eef76 commit be36b46

File tree

7,732 files changed

+9301
-971169
lines changed

Some content is hidden

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

7,732 files changed

+9301
-971169
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.bundle
12
# Rubymine project directory
23
.idea
34
# RVM control file

.mailmap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jvazquez-r7 <jvazquez-r7@github> jvazquez-r7 <[email protected]>
66
hmoore-r7 <hmoore-r7@github> HD Moore <[email protected]>
77
hmoore-r7 <hmoore-r7@github> HD Moore <[email protected]>
88
jlee-r7 <jlee-r7@github> James Lee <[email protected]> # aka egypt
9+
jlee-r7 <jlee-r7@github> egypt <[email protected]> # aka egypt
910
jlee-r7 <jlee-r7@github> James Lee <[email protected]>
1011
dmaloney-r7 <dmaloney-r7@github> David Maloney <[email protected]> # aka TheLightCosine
1112
dmaloney-r7 <dmaloney-r7@github> David Maloney <[email protected]>
@@ -49,6 +50,8 @@ mubix <mubix@github> Rob Fuller <[email protected]>
4950
nmonkee <nmonkee@github> nmonkee <[email protected]>
5051
rsmudge <rsmudge@github> Raphael Mudge <[email protected]> # Aka `butane
5152
m-1-k-3 <m-1-k-3@github> m-1-k-3 <[email protected]>
53+
m-1-k-3 <m-1-k-3@github> m-1-k-3 <[email protected]>
54+
m-1-k-3 <m-1-k-3@github> m-1-k-3 <[email protected]>
5255
kost <kost@github> Vlatko Kosturjak <[email protected]>
5356
ohdae <ohdae@github> ohdae <[email protected]>
5457
schierlm <schierlm@github> Michael Schierl <[email protected]> # Aka mihi

Gemfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gem 'activerecord'
77
# Needed for some admin modules (scrutinizer_add_user.rb)
88
gem 'json'
99
# Database models shared between framework and Pro.
10-
gem 'metasploit_data_models', :git => 'git://github.com/rapid7/metasploit_data_models.git', :tag => '0.6.3'
10+
gem 'metasploit_data_models', :git => 'git://github.com/rapid7/metasploit_data_models.git', :tag => '0.6.4'
1111
# Needed by msfgui and other rpc components
1212
gem 'msgpack'
1313
# Needed by anemone crawler
@@ -27,11 +27,19 @@ group :development do
2727
end
2828

2929
group :development, :test do
30+
# supplies factories for producing model instance for specs
31+
# Version 4.1.0 or newer is needed to support generate calls without the
32+
# 'FactoryGirl.' in factory definitions syntax.
33+
gem 'factory_girl', '>= 4.1.0'
3034
# running documentation generation tasks and rspec tasks
3135
gem 'rake'
3236
end
3337

3438
group :test do
39+
# Removes records from database created during tests. Can't use rspec-rails'
40+
# transactional fixtures because multiple connections are in use so
41+
# transactions won't work.
42+
gem 'database_cleaner'
3543
# testing framework
3644
gem 'rspec', '>= 2.12'
3745
# code coverage for tests

Gemfile.lock

Lines changed: 22 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
GIT
22
remote: git://github.com/rapid7/metasploit_data_models.git
3-
revision: bf26ddf71e7ba2f66d3ba528fc67029f5c6a6135
4-
tag: 0.6.3
3+
revision: d6af3cf0413c1ad317c16c143791097bd0a5afff
4+
tag: 0.6.4
55
specs:
6-
metasploit_data_models (0.6.3)
6+
metasploit_data_models (0.6.4)
77
activerecord (>= 3.2.13)
88
activesupport
99
pg
10-
pry
1110

1211
GEM
1312
remote: http://rubygems.org/
@@ -25,45 +24,43 @@ GEM
2524
multi_json (~> 1.0)
2625
arel (3.0.2)
2726
builder (3.0.4)
28-
coderay (1.0.9)
29-
diff-lcs (1.1.3)
27+
database_cleaner (0.9.1)
28+
diff-lcs (1.2.2)
29+
factory_girl (4.2.0)
30+
activesupport (>= 3.0.0)
3031
i18n (0.6.1)
3132
json (1.7.7)
32-
method_source (0.8.1)
33-
msgpack (0.5.2)
33+
msgpack (0.5.4)
3434
multi_json (1.0.4)
35-
nokogiri (1.5.6)
35+
nokogiri (1.5.9)
3636
pcaprub (0.11.3)
37-
pg (0.14.1)
38-
pry (0.9.12)
39-
coderay (~> 1.0.5)
40-
method_source (~> 0.8)
41-
slop (~> 3.4)
42-
rake (10.0.2)
37+
pg (0.15.0)
38+
rake (10.0.4)
4339
redcarpet (2.2.2)
4440
robots (0.10.1)
45-
rspec (2.12.0)
46-
rspec-core (~> 2.12.0)
47-
rspec-expectations (~> 2.12.0)
48-
rspec-mocks (~> 2.12.0)
49-
rspec-core (2.12.1)
50-
rspec-expectations (2.12.0)
51-
diff-lcs (~> 1.1.3)
52-
rspec-mocks (2.12.0)
41+
rspec (2.13.0)
42+
rspec-core (~> 2.13.0)
43+
rspec-expectations (~> 2.13.0)
44+
rspec-mocks (~> 2.13.0)
45+
rspec-core (2.13.1)
46+
rspec-expectations (2.13.0)
47+
diff-lcs (>= 1.1.3, < 2.0)
48+
rspec-mocks (2.13.0)
5349
simplecov (0.5.4)
5450
multi_json (~> 1.0.3)
5551
simplecov-html (~> 0.5.3)
5652
simplecov-html (0.5.3)
57-
slop (3.4.4)
5853
tzinfo (0.3.37)
59-
yard (0.8.3)
54+
yard (0.8.5.2)
6055

6156
PLATFORMS
6257
ruby
6358

6459
DEPENDENCIES
6560
activerecord
6661
activesupport (>= 3.0.0)
62+
database_cleaner
63+
factory_girl (>= 4.1.0)
6764
json
6865
metasploit_data_models!
6966
msgpack

HACKING

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,15 @@ Non-scanner aux modules use run().
110110
Submitting Your Code
111111
====================
112112

113-
The process for submitting new modules via GitHub is documented here:
113+
To get started with a Metasploit Framework source clone, simply:
114+
115+
- Fork rapid7/metasploit-framework to your GitHub account
116+
- git clone git://github.com/YourName/metasploit-framework.git
117+
- gem install bundler
118+
- bundle install
119+
120+
More detailed documentation regarding the process for submitting new
121+
modules via GitHub is documented here:
114122

115123
https://github.com/rapid7/metasploit-framework/wiki/Metasploit-Development-Environment
116124

LICENSE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ License: BSD-3-clause
1212
#
1313
# This license does not apply to third-party components detailed below.
1414
#
15+
# Last updated: 2013-Mar-25
16+
#
1517

1618
Files: data/john/*
1719
Copyright: 1996-2011 Solar Designer.
4.13 KB
Binary file not shown.
354 Bytes
Binary file not shown.
Binary file not shown.
490 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)