mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
b863978028
MSP-11368 MSP-11143 Remove fastlib as it slows down the code loading process. From the previous commit, the mean loading for `METASPLOIT_FRAMEWORK_PROFILE=true msfconsole -q -x exit` was 27.9530±0.3485 seconds (N=10). The mean after removal of fastlib was 17.9820±0.6497 seconds (N=10). This means an average 35.67% reduction in boot time.
29 lines
655 B
Ruby
Executable File
29 lines
655 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
#
|
|
# $Id$
|
|
# $Revision$
|
|
#
|
|
|
|
msfbase = __FILE__
|
|
while File.symlink?(msfbase)
|
|
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
|
|
end
|
|
|
|
$:.unshift(File.expand_path(File.join(File.dirname(msfbase), '..', 'lib')))
|
|
require 'msfenv'
|
|
|
|
$:.unshift(ENV['MSF_LOCAL_LIB']) if ENV['MSF_LOCAL_LIB']
|
|
|
|
require 'rex'
|
|
|
|
if (!(length = ARGV.shift))
|
|
$stderr.puts("Usage: #{File.basename($0)} length [set a] [set b] [set c]\n")
|
|
exit
|
|
end
|
|
|
|
# If the user supplied custom sets, use those. Otherwise, use the default
|
|
# sets.
|
|
sets = ARGV.length > 0 ? ARGV : Rex::Text::DefaultPatternSets
|
|
|
|
puts Rex::Text.pattern_create(length.to_i, sets)
|