Just randomize

bug/bundler_fix
jvazquez-r7 2014-11-05 15:53:06 -06:00
parent 79cabc6d68
commit c833888c32
1 changed files with 0 additions and 14 deletions

View File

@ -28,13 +28,6 @@ module Msf::Payload::JSP
var_in = Rex::Text.rand_text_alpha_lower(2)
var_out = Rex::Text.rand_text_alpha_lower(3)
# The 'out' name variable can cause conflicts
# when compiling the JSP under Tomcat with the
# JASPER engine
while var_out == 'out'
var_out = Rex::Text.rand_text_alpha_lower(3)
end
jsp = <<-EOS
<%@page import="java.lang.*"%>
<%@page import="java.util.*"%>
@ -106,13 +99,6 @@ module Msf::Payload::JSP
var_in = Rex::Text.rand_text_alpha_lower(2)
var_out = Rex::Text.rand_text_alpha_lower(3)
# The 'out' name variable can cause conflicts
# when compiling the JSP under Tomcat with the
# JASPER engine
while var_out == 'out'
var_out = Rex::Text.rand_text_alpha_lower(3)
end
jsp = <<-EOS
<%@page import="java.lang.*"%>
<%@page import="java.util.*"%>