Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Security in Node.JS Webserver

So, I'm in the middle of learning my way around Node.JS, and so far I'm loving it. I've got a couple projects already at work that I think I can utilize nodejs in.

I'm worried, though, about security. If I write a custom webserver using Node.JS's http module, am I likely to be super vulnerable to attacks? Apache/IIS have had years (and years and years) of professional teams building security into their webservers, and still people continue to find holes.. Is it likely that my homebrewed webserver will be much more open to attack?

What things can I focus on to build a good layer of security into my webserver? Are there any good articles out there that cover the topic?

like image 427
jwegner Avatar asked Mar 10 '11 11:03

jwegner


People also ask

Are node JS servers secure?

Node. js is one such technology that developers use for web application development. It is designed to be completely secure.

What are the security mechanisms available in node JS?

Authentication is one of the primary security stages at which user is identified as permitted to access the application at all. Authentication verifies the user's identity through one or several checks. In Node. js, authentication can be either session-based or token-based.


2 Answers

I agree with anm and schaermu about using a reverse proxy so that your application is not directly accessed by your visitors, even if that really has more to do with stability than security.

I want to add that you also have to think about safely installing the Node itself and its modules. In particular, never install npm using this method:

curl http://npmjs.org/install.sh | sudo sh 

This is basically giving root shell to anything that you get from the network using insecure HTTP with no verification at all, not even knowing who are you talking to. This can lead to a serious compromise of your entire system using very basic and widely known methods, and if your system is compromised then it doesn't matter if your application is behind a reverse proxy, firewall or anything. See this answer for a more comprehensive explanation.

like image 125
Zed Avatar answered Sep 21 '22 09:09

Zed


The reason why there are years and years of professional teams building security into Apache / IIS is because those are all encompassing servers. They can have all types of services on by default running version X of software that needs to be patched when some hole is found, etc.

One of the great things I find about Node.JS is that you tell it what you want to run on the OS level for your specific application. No middle man layer if you don't want it. All I have to worry about if I host it on a server I administer is OS level ports and the web application code. No Apache config files, module updates, etc.

So when it comes to security in Node.JS worry about scrubbing outside information before acting on it, verify identity on potentially harmful actions, etc. Be as closed as possible. Use SFTP to transfer your files to the remote hosting server and just have the necessary ports open for your web application to function properly.

like image 23
Robert Brisita Avatar answered Sep 20 '22 09:09

Robert Brisita