Skip to content

Commit 12198a0

Browse files
author
Brent Cook
committed
Land rapid7#8716, print_* normalization, url and splat updates, rubocop fixes
2 parents a0511c7 + 6300758 commit 12198a0

File tree

3,418 files changed

+4469
-7761
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,418 files changed

+4469
-7761
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ data/java
9090

9191
# Avoid checking in Meterpreter libs that are built from
9292
# private source. If you're interested in this functionality,
93-
# check out Metasploit Pro: http://metasploit.com/download
93+
# check out Metasploit Pro: https://metasploit.com/download
9494
data/meterpreter/ext_server_pivot.*.dll
9595

9696
# Avoid checking in metakitty, the source for

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ data/java
7878

7979
# Avoid checking in Meterpreter libs that are built from
8080
# private source. If you're interested in this functionality,
81-
# check out Metasploit Pro: http://metasploit.com/download
81+
# check out Metasploit Pro: https://metasploit.com/download
8282
data/meterpreter/ext_server_pivot.*.dll
8383

8484
# Avoid checking in metakitty, the source for

.rubocop.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,22 @@ Metrics/ClassLength:
1414
Exclude:
1515
- 'modules/**/*'
1616

17+
Metrics/AbcSize:
18+
Enabled: false
19+
Description: 'This is often a red-herring'
20+
21+
Metrics/CyclomaticComplexity:
22+
Enabled: false
23+
Description: 'This is often a red-herring'
24+
25+
Metrics/PerceivedComplexity:
26+
Enabled: false
27+
Description: 'This is often a red-herring'
28+
29+
Style/FrozenStringLiteralComment:
30+
Enabled: false
31+
Description: 'We cannot support this yet without a lot of things breaking'
32+
1733
Style/Documentation:
1834
Enabled: true
1935
Description: 'Most Metasploit modules do not have class documentation.'

data/logos/3kom-superhack.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
| %bld[ OK ]%clr |
1616
|______________________________________________________________________________|
1717
| |
18-
| http://metasploit.com |
18+
| https://metasploit.com |
1919
|______________________________________________________________________________|%clr

data/logos/metasploit-shield.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
%bluMMMMMMMMMMNm,%clr %blueMMMMMNMMNMM%clr
1919
%bluMMMMNNMNMMMMMNx%clr %bluMMMMMMNMMNMMNM%clr
2020
%bluMMMMMMMMNMMNMMMMm+..+MMNMMNMNMMNMMNMM%clr
21-
%clr%bld http://metasploit.com
21+
%clr%bld https://metasploit.com

data/logos/missile-command.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
################################################################################
2828
# %bldWAVE 4%clr ######## %bldSCORE 31337%clr ################################## %bldHIGH FFFFFFFF%clr #
2929
################################################################################
30-
http://metasploit.com%clr
30+
https://metasploit.com%clr

data/logos/ninja.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
# # ### # # ##
2828
########################
2929
## ## ## ##
30-
http://metasploit.com%clr
30+
https://metasploit.com%clr

data/logos/r7-metasploit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
22
%% %%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33
%% %% %%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4-
%% % %%%%%%%% %%%%%%%%%%% http://metasploit.com %%%%%%%%%%%%%%%%%%%%%%%%%
4+
%% % %%%%%%%% %%%%%%%%%%% https://metasploit.com %%%%%%%%%%%%%%%%%%%%%%%%%
55
%% %% %%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
66
%% %%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
77
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

data/logos/wake-up-neo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
; ,''-,;' ``-
2424
``-..__``--`
2525

26-
http://metasploit.com%clr
26+
https://metasploit.com%clr

data/msfcrawler/basic.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
##
2-
# This module requires Metasploit: http://metasploit.com/download
2+
# This module requires Metasploit: https://metasploit.com/download
33
# Current source: https://github.com/rapid7/metasploit-framework
44
##
55

0 commit comments

Comments
 (0)