From 63bcbdc8db38967c3b554599ceb6a6f70a210550 Mon Sep 17 00:00:00 2001 From: William Vu Date: Wed, 10 Oct 2018 11:23:49 -0500 Subject: [PATCH] Remove unknown author mapping in author.rb No one was using it and instead writing "Unknown" directly. It was also producing an invalid e-mail address. --- lib/msf/core/author.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/msf/core/author.rb b/lib/msf/core/author.rb index 6dab2bee99..e88ed6164c 100644 --- a/lib/msf/core/author.rb +++ b/lib/msf/core/author.rb @@ -16,7 +16,6 @@ class Msf::Author # A hash that maps known author names to email addresses KNOWN = { 'amaloteaux' => 'alex_maloteaux' + 0x40.chr + 'metasploit.com', - 'anonymous' => 'Unknown', 'aushack' => 'patrick' + 0x40.chr + 'osisecurity.com.au', 'bannedit' => 'bannedit' + 0x40.chr + 'metasploit.com', 'Carlos Perez' => 'carlos_perez' + 0x40.chr + 'darkoperator.com',