Skip to content

Commit e8def29

Browse files
committed
Dropping all twitter handles
Also adds "pbot" as an accepted lowercase word. This will come up pretty routinley for functions and stuff.
1 parent 9d07686 commit e8def29

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

modules/exploits/multi/misc/pbot_exec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def initialize(info = {})
2828
[
2929
'evilcry', # pbot analysis'
3030
'Jay Turla', # pbot analysis
31-
'@bwallHatesTwits', # PoC
31+
'bwall', # aka @bwallHatesTwits, PoC
3232
'juan vazquez' # Metasploit module
3333
],
3434
'License' => MSF_LICENSE,

modules/exploits/windows/browser/adobe_cooltype_sing.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ def initialize(info = {})
2525
'Author' =>
2626
[
2727
'Unknown', # 0day found in the wild
28-
'@sn0wfl0w', # initial analysis
29-
'@vicheck', # initial analysis
28+
'sn0wfl0w', # initial analysis, also @vicheck on twitter
3029
'jduck' # Metasploit module
3130
],
3231
'References' =>

modules/exploits/windows/browser/ms10_090_ie_css_clip.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def initialize(info = {})
4949
'Author' =>
5050
[
5151
'unknown', # discovered in the wild
52-
'@yuange1975', # PoC posted to twitter
52+
'Yuange', # PoC posted to twitter under @yuange1975
5353
'Matteo Memelli', # exploit-db version
5454
'jduck' # Metasploit module
5555
],

modules/exploits/windows/fileformat/adobe_cooltype_sing.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ def initialize(info = {})
2525
'Author' =>
2626
[
2727
'Unknown', # 0day found in the wild
28-
'@sn0wfl0w', # initial analysis
29-
'@vicheck', # initial analysis
28+
'sn0wfl0w', # initial analysis, also @vicheck on twitter
3029
'jduck' # Metasploit module
3130
],
3231
'References' =>

tools/msftidy.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def check_badchars
204204
end
205205

206206
if author_name =~ /^@.+$/
207-
error("No Twitter handle, please. Try leaving it in a comment instead.")
207+
error("No Twitter handles, please. Try leaving it in a comment instead.")
208208
end
209209

210210
if not author_name.ascii_only?
@@ -281,6 +281,7 @@ def check_title_casing
281281
words.each do |word|
282282
if %w{and or the for to in of as with a an on at}.include?(word)
283283
next
284+
elsif %w{pbot}.include?(word)
284285
elsif word =~ /^[a-z]+$/
285286
warn("Improper capitalization in module title: '#{word}'")
286287
end

0 commit comments

Comments
 (0)