-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (37 loc) · 1.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js"></script>
<title>ClipBoard API Exploit</title>
<style>
#selectMe {
width: 50vw;
height: 5vh;
}
</style>
</head>
<body>
<h2> Clipboard API Exploit</h2>
<p class="editor">
Today is September 1 2022; and currently this Exploit works as for now google haven't released a Patch for it.
As a result you might be able to use this and see it in action. As you visited this website a scirpt in the
background was executed and within no time the text of my Choice was been added in your Clipboard. Try Pasting
in the below text box. It will show the following text irrespective of your last text that you copied. It will
show the following text <b> "This is the hacked text that was been copied into your Clipboard as you visited
this website. Sorry for any inconvinience. By Abdul Rehman Kalsekar" </b>
</p>
<textarea name="hacked_text" id="selectMe" cols="30" rows="10">
</textarea>
<p>
For more Details you can visit the following links
<a href="https://thehackernews.com/2022/09/google-chrome-bug-lets-sites-silently.html"> hacker news , </a>
<a href="https://lapcatsoftware.com/articles/clipboard.html"> lapcatsoftware. </a>
<br>
<h3> Made with Love By Abdul Rehman Kalsekar</h3>
</p>
<script src="script.js"></script>
</body>
</html>