[Tutorial] Using BASE64 encoding to hide HTML page
cyberdivision --> Sources
Select messages from
# through #

» 1 Author: cyberdivision PostPosted: Today at
    —

Encode a HTML String into a BASE64 and show the BASE64 code as plain text.

1) Start by writting a web page in html

Code:

<html>
<head>
<title>This is an example</title>
</head>
<body>
This is an example!
</body>
</html>


2) Use the site www.base64encode.org to encode the page

3) After enconding will be something like the string below

Code:

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT5UaGlzIGlzIGFuIGV4YW1wbGU8L3RpdGxlPg0KPC9oZWFkPg0KPGJvZHk+DQpUaGlzIGlzIGFuIGV4YW1wbGUhDQo8L2JvZHk+DQo8L2h0bWw+


4) Now add the encoded BASE64 string to HTML

Code:

<html>
<title>This is an Example</title>
<iframe src="data:text/html;base64,PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT5UaGlzIGlzIGFuIGV4YW1wbGU8L3RpdGxlPg0KPC9oZWFkPg0KPGJvZHk+DQpUaGlzIGlzIGFuIGV4YW1wbGUhDQo8L2JvZHk+DQo8L2h0bWw+" frameborder="0"></iframe>
</html>


That's all, you have make a HTML more harder to read...

Note: I have automate this proccess, search Malware Obfuscator.

Page 1 of 1

phpBB XT Edition/4.3.8