XSS is a very commonly exploited vulnerability type which is very widely spread and easily detectable and also it is one of the important vulnerability in OWASP TOP 10.
What is XSS( Cross Site Scripting )? An attacker can inject untrusted snippets of JavaScript into your application without validation. This JavaScript is then executed by the victim who is visiting the target site. It classified into three types.
In Reflected XSS, an attacker sends the victim a link to the target application through email, social media, etc. This link has a script embedded within it which executes when visiting the target site.
In Stored XSS, the attacker is able to plant a persistent script in the target website which will execute when anyone visits it.
With DOM Based XSS, no HTTP request is required, the script is injected as a result of modifying the DOM of the target site in the client side code in the victim’s browser and is then executed.
http://test.gbhackers.com/search?q=gbhackers Searched for <strong>gbhackers</strong> <script>alert(document.cookie)</script>
Imagine that we are having an URL like this and we are searching for gbhackers and it will reflect the following query in the browser. We trust the domain and we trust the resource being entered in the search page, so now the untrusted part gbhackers was the query string entered by the browser, the attacker can manipulate the value anything as they like, for an example they change like this <script>alert(document.cookie)</script>. This is just a simple query to popup an alert in the webpage, if some requested the page of attackers website and passed document.cookies as a parameter in the website then the attacker can gather all cookies in the website. If they got Auth cookies they can simply hijack user sessions.
The attacker can compromise or take over the victim’s user account in the application. They could retrieve data from the target web application, modify content on the target page, redirect the victim to another malicious or spoof site, or use it as a platform to install other malware on the victim’s system.
The consequences of any of the above can seriously impact your ability to conduct business, your customers, and your organization’s reputation.
Thousands of Facebook accounts have been stolen due to a trojanized version of the legitimate…
Lions Gate Entertainment Corporation, doing business as Lionsgate, exposed users' IP addresses and data on…
In a collaborative effort, the German Federal Office for the Protection of the Constitution (BfV)…
The ShellBot threat has turned out to be a new type of malware designed to…
Recently, Google declared its plan to reduce the maximum validity for public TLS (SSL) certificates…
Mandiant researchers have recently reported that 55 zero-day vulnerabilities were actively exploited in 2022, most…
View Comments