0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
ntopng 1.2.0 - XSS Vulnerability
ntopng 1.2.0 XSS injection using monitored network traffic ntopng is the next generation version of the original ntop, a network traffic probe and monitor that shows the network usage, similar to what the popular top Unix command does. The web-based frontend of the software is vulnerable to injection of script code via forged HTTP Host: request header lines in monitored network traffic. HTTP Host request header lines are extracted using nDPI traffic classification library and used without sanitization in several places in the frontend, e.g. the Host overview and specific subpages for each monitored host. The injected code might be used to execute javascript and to perform management actions with the user-rights of the current ntopng user, which can be used to disable the monitoring function or deletion of accounts making the monitoring system unusable. To give a coarse idea of the vulnerability the following python script can be used on the monitored network, afterwards the victim needs to browse to the Host overview / Host details in the ntopng frontend. import httplib conn = httplib.HTTPConnection("example.com") headers = {"Host": "<SCRIPT>alert(\"xss\")</SCRIPT>", "Accept": "text/plain"} conn.request("GET", "/", None, headers) r1 = conn.getresponse() print(r1.status, r1.reason) data1 = r1.read() Other users of the nDPI code might be affected as well. # 0day.today [2024-11-16] #