Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.134.253.166
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
js-base64 /
Delete
Unzip
Name
Size
Permission
Date
Action
.attic
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
1x1.png
68
B
-rw-r--r--
1985-10-26 08:15
LICENSE.md
1.45
KB
-rw-r--r--
1985-10-26 08:15
README.md
2.4
KB
-rw-r--r--
1985-10-26 08:15
base64.html
1.51
KB
-rw-r--r--
1985-10-26 08:15
base64.js
7.97
KB
-rw-r--r--
1985-10-26 08:15
base64.min.js
4.54
KB
-rw-r--r--
1985-10-26 08:15
bower.json
254
B
-rw-r--r--
1985-10-26 08:15
package.js
172
B
-rw-r--r--
1985-10-26 08:15
package.json
2.45
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!-- $Id: base64.html,v 1.1 2009/03/01 22:00:28 dankogai Exp dankogai $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Demo for base64.js</title> </head> <body> <h1>Demo for base64.js</h1> <p>$Id: base64.html,v 1.1 2009/03/01 22:00:28 dankogai Exp dankogai $</p> <table width="640"><tbody> <tr><th width="50%">Text</th><th>Base64 (URL Safe <input id="encodeURI" type="checkbox" onclick="doit()">)</th></tr> <tr> <th><textarea id="srctxt" cols="32" rows="4" onkeyup="doit()"> </textarea></th> <th><textarea id="base64" cols="32" rows="4" onkeyup=" $('srctxt').value = Base64.decode(this.value); doit(); if (1 /*@cc_on -1 @*/) $('data').src = 'data:text/plain;base64,' + this.value; "></textarea></th> </tr> <tr><th width="50%">Roundtrip</th><th>iframe w/ data: (no IE)</th></tr> <tr> <th><textarea id="roundtrip" cols=32" rows="4" disabled></textarea></th> <th><iframe id="data" width="80%" height="64"></iframe></th> </tr> </tbody></table> <script src="./base64.js"></script> <script> $ = function(id){ return document.getElementById(id) }; function doit(){ var encoded = Base64[ 'encode' + ($('encodeURI').checked ? 'URI' : '') ]($('srctxt').value); $('base64').value = encoded; if (1 /*@cc_on -1 @*/) { $('data').src = 'data:text/plain;base64,' + Base64.encode(Base64.decode(encoded)); } $('roundtrip').value = Base64.decode(encoded); } </script> </body> </html>