- Listas de correo
- develop
- Re: Vulnerability Report (1) Clickjacking Lead to Account Takeover
Archivados
- Por conversación 454
-
Por fecha
- febrero 2021 2
- marzo 2021 3
- junio 2021 2
- julio 2021 3
- agosto 2021 2
- octubre 2021 7
- noviembre 2021 2
- diciembre 2021 19
- enero 2022 27
- febrero 2022 30
- marzo 2022 25
- abril 2022 11
- mayo 2022 21
- junio 2022 13
- julio 2022 18
- agosto 2022 25
- septiembre 2022 18
- octubre 2022 11
- noviembre 2022 23
- diciembre 2022 13
- enero 2023 96
- febrero 2023 58
- marzo 2023 60
develop
[email protected]
Re: Vulnerability Report (1) Clickjacking Lead to Account Takeover
Hi Team,
Any follow up on my submitted vulnerability report? I did not hear any word from your side on my submission.
So, please Let me know about the previous submission as we want to proceed with more critical discoveries found in your application that need to be fixed ASAP.
Looking forward to hearing from you.
Thank you!
Sincerely,
Asif.
Any follow up on my submitted vulnerability report? I did not hear any word from your side on my submission.
So, please Let me know about the previous submission as we want to proceed with more critical discoveries found in your application that need to be fixed ASAP.
Looking forward to hearing from you.
Thank you!
Sincerely,
Asif.
On Mon, 25 Jul 2022 at 21:20, Bug Hunter <[email protected]> wrote:
Any update on this?On Sat, 16 Jul 2022 at 02:48, Bug Hunter <[email protected]> wrote:Hi Team
I have detected that your website is vulnerable to this vulnerability
Vulnerability Type: Clickjacking Lead to Account Takeover
Severity: Critical
Issue:
Clickjacking (User Interface redress attack, UI redress attack, UI redressing) is a malicious technique of tricking a Web user into clicking on something different from what the user perceives they are clicking on, thus potentially revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages.
The server didn't return an X-Frame-Options header which means that this website could be at risk of a clickjacking attack. The X-Frame-Options HTTP response header can be used to indicate whether or not a browser should be allowed to render a page in a <frame> or <iframe>. Sites can use this to avoid clickjacking attacks, by ensuring that their content is not embedded into other sites.
This vulnerability affects Web Server.
Steps To Reproduce :
Here are the steps to reproduce the vulnerability
1.open notepad and paste the following code<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>i Frame</title>
</head>
<body>
<h3>This is clickjacking vulnerable</h3>
<iframe src="https://apps.odoo.com/" frameborder="200 px" height="5000px" width="500px"></iframe>
</body>
</html>2.save it as <anyname>.html eg s.html
3.and just simply open that..
4. Understanding the Remedial Action for Clickjacking
Clickjacking can be prevented using a host of client side browser plugins such as
• NoScript – http://noscript.net
• Web Protection Suite – http://www.comitari.com/Web_Protection_Suite
These plugins are recommended for daily browsing and can also protect users against additional client side attacks, such as XSS (Cross Site Scripting).
The above plugins are client side prevention techniques that should be taught to all application users; however, steps must also be taken from the developer’s end.
The following techniques can be used to aid in the prevention of clickjacking:
4.1. X-Frame-Options
The simplest of all the techniques that only requires a simple configuration setting; for example, this can be done within Apache using the following line:
<pre lang="JavaScript" line="1">Header always append X-Frame-Options DENY</pre>
4.2. FrameBusting JavaScript
This method utilizes JavaScript to “bust” iframes. This is done by checking if the current web page is the top web page (not within a frame) and if the web page is currently not the top page, then it becomes the top page.
The following example segment of code can be used to demonstrate this:
<pre lang="JavaScript" line="1">if (top.location.hostname != self.location.hostname){
top.location.href = self.location.href;
}</pre>
It should be noted that recent techniques have found to be able to bypass this clickjacking prevention technique as seen in the whitepaper by web application security researcher Collin Jackson – http://www.collinjackson.com/research/xssauditor.pdf.
4.3.Unique URL request
Similar to a CSRF nonce, this can be employed so attackers cannot deliver the attack URL easily.
4.4. CAPTCHAs
Similar to the way it prevents attackers from spamming a web form, this can be used as an additional layer of verification on each transaction.
4.5. Element Randomization
Generally it is possible to clickjack due to buttons and links being in a static area of the web page, allowing attackers to place invisible frames over them. A technique to prevent this from occurring is to randomize the links or buttons on load, thus preventing attackers from hard coding static iframes.
Proof of Concept :Please let me know if you need more information. Looking after your response.Regards,Asif.
por "Bug Hunter" <[email protected]> - 09:53 - 8 ago. 2022
Referencia
-
Re: Vulnerability Report (1) Clickjacking Lead to Account Takeover
Any update on this?On Sat, 16 Jul 2022 at 02:48, Bug Hunter <[email protected]> wrote:Hi Team
I have detected that your website is vulnerable to this vulnerability
Vulnerability Type: Clickjacking Lead to Account Takeover
Severity: Critical
Issue:
Clickjacking (User Interface redress attack, UI redress attack, UI redressing) is a malicious technique of tricking a Web user into clicking on something different from what the user perceives they are clicking on, thus potentially revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages.
The server didn't return an X-Frame-Options header which means that this website could be at risk of a clickjacking attack. The X-Frame-Options HTTP response header can be used to indicate whether or not a browser should be allowed to render a page in a <frame> or <iframe>. Sites can use this to avoid clickjacking attacks, by ensuring that their content is not embedded into other sites.
This vulnerability affects Web Server.
Steps To Reproduce :
Here are the steps to reproduce the vulnerability
1.open notepad and paste the following code<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>i Frame</title>
</head>
<body>
<h3>This is clickjacking vulnerable</h3>
<iframe src="https://apps.odoo.com/" frameborder="200 px" height="5000px" width="500px"></iframe>
</body>
</html>2.save it as <anyname>.html eg s.html
3.and just simply open that..
4. Understanding the Remedial Action for Clickjacking
Clickjacking can be prevented using a host of client side browser plugins such as
• NoScript – http://noscript.net
• Web Protection Suite – http://www.comitari.com/Web_Protection_Suite
These plugins are recommended for daily browsing and can also protect users against additional client side attacks, such as XSS (Cross Site Scripting).
The above plugins are client side prevention techniques that should be taught to all application users; however, steps must also be taken from the developer’s end.
The following techniques can be used to aid in the prevention of clickjacking:
4.1. X-Frame-Options
The simplest of all the techniques that only requires a simple configuration setting; for example, this can be done within Apache using the following line:
<pre lang="JavaScript" line="1">Header always append X-Frame-Options DENY</pre>
4.2. FrameBusting JavaScript
This method utilizes JavaScript to “bust” iframes. This is done by checking if the current web page is the top web page (not within a frame) and if the web page is currently not the top page, then it becomes the top page.
The following example segment of code can be used to demonstrate this:
<pre lang="JavaScript" line="1">if (top.location.hostname != self.location.hostname){
top.location.href = self.location.href;
}</pre>
It should be noted that recent techniques have found to be able to bypass this clickjacking prevention technique as seen in the whitepaper by web application security researcher Collin Jackson – http://www.collinjackson.com/research/xssauditor.pdf.
4.3.Unique URL request
Similar to a CSRF nonce, this can be employed so attackers cannot deliver the attack URL easily.
4.4. CAPTCHAs
Similar to the way it prevents attackers from spamming a web form, this can be used as an additional layer of verification on each transaction.
4.5. Element Randomization
Generally it is possible to clickjack due to buttons and links being in a static area of the web page, allowing attackers to place invisible frames over them. A technique to prevent this from occurring is to randomize the links or buttons on load, thus preventing attackers from hard coding static iframes.
Proof of Concept :Please let me know if you need more information. Looking after your response.Regards,Asif.
por "Bug Hunter" <[email protected]> - 12:21 - 25 jul. 2022-
Re: Vulnerability Report (1) Clickjacking Lead to Account Takeover
Hi Team,
Any follow up on my submitted vulnerability report? I did not hear any word from your side on my submission.
So, please Let me know about the previous submission as we want to proceed with more critical discoveries found in your application that need to be fixed ASAP.
Looking forward to hearing from you.
Thank you!
Sincerely,
Asif.On Mon, 25 Jul 2022 at 21:20, Bug Hunter <[email protected]> wrote:Any update on this?On Sat, 16 Jul 2022 at 02:48, Bug Hunter <[email protected]> wrote:Hi Team
I have detected that your website is vulnerable to this vulnerability
Vulnerability Type: Clickjacking Lead to Account Takeover
Severity: Critical
Issue:
Clickjacking (User Interface redress attack, UI redress attack, UI redressing) is a malicious technique of tricking a Web user into clicking on something different from what the user perceives they are clicking on, thus potentially revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages.
The server didn't return an X-Frame-Options header which means that this website could be at risk of a clickjacking attack. The X-Frame-Options HTTP response header can be used to indicate whether or not a browser should be allowed to render a page in a <frame> or <iframe>. Sites can use this to avoid clickjacking attacks, by ensuring that their content is not embedded into other sites.
This vulnerability affects Web Server.
Steps To Reproduce :
Here are the steps to reproduce the vulnerability
1.open notepad and paste the following code<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>i Frame</title>
</head>
<body>
<h3>This is clickjacking vulnerable</h3>
<iframe src="https://apps.odoo.com/" frameborder="200 px" height="5000px" width="500px"></iframe>
</body>
</html>2.save it as <anyname>.html eg s.html
3.and just simply open that..
4. Understanding the Remedial Action for Clickjacking
Clickjacking can be prevented using a host of client side browser plugins such as
• NoScript – http://noscript.net
• Web Protection Suite – http://www.comitari.com/Web_Protection_Suite
These plugins are recommended for daily browsing and can also protect users against additional client side attacks, such as XSS (Cross Site Scripting).
The above plugins are client side prevention techniques that should be taught to all application users; however, steps must also be taken from the developer’s end.
The following techniques can be used to aid in the prevention of clickjacking:
4.1. X-Frame-Options
The simplest of all the techniques that only requires a simple configuration setting; for example, this can be done within Apache using the following line:
<pre lang="JavaScript" line="1">Header always append X-Frame-Options DENY</pre>
4.2. FrameBusting JavaScript
This method utilizes JavaScript to “bust” iframes. This is done by checking if the current web page is the top web page (not within a frame) and if the web page is currently not the top page, then it becomes the top page.
The following example segment of code can be used to demonstrate this:
<pre lang="JavaScript" line="1">if (top.location.hostname != self.location.hostname){
top.location.href = self.location.href;
}</pre>
It should be noted that recent techniques have found to be able to bypass this clickjacking prevention technique as seen in the whitepaper by web application security researcher Collin Jackson – http://www.collinjackson.com/research/xssauditor.pdf.
4.3.Unique URL request
Similar to a CSRF nonce, this can be employed so attackers cannot deliver the attack URL easily.
4.4. CAPTCHAs
Similar to the way it prevents attackers from spamming a web form, this can be used as an additional layer of verification on each transaction.
4.5. Element Randomization
Generally it is possible to clickjack due to buttons and links being in a static area of the web page, allowing attackers to place invisible frames over them. A technique to prevent this from occurring is to randomize the links or buttons on load, thus preventing attackers from hard coding static iframes.
Proof of Concept :Please let me know if you need more information. Looking after your response.Regards,Asif.
por "Bug Hunter" <[email protected]> - 09:53 - 8 ago. 2022
-