vote up 4 vote down star
6

I have googled about it for quite some time, but couldn't find it.

I am on Ubuntu Linux and want to run a server on port 80, but due to security mechanism of Ubuntu, I get the following error:

java.net.BindException: Permission denied:80

I think it should be simple enough to either disable this security mechanism so that port 80 is available to all users, or to give necessary privilege to the current user to access port 80; but shame on me, can't figure that out.

flag

10 Answers

vote up -11 vote down check

Another solution is to make your app setuid so that it can bind with port 80. As root, do the following

chown root ./myapp
chmod +S ./myapp

Keep in mind that doing this, unless it's done absolutely right, will expose you to potential security holes, because your app will be talking to the network, and will be running with full root priviledges. If you take this solution, you should look at the source code for Apache or Lighttpd or something similar, where they use the root privileges to open up the port, but then immediately give up those privs and "become" a lower privileged user so that a hijacker can't take over your whole computer.

Update: As seen in this question, it appears that Linux kernels since 2.6.24 have a new capability that allow you to mark an executable (but not a script, of course) as having the "CAP_NET_BIND_SERVICE" capability. If you install the debian package "libcap2-bin", you can do that by issuing the command

setcap 'cap_net_bind_service=+ep' /path/to/program
link|flag
That is the same as running as root, unless the app knows how to drop priviledges. – CesarB Nov 10 '08 at 14:48
1  
This is dangerous. This means that any request will run as root. It's for a reason that even apache starts as root to bind, and then drops the privileges to another user. – Sunny Nov 10 '08 at 14:49
Subverting the restrictions Unix has on binding to port 80 is dangerous, whether you do it with setuid or with iptables hackery. – Paul Tomblin Nov 10 '08 at 14:53
Paul: the iptables is not so dangerous, because even if the app is compromised, it will not expose the system on attacks, at least not with root privileges. Running the app as root is another story. – Sunny Nov 10 '08 at 14:55
The danger for iptables is only if this is a mult-user system, as CesarB said, as anybody can bind to 8080, and intercept the traffic. – Sunny Nov 10 '08 at 14:57
show 6 more comments
vote up 38 vote down

Short answer: you can't. Ports below 1024 can be opened only by root.

The long answer: you can redirect connections on port 80 to some other port you can open as normal user.

Run as root:

# iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080

NOTE: The above solution is not well suited for multi-user systems, as any user can open port 8080 (or any other high port you decide to use), thus intercepting the traffic. (Credits to CesarB).

link|flag
I see others have posted faster than me. I'll leave my answer just for the iptables command line, but please, vote the other answers, not mine. – Sunny Nov 10 '08 at 14:42
@Sunny: upvotes are not for the fastest gun in the west, but for the best responses. Yours is the best so far (I only mentioned iptables; you actually provided the full command line). The only thing mine has yours doesn't is the caveat about other users also being able to bind to port 8080. – CesarB Nov 10 '08 at 14:45
CesarB: anyway, you have your +1. – Sunny Nov 10 '08 at 15:29
vote up 14 vote down

Traditionally on Unix, only root can bind to low ports (<1024).

The simplest way to work around this is to run your server on a high port (for instance, 8080) and use a simple iptables rule to forward the connections from port 80 to port 8080. Note that with this you lose the extra protection from the low ports; any user on your machine can bind to port 8080.

link|flag
vote up 6 vote down

If your system supports it you could maybe use capabilities. See man capabilities, the one you need would be CAP_NET_BIND_SERVICE. No, I`ve never used them myself and I don't know if they really work :-)

link|flag
vote up 3 vote down

Use authbind.

It even works with Java if you enable Java's IPv4-only stack. I use:

authbind --deep $JAVA_HOME/bin/java -Djava.net.preferIPv4Stack ...
link|flag
thanks for this! – jldupont Oct 9 at 15:02
vote up 0 vote down

One solution is to use iptables to perform PAT on packets for port 80. You can use this to route the packets to local port 8080, for example. Be sure and adjust the outgoing packets back to port 80.

In my experience the fine-grained permissions features of Linux are not compiled into standard kernels because of security issues.

link|flag
vote up 0 vote down

Use sudo.

Configure sudo so that the regular user can run appropriate commands:

/etc/init.d/httpd start

Or

apachectl stop

Or

/usr/local/apache2/apachectl restart

Or

/myapp/myappbin start

(Or whatever other command/script you use to start/stop you particular webserver/app)

link|flag
This has the same issue -- running a service as root is a bad practice. – Kevin Panko Sep 9 at 18:44
vote up 0 vote down

If you are trying to do this so that a user-run command can use port 80, then your only solutions are the iptables tricks or setting the executable setuid-to-root.

The way something like Apache does this (it binds to port 80, but is running as someone other than root) is to run as root, bind to the port, then change the ownership of the process to the non-privileged user after the port is set up. If the app you are writing can be run by root, you can make it change owner to the non-priv user after the ports are set up. But if this is just for an average user to run from the command line, then you'll have to use one of the other solutions.

link|flag
vote up 0 vote down

With Linux, you have some two other options:

Both extensions to the Linux kernel allow to grant access rights on a very fine grained level. This would allow you to grant this process to open port 80 but it wouldn't inherit any of the other root rights.

From what I've heard, grsecurity is much more simple to use but SELinux is more secure.

link|flag
vote up 0 vote down

When I have various web serving applications (python scripts, tomcat engines, ...) that I don't want to run as root I usually configure an apache web server in front of them. Apache listens to port 80, and tomcat listens to 8080.

In apache:s config:

ProxyPass /webapp http://localhost:8080/webapp
ProxyPassReverse /webapp http://localhost:8080/webapp

See the mod-proxy documentation for more info: http://httpd.apache.org/docs/2.2/mod/mod_proxy.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.