-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.html
178 lines (165 loc) · 9.2 KB
/
master.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="RocketCake">
<title></title>
<link rel="stylesheet" type="text/css" href="master_html.css">
</head>
<body>
<div class="textstyle1">
<div id="container_2b1a1ed5"><div id="container_2b1a1ed5_padding" ><div class="textstyle1"><span class="textstyle2"><a href="index.html" class="wsp22fd5893">Aleksandar Milenkoski</a></span><span class="textstyle2"><br/><br/></span><span class="textstyle2"><a href="index.html" class="wsp22fd5893">Threat Research | Threat Intelligence | Adversary Analysis</a></span></div>
<div class="textstyle3"></div>
</div></div><div id="container_4746e9ac"><div class="textstyle3"><script>
function createsidebarMenu()
{
var sidebar = document.getElementById("thesidebarMenu");
if (!sidebar)
{
sidebar = document.createElement("div");
sidebar.id = "thesidebarMenu";
sidebar.style.cssText = 'height: 100%; max-width:100vw; width: 0; position: fixed; z-index: 3000; top: 0; left: 0; background-color: #2C2825; overflow-x: hidden; overflow-y:auto; transition: 0.5s;';
//document.body.appendChild(sidebar);
// close button
var closebtn = document.createElement("a");
//sidebar.appendChild(closebtn);
closebtn.href = 'javascript:void(0)';
closebtn.onclick = closesidebarMenu;
closebtn.style.cssText = 'position: absolute; top: 3%; right: 5%; font-size: clamp(35px, 4.5vw, 60px); color: #FFFFFF; text-decoration: none;';
closebtn.innerHTML = '\× '; // × or × or ×
sidebar.appendChild(closebtn);
// add links
var aelem = document.createElement("a");
aelem.textContent = "CYBERESPIONAGE";
aelem.href = 'apt.html';
aelem.style.cssText = 'padding: 1.5% 1% 1.5% 3%; margin-top: 15vh; text-decoration: none; font-family: Segoe, Segoe UI, Helvetica Neue, sans-serif; font-size: clamp(17px, 3.15vw, 40px); color: #FFFFFF; display: block; transition: 0.4s;';
sidebar.appendChild(aelem);
var aelem = document.createElement("a");
aelem.textContent = "CYBERCRIME";
aelem.href = 'cybercrime.html';
aelem.style.cssText = 'padding: 1.5% 1% 1.5% 3%; text-decoration: none; font-family: Segoe, Segoe UI, Helvetica Neue, sans-serif; font-size: clamp(17px, 3.15vw, 40px); color: #FFFFFF; display: block; transition: 0.4s;';
sidebar.appendChild(aelem);
var aelem = document.createElement("a");
aelem.textContent = "WINDOWS INTERNALS";
aelem.href = 'winternals.html';
aelem.style.cssText = 'padding: 1.5% 1% 1.5% 3%; text-decoration: none; font-family: Segoe, Segoe UI, Helvetica Neue, sans-serif; font-size: clamp(17px, 3.15vw, 40px); color: #FFFFFF; display: block; transition: 0.4s;';
sidebar.appendChild(aelem);
var aelem = document.createElement("a");
aelem.textContent = "ACADEMIA";
aelem.href = 'academia.html';
aelem.style.cssText = 'padding: 1.5% 1% 1.5% 3%; text-decoration: none; font-family: Segoe, Segoe UI, Helvetica Neue, sans-serif; font-size: clamp(17px, 3.15vw, 40px); color: #FFFFFF; display: block; transition: 0.4s;';
sidebar.appendChild(aelem);
var aelem = document.createElement("a");
aelem.textContent = "TALKS";
aelem.href = 'talks.html';
aelem.style.cssText = 'padding: 1.5% 1% 1.5% 3%; text-decoration: none; font-family: Segoe, Segoe UI, Helvetica Neue, sans-serif; font-size: clamp(17px, 3.15vw, 40px); color: #FFFFFF; display: block; transition: 0.4s;';
sidebar.appendChild(aelem);
var aelem = document.createElement("a");
aelem.textContent = "COMMUNITY";
aelem.href = 'community.html';
aelem.style.cssText = 'padding: 1.5% 1% 1.5% 3%; text-decoration: none; font-family: Segoe, Segoe UI, Helvetica Neue, sans-serif; font-size: clamp(17px, 3.15vw, 40px); color: #FFFFFF; display: block; transition: 0.4s;';
sidebar.appendChild(aelem);
document.body.appendChild(sidebar);
}
}
createsidebarMenu();
function opensidebarMenu()
{
var sidebarWidth = "90%";
var sidebar = document.getElementById("thesidebarMenu");
sidebar.style.width = sidebarWidth;
// set margin of all top containers to width
//for(var child=document.body.firstChild; child!==null; child=child.nextSibling)
//if (child.tagName == 'DIV' && child.id != 'thesidebarMenu')
//{
//child.style.transition = "margin-left .5s";
//child.style.marginLeft = sidebarWidth;
//}
}
function closesidebarMenu()
{
document.getElementById("thesidebarMenu").style.width = "0";
// set margin of all top containers back
for(var child=document.body.firstChild; child!==null; child=child.nextSibling)
if (child.tagName == 'DIV' && child.id != 'thesidebarMenu')
child.style.marginLeft = "0";
}
</script>
<a href=" javascript:opensidebarMenu();" style="text-decoration:none"><div id="button_39dc1fcb"><div class="vcenterstyle1"><div class="vcenterstyle2"><div class="textstyle3"></div>
<div class="textstyle1"> <span class="textstyle4">≡ Menu</span>
</div>
<div class="textstyle3"></div>
</div></div></div></a></div>
<div class="textstyle1"><div id="menu_5f8bee95"><div id="menu_5f8bee95_menualignmentwrapper" ><div class="menuholder1"><a href="javascript:void(0);">
<div id="menuentry_6f12c37a" class="menustyle1 menu_5f8bee95_mainMenuEntry mobileEntry">
<div class="menuentry_text1">
<span class="textstyle5">≡</span>
</div>
</div>
</a>
<a href="apt.html" style="text-decoration:none">
<div id="menuentry_2bf3ca44" class="menustyle2 menu_5f8bee95_mainMenuEntry normalEntry">
<div class="menuentry_text2">
<span class="textstyle6">Cyberespionage</span>
</div>
</div>
</a>
<a href="cybercrime.html" style="text-decoration:none">
<div id="menuentry_10274de8" class="menustyle3 menu_5f8bee95_mainMenuEntry normalEntry">
<div class="menuentry_text2">
<span class="textstyle6">Cybercrime</span>
</div>
</div>
</a>
<a href="winternals.html" style="text-decoration:none">
<div id="menuentry_6a79eea8" class="menustyle4 menu_5f8bee95_mainMenuEntry normalEntry">
<div class="menuentry_text2">
<span class="textstyle6">Windows Internals</span>
</div>
</div>
</a>
<a href="academia.html" style="text-decoration:none">
<div id="menuentry_3bb8a4fa" class="menustyle5 menu_5f8bee95_mainMenuEntry normalEntry">
<div class="menuentry_text2">
<span class="textstyle6">Academia</span>
</div>
</div>
</a>
<a href="talks.html" style="text-decoration:none">
<div id="menuentry_5d208a30" class="menustyle6 menu_5f8bee95_mainMenuEntry normalEntry">
<div class="menuentry_text2">
<span class="textstyle6">Talks</span>
</div>
</div>
</a>
<a href="community.html" style="text-decoration:none">
<div id="menuentry_1aa18056" class="menustyle7 menu_5f8bee95_mainMenuEntry normalEntry">
<div class="menuentry_text2">
<span class="textstyle6">Community</span>
</div>
</div>
</a>
<script type="text/javascript" src="rc_images/wsp_menu.js"></script>
<script type="text/javascript">
var js_menu_5f8bee95= new wsp_menu('menu_5f8bee95', 'menu_5f8bee95', 15, null, true);
js_menu_5f8bee95.createMenuForItem('menuentry_6f12c37a', [" <span class=\"textstyle7\">Cyberespionage</span> ", 'apt.html', '',
" <span class=\"textstyle7\">Cybercrime</span> ", 'cybercrime.html', '',
" <span class=\"textstyle7\">Windows Internals</span> ", 'winternals.html', '',
" <span class=\"textstyle7\">Academia</span> ", 'academia.html', '',
" <span class=\"textstyle7\">Talks</span> ", 'talks.html', '',
" <span class=\"textstyle7\">Community</span> ", 'community.html', '']);
js_menu_5f8bee95.createMenuForItem('menuentry_2bf3ca44', []);
js_menu_5f8bee95.createMenuForItem('menuentry_10274de8', []);
js_menu_5f8bee95.createMenuForItem('menuentry_6a79eea8', []);
js_menu_5f8bee95.createMenuForItem('menuentry_3bb8a4fa', []);
js_menu_5f8bee95.createMenuForItem('menuentry_5d208a30', []);
js_menu_5f8bee95.createMenuForItem('menuentry_1aa18056', []);
</script>
</div></div></div></div>
</div><div id="container_495e96cc"><div id="container_495e96cc_padding" ></div></div><div id="container_7a5ef65"><div id="container_7a5ef65_padding" ><div class="textstyle1"><div id="placeh_36035886" >
</div>
</div>
<div style="clear:both"></div></div></div> </div>
</body>
</html>