-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexploit.html
More file actions
61 lines (54 loc) · 2.21 KB
/
Copy pathexploit.html
File metadata and controls
61 lines (54 loc) · 2.21 KB
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
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Wall</title>
<link rel="icon" href="https://avatars.githubusercontent.com/u/151978475?v=4" type="image/png" />
<style>
body { background-color: black; color: white; font-family: Arial; display:flex; flex-direction:column; align-items:center; justify-content:center; height:100vh; }
#content { display:none; margin-top:20px; }
button { margin:5px; padding:10px 20px; background:#333; color:white; border:none; cursor:pointer; }
button:hover { background:#555; }
iframe { width:80vw; height:60vh; margin-top:20px; border:2px solid white; }
</style>
</head>
<body>
<h1>Enter Password</h1>
<input type="password" id="passwordInput" placeholder="Password">
<button onclick="checkPassword()">Submit</button>
<div id="content">
<h2>Links</h2>
<button onclick="window.open('https://t3rm-exploit-dump.vercel.app/', '_blank')">Open Exploit Dump</button>
<button onclick="window.open('https://chromebook-utilities.pages.dev/', '_blank')">Open Chromebook Utilities</button>
<h2>Embed</h2>
<button onclick="embedSite('https://t3rm-exploit-dump.vercel.app/')">Embed Exploit Dump</button>
<button onclick="embedSite('https://chromebook-utilities.pages.dev/')">Embed Chromebook Utilities</button>
<iframe id="iframeDisplay" style="display:none;"></iframe>
</div>
<script>
// Simple hidden password check (obfuscates 'secret123')
const hidden = [115, 101, 99, 114, 101, 116, 49, 50, 51]; // ASCII codes for 'secret123'
function checkPassword() {
const input = document.getElementById('passwordInput').value;
let correct = true;
if(input.length !== hidden.length) correct = false;
else {
for(let i=0;i<hidden.length;i++){
if(input.charCodeAt(i)!==hidden[i]) correct=false;
}
}
if(correct){
document.getElementById('content').style.display='block';
} else {
alert('Incorrect password!');
}
}
function embedSite(url) {
const iframe = document.getElementById('iframeDisplay');
iframe.src = url;
iframe.style.display = 'block';
}
</script>
</body>
</html>