You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Clickjacking/README.md
+85-73Lines changed: 85 additions & 73 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Clickjacking
2
2
3
-
> Clickjacking is a type of web security vulnerability where a malicious website tricks a user into clicking on something different from what the user perceives, potentially causing the user to perform unintended actions without their knowledge or consent. Users are tricked into performing all sorts of unintended actions as such as typing in the password, clicking on ‘Delete my account’ button, liking a post, deleting a post, commenting on a blog. In other words all the actions that a normal user can do on a legitimate website can be done using clickjacking.
3
+
> Clickjacking is a type of web security vulnerability where a malicious website tricks a user into clicking on something different from what the user perceives, potentially causing the user to perform unintended actions without their knowledge or consent. Users are tricked into performing all sorts of unintended actions as such as typing in the password, clicking on ‘Delete my account' button, liking a post, deleting a post, commenting on a blog. In other words all the actions that a normal user can do on a legitimate website can be done using clickjacking.
4
4
5
5
## Summary
6
6
@@ -38,10 +38,10 @@ The transparent UI element contains malicious content or actions that are visual
38
38
the attacker can trick the user into interacting with the hidden content, believing they are interacting with the visible interface.
39
39
40
40
***How UI Redressing Works:**
41
-
* Overlaying Transparent Element: The attacker creates a transparent HTML element (usually a `<div>`) that covers the entire visible area of a legitimate website. This element is made transparent using CSS properties like `opacity: 0;`.
42
-
* Positioning and Layering: By setting the CSS properties such as `position: absolute; top: 0; left: 0;`, the transparent element is positioned to cover the entire viewport. Since it's transparent, the user doesn't see it.
43
-
* Misleading User Interaction: The attacker places deceptive elements within the transparent container, such as fake buttons, links, or forms. These elements perform actions when clicked, but the user is unaware of their presence due to the overlaying transparent UI element.
44
-
* User Interaction: When the user interacts with the visible interface, they are unknowingly interacting with the hidden elements due to the transparent overlay. This interaction can lead to unintended actions or unauthorized operations.
41
+
* Overlaying Transparent Element: The attacker creates a transparent HTML element (usually a `<div>`) that covers the entire visible area of a legitimate website. This element is made transparent using CSS properties like `opacity: 0;`.
42
+
* Positioning and Layering: By setting the CSS properties such as `position: absolute; top: 0; left: 0;`, the transparent element is positioned to cover the entire viewport. Since it's transparent, the user doesn't see it.
43
+
* Misleading User Interaction: The attacker places deceptive elements within the transparent container, such as fake buttons, links, or forms. These elements perform actions when clicked, but the user is unaware of their presence due to the overlaying transparent UI element.
44
+
* User Interaction: When the user interacts with the visible interface, they are unknowingly interacting with the hidden elements due to the transparent overlay. This interaction can lead to unintended actions or unauthorized operations.
@@ -55,44 +55,44 @@ These iframes are made invisible by setting their dimensions to zero (height: 0;
55
55
The content inside these invisible frames can be malicious, such as phishing forms, malware downloads, or any other harmful actions.
56
56
57
57
***How Invisible Frames Work:**
58
-
59
-
* Hidden IFrame Creation: The attacker includes an `<iframe>` element in a webpage, setting its dimensions to zero and removing its border, making it invisible to the user.
* Loading Malicious Content: The src attribute of the iframe points to a malicious website or resource controlled by the attacker. This content is loaded silently without the user's knowledge because the iframe is invisible.
64
-
* User Interaction: The attacker overlays enticing elements on top of the invisible iframe, making it seem like the user is interacting with the visible interface. For instance, the attacker might position a transparent button over the invisible iframe. When the user clicks the button, they are essentially clicking on the hidden content within the iframe.
65
-
* Unintended Actions: Since the user is unaware of the invisible iframe, their interactions can lead to unintended actions, such as submitting forms, clicking on malicious links, or even performing financial transactions without their consent.
58
+
* Hidden IFrame Creation: The attacker includes an `<iframe>` element in a webpage, setting its dimensions to zero and removing its border, making it invisible to the user.
* Loading Malicious Content: The src attribute of the iframe points to a malicious website or resource controlled by the attacker. This content is loaded silently without the user's knowledge because the iframe is invisible.
63
+
* User Interaction: The attacker overlays enticing elements on top of the invisible iframe, making it seem like the user is interacting with the visible interface. For instance, the attacker might position a transparent button over the invisible iframe. When the user clicks the button, they are essentially clicking on the hidden content within the iframe.
64
+
* Unintended Actions: Since the user is unaware of the invisible iframe, their interactions can lead to unintended actions, such as submitting forms, clicking on malicious links, or even performing financial transactions without their consent.
66
65
67
66
68
67
### Button/Form Hijacking
69
68
70
69
Button/Form Hijacking is a Clickjacking technique where attackers trick users into interacting with invisible or hidden buttons/forms, leading to unintended actions on a legitimate website. By overlaying deceptive elements on top of visible buttons or forms, attackers can manipulate user interactions to perform malicious actions without the user's knowledge.
71
70
72
71
* **How Button/Form Hijacking Works:**
73
-
* Visible Interface: The attacker presents a visible button or form to the user, encouraging them to click or interact with it.
74
-
```html
75
-
<buttononclick="submitForm()">Click me</button>
76
-
```
77
-
* Invisible Overlay: The attacker overlays this visible button or form with an invisible or transparent element that contains a malicious action, such as submitting a hidden form.
72
+
* Visible Interface: The attacker presents a visible button or form to the user, encouraging them to click or interact with it.
73
+
```html
74
+
<buttononclick="submitForm()">Click me</button>
75
+
```
76
+
77
+
* Invisible Overlay: The attacker overlays this visible button or form with an invisible or transparent element that contains a malicious action, such as submitting a hidden form.
* Deceptive Interaction: When the user clicks the visible button, they are unknowingly interacting with the hidden form due to the invisible overlay. The form is submitted, potentially causing unauthorized actions or data leakage.
* Deceptive Interaction: When the user clicks the visible button, they are unknowingly interacting with the hidden form due to the invisible overlay. The form is submitted, potentially causing unauthorized actions or data leakage.
@@ -106,12 +106,12 @@ Button/Form Hijacking is a Clickjacking technique where attackers trick users in
106
106
```
107
107
108
108
* Overlaying Visible Element: The attacker overlays a visible element (button or form) on their malicious page, encouraging users to interact with it. When the user clicks the visible element, they unknowingly trigger the hidden form's submission.
109
-
* Example in javascript:
110
-
```js
111
-
functionsubmitForm() {
112
-
document.getElementById('hidden-form').submit();
113
-
}
114
-
```
109
+
110
+
```js
111
+
functionsubmitForm() {
112
+
document.getElementById('hidden-form').submit();
113
+
}
114
+
```
115
115
116
116
117
117
## Preventive Measures
@@ -138,40 +138,46 @@ Example in HTML meta tag:
138
138
139
139
* Since these type of client side protections relies on JavaScript frame busting code, if the victim has JavaScript disabled or it is possible for an attacker to disable JavaScript code, the web page will not have any protection mechanism against clickjacking.
140
140
* There are three deactivation techniques that can be used with frames:
141
-
* Restricted frames with Internet Explorer: Starting from IE6, a frame can have the "security" attribute that, if it is set to the value "restricted", ensures that JavaScript code, ActiveX controls, and re-directs to other sites do not work in the frame.
* Sandbox attribute: with HTML5 there is a new attribute called “sandbox”. It enables a set of restrictions on content loaded into the iframe. At this moment this attribute is only compatible with Chrome and Safari.
146
-
```html
147
-
<iframesrc="http://target site"sandbox></iframe>
148
-
```
141
+
* Restricted frames with Internet Explorer: Starting from IE6, a frame can have the "security" attribute that, if it is set to the value "restricted", ensures that JavaScript code, ActiveX controls, and re-directs to other sites do not work in the frame.
* Sandbox attribute: with HTML5 there is a new attribute called “sandbox”. It enables a set of restrictions on content loaded into the iframe. At this moment this attribute is only compatible with Chrome and Safari.
148
+
149
+
```html
150
+
<iframesrc="http://target site"sandbox></iframe>
151
+
```
149
152
150
153
## OnBeforeUnload Event
151
154
152
-
* The `onBeforeUnload` event could be used to evade frame busting code. This event is called when the frame busting code wants to destroy the iframe by loading the URL in the whole web page and not only in the iframe. The handler function returns a string that is prompted to the user asking confirm if he wants to leave the page. When this string is displayed to the user is likely to cancel the navigation, defeating target’s frame busting attempt.
155
+
* The `onBeforeUnload` event could be used to evade frame busting code. This event is called when the frame busting code wants to destroy the iframe by loading the URL in the whole web page and not only in the iframe. The handler function returns a string that is prompted to the user asking confirm if he wants to leave the page. When this string is displayed to the user is likely to cancel the navigation, defeating target's frame busting attempt.
153
156
154
157
* The attacker can use this attack by registering an unload event on the top page using the following example code:
155
-
```html
156
-
<h1>www.fictitious.site</h1>
157
-
<script>
158
-
window.onbeforeunload=function()
159
-
{
160
-
return" Do you want to leave fictitious.site?";
161
-
}
162
-
</script>
163
-
<iframesrc="http://target site">
164
-
```
158
+
```html
159
+
<h1>www.fictitious.site</h1>
160
+
<script>
161
+
window.onbeforeunload=function()
162
+
{
163
+
return" Do you want to leave fictitious.site?";
164
+
}
165
+
</script>
166
+
<iframesrc="http://target site">
167
+
```
165
168
166
169
* The previous technique requires the user interaction but, the same result, can be achieved without prompting the user. To do this the attacker have to automatically cancel the incoming navigation request in an onBeforeUnload event handler by repeatedly submitting (for example every millisecond) a navigation request to a web page that responds with a _"HTTP/1.1 204 No Content"_ header.
167
170
168
-
<br>_204 page:_
171
+
_204 page:_
172
+
169
173
```php
170
174
<?php
171
175
header("HTTP/1.1 204 No Content");
172
176
?>
173
177
```
178
+
174
179
_Attacker's Page_
180
+
175
181
```js
176
182
<script>
177
183
var prevent_bust =0;
@@ -192,31 +198,37 @@ _Attacker's Page_
192
198
## XSS Filter
193
199
194
200
### IE8 XSS filter
195
-
This filter has visibility into all parameters of each request and response flowing through the web browser and it compares them to a set of regular expressions in order to look for reflected XSS attempts. When the filter identifies a possible XSS attacks; it disables all inline scripts within the page, including frame busting scripts (the same thing could be done with external scripts). For this reason an attacker could induce a false positive by inserting the beginning of the frame busting script into a request’s parameters.
196
-
```html
197
-
<script>
198
-
if ( top !=self )
199
-
{
200
-
top.location=self.location;
201
-
}
202
-
</script>
203
-
```
204
-
Attacker View:
205
-
```html
206
-
<iframesrc=”http://targetsite/?param=<script>if”>
207
-
```
201
+
This filter has visibility into all parameters of each request and response flowing through the web browser and it compares them to a set of regular expressions in order to look for reflected XSS attempts. When the filter identifies a possible XSS attacks; it disables all inline scripts within the page, including frame busting scripts (the same thing could be done with external scripts). For this reason an attacker could induce a false positive by inserting the beginning of the frame busting script into a request's parameters.
202
+
203
+
```html
204
+
<script>
205
+
if ( top !=self )
206
+
{
207
+
top.location=self.location;
208
+
}
209
+
</script>
210
+
```
211
+
212
+
Attacker View:
213
+
214
+
```html
215
+
<iframesrc=”http://targetsite/?param=<script>if”>
216
+
```
208
217
209
218
### Chrome 4.0 XSSAuditor filter
210
219
211
220
It has a little different behaviour compared to IE8 XSS filter, in fact with this filter an attacker could deactivate a “script” by passing its code in a request parameter. This enables the framing page to specifically target a single snippet containing the frame busting code, leaving all the other codes intact.
Copy file name to clipboardExpand all lines: Insecure Source Code Management/Subversion.md
+7-12Lines changed: 7 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,13 @@
2
2
3
3
> Subversion (often abbreviated as SVN) is a centralized version control system (VCS) that has been widely used in the software development industry. Originally developed by CollabNet Inc. in 2000, Subversion was designed to be an improved version of CVS (Concurrent Versions System) and has since gained significant traction for its robustness and reliability.
4
4
5
-
6
5
## Summary
7
6
8
7
*[Tools](#tools)
9
8
*[svn-extractor](#svn-extractor)
10
9
*[Methodology](#methodology)
11
10
*[References](#references)
12
11
13
-
14
12
## Tools
15
13
16
14
### svn-extractor
@@ -20,24 +18,21 @@
20
18
python svn-extractor.py --url "url with .svn available"
1. Download the svn database from http://server/path_to_vulnerable_site/.svn/wc.db
31
-
```powershell
32
-
INSERT INTO "NODES" VALUES(1,'trunk/test.txt',0,'trunk',1,'trunk/test.txt',2,'normal',NULL,NULL,'file',X'2829',NULL,'$sha1$945a60e68acc693fcb74abadb588aac1a9135f62',NULL,2,1456056344886288,'bl4de',38,1456056261000000,NULL,NULL);
33
-
```
28
+
```powershell
29
+
INSERT INTO "NODES" VALUES(1,'trunk/test.txt',0,'trunk',1,'trunk/test.txt',2,'normal',NULL,NULL,'file',X'2829',NULL,'$sha1$945a60e68acc693fcb74abadb588aac1a9135f62',NULL,2,1456056344886288,'bl4de',38,1456056261000000,NULL,NULL);
30
+
```
34
31
2. Download interesting files
35
-
* remove \$sha1\$ prefix
36
-
* add .svn-base postfix
37
-
* use first byte from hash as a subdirectory of the `pristine/` directory (`94` in this case)
38
-
* create complete path, which will be: `http://server/path_to_vulnerable_site/.svn/pristine/94/945a60e68acc693fcb74abadb588aac1a9135f62.svn-base`
39
-
40
-
32
+
* remove \$sha1\$ prefix
33
+
* add .svn-base postfix
34
+
* use first byte from hash as a subdirectory of the `pristine/` directory (`94` in this case)
35
+
* create complete path, which will be: `http://server/path_to_vulnerable_site/.svn/pristine/94/945a60e68acc693fcb74abadb588aac1a9135f62.svn-base`
0 commit comments