-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.12 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
<!-- HTML File for ClipPoisoner-->
<!-- Author - WireBits-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="styles.css" rel="stylesheet">
<title>ClipPoisoner</title>
</head>
<body>
<div class="container">
<div class="title">ClipPoisoner</div>
<div class="textareas-container">
<textarea id="htmlArea" class="textarea" placeholder="HTML Code"></textarea>
<textarea id="maliciousArea" class="textarea" placeholder="Enter Malicious Text"></textarea>
</div>
<div class="buttons">
<button class="upload" onclick="triggerFileInput()">Upload</button>
<input type="file" id="fileInput" onchange="handleFileSelect(event)" accept=".html">
<button class="inject" onclick="injectAndDownload()">Inject</button>
<button class="reset" onclick="resetTextArea()">Reset</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>