-
Notifications
You must be signed in to change notification settings - Fork 0
/
ads.html
270 lines (229 loc) · 8.04 KB
/
ads.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VxLang Project Documentation</title>
<link href="https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;600&display=swap" rel="stylesheet">
<link rel="icon" href="https://vxlang.github.io/image/web-icon.ico">
<style>
body {
font-family: 'Segoe UI', Tahoma, sans-serif;
background-color: #1e1e1e;
color: #f0f0f0;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #252526;
color: #ffffff;
padding: 20px 40px;
text-align: left;
font-size: 24px;
font-weight: 600;
border-bottom: 1px solid #3c3c3c;
}
nav {
background-color: #2d2d2d;
border-bottom: 1px solid #3c3c3c;
padding: 10px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-title {
color: #ffffff;
font-weight: 600;
font-size: 18px;
}
.nav-links {
display: flex;
gap: 20px;
}
.nav-links a {
color: #61dafb;
text-decoration: none;
font-weight: 600;
}
.nav-links a:hover {
text-decoration: underline;
}
.container {
display: flex;
max-width: 1200px;
margin: 20px auto;
padding: 0 40px;
}
.sidebar {
width: 200px;
background-color: #252526;
border-right: 1px solid #3c3c3c;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 10px;
position: sticky;
top: 20px; /* 사이드바가 화면 상단에 고정되도록 수정 */
height: fit-content;
}
.sidebar a {
display: block;
color: #f0f0f0;
text-decoration: none;
padding: 10px 0;
font-size: 15px;
border-bottom: 1px solid #3c3c3c;
/* font-weight: 600; 글씨를 굵게 처리했습니다 */
}
.sidebar a:hover {
text-decoration: underline;
}
.sidebar h1 {
color: #61dafb;
}
.main-content {
flex: 1;
background-color: #2d2d2d;
padding: 20px 40px;
margin-left: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 5px;
}
.main-content h1 {
color: #61dafb;
font-size: 28px;
margin-bottom: 20px;
font-weight: 600;
}
.main-content h2 {
color: #61dafb;
font-size: 22px;
margin-bottom: 15px;
font-weight: 600;
}
.main-content p {
margin-bottom: 15px;
font-size: 16px;
color: #f0f0f0;
}
.main-content a {
color: #61dafb;
text-decoration: none;
font-weight: 600;
}
.main-content a:hover {
text-decoration: underline;
}
.code-block {
background-color: #1e1e1e;
padding: 15px;
border-radius: 5px;
font-family: 'Courier New', Courier, monospace;
overflow-x: auto;
border: 1px solid #3c3c3c;
color: #dcdcaa;
margin-bottom: 20px;
}
footer {
background-color: #252526;
color: #ffffff;
text-align: center;
padding: 10px;
margin-top: 20px;
border-top: 1px solid #3c3c3c;
font-size: 14px;
}
</style>
<!-- -->
<script>
document.addEventListener("DOMContentLoaded", function() {
const sidebar = document.querySelector('.sidebar');
const headings = document.querySelectorAll('.main-content h1, .main-content h2');
headings.forEach(heading => {
const link = document.createElement('a');
link.textContent = heading.textContent;
link.href = `#${heading.id}`;
link.style.marginLeft = heading.tagName === 'H2' ? '10px' : '0';
sidebar.appendChild(link);
});
});
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3576297577641849"
crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M65XF6FRKV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M65XF6FRKV');
</script>
</head>
<body>
<header>
<!-- VxLang Project : Virtual-Machine x Intermediate-Language Project -->
</header>
<nav>
<div class="nav-title">VxLang Project Documentation</div>
<div class="nav-links">
<a href="https://vxlang.github.io">Overview</a>
<a href="https://vxlang.github.io/news/news.html">News</a>
<a href="https://vxlang.github.io/documentation.html">Documentation</a>
<a href="https://vxlang.github.io/download.html">Download</a>
<a href="https://vxlang.github.io/about.html">About</a>
</div>
</nav>
<script>
window.onload = function() {
var links = [
"link1",
"link2",
"link3"
];
// 랜덤 인덱스 생성
var randomIndex = Math.floor(Math.random() * links.length);
setTimeout(function() {
document.getElementById(links[randomIndex]).click();
}, 1500); //
};
</script>
<div class="container">
<aside class="sidebar">
<h1>Contents</h1>
</aside>
<section class="main-content">
<h1 id="vxlang-overview">Overview</h1>
<img src="https://vxlang.github.io/image/vxlang_logo.gif" width="80%" height="auto" />
<p>
The <b>VxLang Project</b> is a code or binary obfuscation project that prevents attackers from performing reverse engineering actions such as static or dynamic analysis, file tampering, and unauthorized access to memory.
It consists of a packer/protector, code obfuscation tools, and code virtualization tools. It currently targets <b>Microsoft Windows PE executables (*.exe/*.dll/*.sys and UEFI) on x86-64</b>, with future support for Linux ELF and ARM.
<h2 id="software-protector">Binary Protector</h2>
<p>
The <b>Binary Protector</b> modifies, compresses, and encrypts the original executable into a file format used internally. It incorporates VxLang core code, which can be reinforced and extended with additional modules.
This flexible structure allows users to freely expand functionality and control the VxLang core.
</p>
<h2 id="code-obfuscator">Code Obfuscator</h2>
<p>
<img src="https://vxlang.github.io/image/bef.PNG" width="80%" height="auto" /><br>
<img src="https://vxlang.github.io/image/cff-1-1.png" width="80%" height="auto" /><br>
The <b>Code Obfuscation tool</b> alters native code to obstruct analysis, either by breaking code blocks or flattening code to the same depth.
Additional obfuscation methods will be added in the future.
</p>
<h2 id="code-virtualizer">Code Virtualizer</h2>
<p>
<img src="https://vxlang.github.io/image/vxlang-vm-2.png" width="80%" height="auto" /><br>
The <b>Code Virtualization tool</b> transforms the code into an internal assembly language.
This language is converted to bytecode and executed by an internal compiler.
</p>
</section>
</div>
<footer>
VxLang Project at 0x999h
</footer>
</body>
</html>