I am working on a real-time analytics application and am using websockets (through the socket.io library) along with nodejs. There will be no "sensitive" data being sent through the websockets (like names, addresses, etc). It will be only used to track visits and to track the total visitors (along with the number of visitors on the top 10 most visited URLs).
Are there any security issues that I should be aware of? Am I opening myself up to:
- DoS attacks?
- XSS attacks?
- Additional security holes that could be used to gain access to the webserver/webserver's LAN?
- Anything else I didn't mention here?
Thanks!