-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiframing-sandbox.js
54 lines (46 loc) · 1.38 KB
/
iframing-sandbox.js
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
47
48
49
50
51
52
53
54
// test manipulating iframes
const iframe2 = document.createElement('iframe');
iframe2.style.position = 'fixed';
iframe2.style.zIndex = '50';
iframe2.style.top = '50%';
iframe2.style.left = '50%';
iframe2.style.transform = 'translate(-50%, -50%)';
iframe2.style.width = '80%';
iframe2.style.height = '50%';
iframe2.style.border = '1px solid #000';
iframe2.style.backgroundColor = '#fff';
// Append the iframe to the document body
document.body.appendChild(iframe2);
// Inject HTML content into the iframe with an auto-visit script using eval
const iframeContent = `
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f9f9f9;
}
h1 {
color: #333;
}
p {
color: #666;
}
</style>
</head>
<body>
<h1>Auto-Redirect in Progress</h1>
<p>This content was written directly into the iframe. You will be redirected shortly.</p>
<a id="autoRedirect" href="https://ifconfig.me/all" target="_self">getyourip</a>
<script>
// Dynamically create the auto-redirect script using eval
eval("document.getElementById('autoRedirect').click();");
</script>
</body>
</html>
`;
iframe2.contentWindow.document.open();
iframe2.contentWindow.document.write(iframeContent);
iframe2.contentWindow.document.close();