Skip to content

Commit d9a6f5f

Browse files
committed
Merge remote-tracking branch 'upstream/master' into bug/web-vuln-logging
2 parents c497d5f + 09fc52f commit d9a6f5f

File tree

268 files changed

+4399
-2491
lines changed

Some content is hidden

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

268 files changed

+4399
-2491
lines changed

Gemfile

Lines changed: 1 addition & 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.4.0'
10+
gem 'metasploit_data_models', :git => 'git://github.com/rapid7/metasploit_data_models.git', :tag => '0.6.0'
1111
# Needed by msfgui and other rpc components
1212
gem 'msgpack'
1313
# Needed by anemone crawler

Gemfile.lock

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
GIT
22
remote: git://github.com/rapid7/metasploit_data_models.git
3-
revision: 448c1065329efea1eac76a3897f626f122666743
4-
tag: 0.4.0
3+
revision: 0285d6e199f125b33214100dcb0f4eeb12ee765f
4+
tag: 0.6.0
55
specs:
6-
metasploit_data_models (0.4.0)
6+
metasploit_data_models (0.6.0)
77
activerecord (>= 3.2.10)
88
activesupport
99
pg
@@ -12,33 +12,33 @@ GIT
1212
GEM
1313
remote: http://rubygems.org/
1414
specs:
15-
activemodel (3.2.11)
16-
activesupport (= 3.2.11)
15+
activemodel (3.2.12)
16+
activesupport (= 3.2.12)
1717
builder (~> 3.0.0)
18-
activerecord (3.2.11)
19-
activemodel (= 3.2.11)
20-
activesupport (= 3.2.11)
18+
activerecord (3.2.12)
19+
activemodel (= 3.2.12)
20+
activesupport (= 3.2.12)
2121
arel (~> 3.0.2)
2222
tzinfo (~> 0.3.29)
23-
activesupport (3.2.11)
23+
activesupport (3.2.12)
2424
i18n (~> 0.6)
2525
multi_json (~> 1.0)
2626
arel (3.0.2)
2727
builder (3.0.4)
28-
coderay (1.0.8)
28+
coderay (1.0.9)
2929
diff-lcs (1.1.3)
30-
i18n (0.6.1)
30+
i18n (0.6.4)
3131
json (1.7.7)
3232
method_source (0.8.1)
3333
msgpack (0.5.2)
3434
multi_json (1.0.4)
3535
nokogiri (1.5.6)
3636
pcaprub (0.11.3)
3737
pg (0.14.1)
38-
pry (0.9.10)
38+
pry (0.9.12)
3939
coderay (~> 1.0.5)
4040
method_source (~> 0.8)
41-
slop (~> 3.3.1)
41+
slop (~> 3.4)
4242
rake (10.0.2)
4343
redcarpet (2.2.2)
4444
robots (0.10.1)
@@ -54,8 +54,8 @@ GEM
5454
multi_json (~> 1.0.3)
5555
simplecov-html (~> 0.5.3)
5656
simplecov-html (0.5.3)
57-
slop (3.3.3)
58-
tzinfo (0.3.35)
57+
slop (3.4.3)
58+
tzinfo (0.3.36)
5959
yard (0.8.3)
6060

6161
PLATFORMS

Rakefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,16 @@ namespace :yard do
1616
'-',
1717
'COPYING',
1818
'HACKING',
19-
'THIRD-PARTY.md'
19+
'LICENSE',
20+
'CONTRIBUTING.md',
2021
]
2122
yard_options = [
2223
# include documentation for protected methods for developers extending the code.
23-
'--protected'
24+
'--protected',
25+
# Don't bother with files meant to be examples
26+
'--exclude', 'samples/',
27+
'--exclude', '\.ut\.rb/',
28+
'--exclude', '\.ts\.rb/',
2429
]
2530

2631
YARD::Rake::YardocTask.new(:doc) do |t|

data/sql/migrate/20110610085000_move_old_imported_creds_to_new_files.rb

Lines changed: 0 additions & 127 deletions
This file was deleted.

external/source/shellcode/windows/x86/src/block/block_reverse_http.asm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ httpopenrequest:
4949
pop ecx
5050
xor edx, edx ; NULL
5151
push edx ; dwContext (NULL)
52-
push (0x80000000 | 0x04000000 | 0x00200000 | 0x00000200) ; dwFlags
52+
push (0x80000000 | 0x04000000 | 0x00200000 | 0x00000200 | 0x00400000) ; dwFlags
5353
;0x80000000 | ; INTERNET_FLAG_RELOAD
5454
;0x04000000 | ; INTERNET_NO_CACHE_WRITE
5555
;0x00200000 | ; INTERNET_FLAG_NO_AUTO_REDIRECT
56-
;0x00000200 ; INTERNET_FLAG_NO_UI
56+
;0x00000200 | ; INTERNET_FLAG_NO_UI
57+
;0x00400000 ; INTERNET_FLAG_KEEP_CONNECTION
5758
push edx ; accept types
5859
push edx ; referrer
5960
push edx ; version

lib/anemone/rex_http.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ def connection(url)
188188
context,
189189
url.scheme == "https",
190190
'SSLv23',
191-
@opts[:proxies]
191+
@opts[:proxies],
192+
@opts[:username],
193+
@opts[:password]
192194
)
193195

194196
conn.set_config(

lib/gemcache/ruby/1.9.1/gems/metasploit_data_models-0.4.0/Gemfile

Lines changed: 0 additions & 10 deletions
This file was deleted.

lib/gemcache/ruby/1.9.1/gems/metasploit_data_models-0.4.0/Rakefile

Lines changed: 0 additions & 7 deletions
This file was deleted.

lib/gemcache/ruby/1.9.1/gems/metasploit_data_models-0.4.0/app/models/mdm/web_vuln.rb

Lines changed: 0 additions & 16 deletions
This file was deleted.

lib/gemcache/ruby/1.9.1/gems/metasploit_data_models-0.4.0/lib/metasploit_data_models/base64_serializer.rb

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)