Skip to content

Commit 5798470

Browse files
committed
Resolve merge conflict with Gemfile
2 parents 76c6f8c + 6b4b523 commit 5798470

File tree

3,182 files changed

+5537
-5361
lines changed

Some content is hidden

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

3,182 files changed

+5537
-5361
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
## Steps to reproduce
2+
3+
How'd you do it?
4+
5+
1. ...
6+
2. ...
7+
8+
This section should also tell us any relevant information about the
9+
environment; for example, if an exploit that used to work is failing,
10+
tell us the victim operating system and service versions.
11+
12+
## Expected behavior
13+
14+
What should happen?
15+
16+
## Current behavior
17+
18+
What happens instead?
19+
20+
You might also want to check the last ~1k lines of
21+
`/opt/metasploit/apps/pro/engine/config/logs/framework.log` or
22+
`~/.msf4/logs/framework.log` for relevant stack traces
23+
24+
25+
## System stuff
26+
27+
### Metasploit version
28+
29+
Get this with the `version` command in msfconsole (or `git log -1 --pretty=oneline` for a source install).
30+
31+
### I installed Metasploit with:
32+
- [ ] Kali package via apt
33+
- [ ] Omnibus installer (nightly)
34+
- [ ] Commercial/Community installer (from http://www.rapid7.com/products/metasploit/download.jsp)
35+
- [ ] Source install (please specify ruby version)
36+
37+
### OS
38+
39+
What OS are you running Metasploit on?
40+
41+

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
Tell us what this change does. If you're fixing a bug, please mention
3+
the github issue number.
4+
5+
## Verification
6+
7+
List the steps needed to make sure this thing works
8+
9+
- [ ] Start `msfconsole`
10+
- [ ] `use exploit/windows/smb/ms08_067_netapi`
11+
- [ ] ...
12+
- [ ] **Verify** the thing does what it should
13+
- [ ] **Verify** the thing does not do what it should not
14+

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ m-1-k-3 <m-1-k-3@github> Michael Messner <[email protected]>
114114
Meatballs1 <Meatballs1@github> <[email protected]>
115115
Meatballs1 <Meatballs1@github> <[email protected]>
116116
mubix <mubix@github> Rob Fuller <[email protected]>
117+
net-ninja <[email protected]> Steven Seeley <[email protected]>
117118
nevdull77 <nevdull77@github> Patrik Karlsson <[email protected]>
118119
nmonkee <nmonkee@github> nmonkee <[email protected]>
119120
nullbind <nullbind@github> nullbind <[email protected]>

.travis.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
1+
sudo: false
2+
group: stable
13
bundler_args: --without coverage development pcap
24
cache: bundler
5+
addons:
6+
postgresql: '9.3'
7+
apt:
8+
packages:
9+
- libpcap-dev
10+
- graphviz
11+
language: ruby
12+
rvm:
13+
- '2.1.8'
14+
315
env:
416
- RAKE_TASKS="cucumber cucumber:boot" CREATE_BINSTUBS=true
517
- RAKE_TASKS=spec SPEC_OPTS="--tag content"
618
- RAKE_TASKS=spec SPEC_OPTS="--tag ~content"
719

8-
language: ruby
920
matrix:
1021
fast_finish: true
1122
before_install:
@@ -23,9 +34,6 @@ before_script:
2334
script:
2435
# fail build if db/schema.rb update is not committed
2536
- git diff --exit-code db/schema.rb && bundle exec rake $RAKE_TASKS
26-
sudo: false
27-
rvm:
28-
- '2.1.8'
2937

3038
notifications:
3139
irc: "irc.freenode.org#msfnotify"
@@ -37,10 +45,4 @@ git:
3745
branches:
3846
except:
3947
- gh-pages
40-
- metakitty
41-
42-
addons:
43-
postgresql: '9.3'
44-
apt:
45-
packages:
46-
- libpcap-dev
48+
- metakitty

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ group :development do
2020
gem 'pry'
2121
# module documentation
2222
gem 'octokit', '~> 4.0'
23+
# rails-upgrade staging gems
2324
end
2425

2526
group :development, :test do

Gemfile.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
metasploit-framework (4.11.13)
4+
metasploit-framework (4.11.18)
55
actionpack (>= 4.0.9, < 4.1.0)
66
activerecord (>= 4.0.9, < 4.1.0)
77
activesupport (>= 4.0.9, < 4.1.0)
@@ -10,11 +10,11 @@ PATH
1010
jsobfu (~> 0.4.1)
1111
json
1212
metasm (~> 1.0.2)
13-
metasploit-concern (= 1.0.0)
14-
metasploit-credential (= 1.0.1)
15-
metasploit-model (= 1.0.0)
16-
metasploit-payloads (= 1.1.1)
17-
metasploit_data_models (= 1.2.11)
13+
metasploit-concern
14+
metasploit-credential (= 1.1.0)
15+
metasploit-model (= 1.1.0)
16+
metasploit-payloads (= 1.1.3)
17+
metasploit_data_models (= 1.3.0)
1818
msgpack
1919
network_interface (~> 0.0.1)
2020
nokogiri
@@ -65,7 +65,7 @@ GEM
6565
childprocess (>= 0.3.6)
6666
cucumber (>= 1.1.1)
6767
rspec-expectations (>= 2.7.0)
68-
bcrypt (3.1.10)
68+
bcrypt (3.1.11)
6969
builder (3.1.4)
7070
capybara (2.4.4)
7171
mime-types (>= 1.16)
@@ -111,29 +111,29 @@ GEM
111111
mail (2.6.3)
112112
mime-types (>= 1.16, < 3)
113113
metasm (1.0.2)
114-
metasploit-concern (1.0.0)
114+
metasploit-concern (1.1.0)
115115
activerecord (>= 4.0.9, < 4.1.0)
116116
activesupport (>= 4.0.9, < 4.1.0)
117117
railties (>= 4.0.9, < 4.1.0)
118-
metasploit-credential (1.0.1)
119-
metasploit-concern (~> 1.0)
120-
metasploit-model (~> 1.0)
121-
metasploit_data_models (~> 1.0)
118+
metasploit-credential (1.1.0)
119+
metasploit-concern (~> 1.1)
120+
metasploit-model (~> 1.1)
121+
metasploit_data_models (~> 1.3)
122122
pg
123123
railties
124124
rubyntlm
125125
rubyzip (~> 1.1)
126-
metasploit-model (1.0.0)
126+
metasploit-model (1.1.0)
127127
activemodel (>= 4.0.9, < 4.1.0)
128128
activesupport (>= 4.0.9, < 4.1.0)
129129
railties (>= 4.0.9, < 4.1.0)
130-
metasploit-payloads (1.1.1)
131-
metasploit_data_models (1.2.11)
130+
metasploit-payloads (1.1.3)
131+
metasploit_data_models (1.3.0)
132132
activerecord (>= 4.0.9, < 4.1.0)
133133
activesupport (>= 4.0.9, < 4.1.0)
134134
arel-helpers
135-
metasploit-concern (~> 1.0)
136-
metasploit-model (~> 1.0)
135+
metasploit-concern (~> 1.1)
136+
metasploit-model (~> 1.1)
137137
pg
138138
postgres_ext
139139
railties (>= 4.0.9, < 4.1.0)

config/cucumber.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ ignored_tags = "--tags ~@boot --tags ~@targets"
66
%>
77
default: <%= std_opts %> <%= ignored_tags %> features
88
boot: <%= std_opts %> --tags @boot features
9+
exploit: <%= std_opts %> --tags @targets features
910
wip: --tags @wip:3 --wip features
10-
rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
11+
rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip

data/exploits/R7_2015_17/stream.raw

2.44 KB
Binary file not shown.

0 commit comments

Comments
 (0)