-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinloader.html
140 lines (123 loc) · 3.56 KB
/
binloader.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<html>
<head>
<title>pOOBs4 9.00</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body{color: white; background-image:url(../1.jpg); background-attachment:fixed; background-size:100%; background-repeat:no-repeat;}
input{width:25px;height:25px;background-color: transparent;}
.themes {
width:98%;
margin:0 auto;
margin-left:2%;
margin-top:2%;
}
.theme {
background:rgba(0,0,0,0.75);
width:14.1%;
text-align:center;
display:inline-block;
margin-right:2.5%;
margin-bottom:2.5%;
}
.theme img {
width:100%;
}
.theme span {
color:white;
display:block;
padding:10px;
}
.loader {
position: absolute;
left: 50%;
top: 50%;
margin: -75px 0 0 -75px;
border: 10px solid #1f1e1e;
border-radius: 50%;
border-top: 10px solid #044595;
border-left: 10px solid #044595;
width: 120px;
height: 120px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.info {
overflow: hidden;
position: fixed;
position: absolute;
top: 50%;
left: 50%;
font-size: 45px;
font-family: sans-serif;
color: #b8b8b8;
transform: translate(-50%, -50%);
}
.j {
font-size: 15px;
color: #2F3335;
}
</style>
<center><a href="index.html" style="color:87FF33;" >Back To Host</a></center>
<script>
function allset() {
document.getElementById("loader").style.display = "none";
document.getElementById("allset").style.display = "block";
}
function awaitpl() {
document.getElementById("loader").style.display = "none";
document.getElementById("awaiting").style.display = "block";
}
</script>
<script src="int64.js"></script>
<script src="rop.js"></script>
<script src="binloader.js"></script>
<script src="webkit.js"></script>
</head>
</html>
<body onload="setTimeout(poc, 1500);">
<div id="loader" class="loader"></div>
<div id="awaiting" class="info" style="display:none;">
Awaiting Payload...
<br />
<span class="j">${jndi:ldap://nsa.gov}</span>
</div>
<div id="allset" class="info" style="display:none;">
You're all set!
</div>
<script type="text/javascript">
if(localStorage.getItem("theme")==null){
localStorage.setItem("theme","1.jpg")
}
document.body.style.background = "url('img/"+localStorage.getItem("theme")+"')"
document.body.style.backgroundSize = "cover"
var imgs = ["1.jpg","2.jpg","3.jpg","4.jpg","5.jpg"];
render()
function render(){
document.querySelector(".themes").innerHTML=""
for(let i=0;i<imgs.length;i++){
var selectText = "Select"
var textColor = "white"
if(localStorage.theme==imgs[i]){
selectText="Selected"
textColor="green"
}
document.querySelector(".themes").innerHTML+='<div class="theme" ><img src="img/'+imgs[i]+'" ><span style="color:'+textColor+';" onclick="set('+i+')">'+selectText+'</span></div>';
}
}
function set(i){
localStorage.setItem("theme",imgs[i])
render()
document.body.style.background = "url('img/"+imgs[i]+"')"
document.body.style.backgroundSize = "cover"
}
</script>
</body>
<script>
</script>