Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Bypass .htaccess protection on a folder?
3stripe
✭✭
Another non vanilla coding question for anyone who's bored but friendly...
I've got an htaccess protected folder... but need to allow a cgi script running on another host to access this folder... (long story)
I've tried the below which I found, but it's giving me nasty 500 Internal Server Errors, can anyone help with this?
I've got an htaccess protected folder... but need to allow a cgi script running on another host to access this folder... (long story)
I've tried the below which I found, but it's giving me nasty 500 Internal Server Errors, can anyone help with this?
<Directory /usr/local/apache/htdocs/sekrit>
AuthType Basic
AuthName intranet
AuthUserFile /www/passwd/users
AuthGroupFile /www/passwd/groups
Require group customers
Order allow,deny
Allow from external.com
Satisfy any
</Directory>
0
This discussion has been closed.
Comments
RewriteCond %{HTTP_REFERER} !friendlysite\.com [NC]
would work.Not those exact terms but along those lines.