Updated to detect automatic file paths in /var/www/html

This commit is contained in:
TrustedSec 2015-08-21 17:50:08 -04:00
parent b2705c537f
commit 2183393c78
5 changed files with 5 additions and 0 deletions

View file

@ -4,6 +4,7 @@ version 6.5.4
* fixed pdf template creation when using file format attack vector on option number one - was due to msfcli being removed - converted over to msfconsole
* fixed using infectious media generator using pdf template
* added automatic detection of /var/www/html or /var/www
~~~~~~~~~~~~~~~~
version 6.5.3

View file

@ -42,6 +42,7 @@ for line in apache_check:
line2=line2.rstrip()
apache_path=line2.replace("APACHE_DIRECTORY=","")
apache=1
if os.path.isdir(apache_path + "/html"): apache_path = apache_path + "/html"
###################################################
# USER INPUT: SHOW PAYLOAD MENU #

View file

@ -81,6 +81,7 @@ def web_server_start():
apache_check = check_config("APACHE_SERVER=").lower()
if apache_check == "on" or track_email == "on":
apache_path = check_config("APACHE_DIRECTORY=")
if os.path.isdir(apache_path + "/html"): apache_path = apache_path + "/html"
apache = 1
if operating_system == "windows": apache = 0

View file

@ -431,6 +431,7 @@ def run():
try:
apache_dir = check_config("APACHE_DIRECTORY=")
if os.path.isdir(apache_dir + "/html"): apache_dir = apache_dir + "/html"
print bcolors.GREEN + "Apache webserver is set to ON. Copying over PHP file to the website."
except Exception, e:
print e

View file

@ -337,6 +337,7 @@ try:
filewrite.close()
print_status("Copying over files to Apache server...")
apache_dir = check_config("APACHE_DIRECTORY=")
if os.path.isdir apache_dir + "/html": apache_dir = apache_dir + "/html"
shutil.copyfile(setdir + "/web_clone/index.html", apache_dir + "/index.html")
shutil.copyfile(setdir + "/Launcher.hta", apache_dir + "/Launcher.hta")