Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amatya /
node_modules /
buffer /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
node
[ DIR ]
drwxr-xr-x
_polyfill.js
4.3
KB
-rw-r--r--
base64.js
1.58
KB
-rw-r--r--
basic.js
1.77
KB
-rw-r--r--
compare.js
1.17
KB
-rw-r--r--
constructor.js
4.31
KB
-rw-r--r--
from-string.js
3.25
KB
-rw-r--r--
is-buffer.js
664
B
-rw-r--r--
methods.js
2.82
KB
-rw-r--r--
slice.js
958
B
-rw-r--r--
static.js
481
B
-rw-r--r--
to-string.js
6.88
KB
-rw-r--r--
write.js
3.4
KB
-rw-r--r--
write_infinity.js
1.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : from-string.js
if (process.env.OBJECT_IMPL) global.TYPED_ARRAY_SUPPORT = false var B = require('../').Buffer var test = require('tape') test('detect utf16 surrogate pairs', function (t) { var text = '\uD83D\uDE38' + '\uD83D\uDCAD' + '\uD83D\uDC4D' var buf = new B(text) t.equal(text, buf.toString()) t.end() }) test('detect utf16 surrogate pairs over U+20000 until U+10FFFF', function (t) { var text = '\uD842\uDFB7' + '\uD93D\uDCAD' + '\uDBFF\uDFFF' var buf = new B(text) t.equal(text, buf.toString()) t.end() }) test('replace orphaned utf16 surrogate lead code point', function (t) { var text = '\uD83D\uDE38' + '\uD83D' + '\uD83D\uDC4D' var buf = new B(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0xef, 0xbf, 0xbd, 0xf0, 0x9f, 0x91, 0x8d ])) t.end() }) test('replace orphaned utf16 surrogate trail code point', function (t) { var text = '\uD83D\uDE38' + '\uDCAD' + '\uD83D\uDC4D' var buf = new B(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0xef, 0xbf, 0xbd, 0xf0, 0x9f, 0x91, 0x8d ])) t.end() }) test('do not write partial utf16 code units', function (t) { var f = new B([0, 0, 0, 0, 0]) t.equal(f.length, 5) var size = f.write('あいうえお', 'utf16le') t.equal(size, 4) t.deepEqual(f, new B([0x42, 0x30, 0x44, 0x30, 0x00])) t.end() }) test('handle partial utf16 code points when encoding to utf8 the way node does', function (t) { var text = '\uD83D\uDE38' + '\uD83D\uDC4D' var buf = new B(8) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0xf0, 0x9f, 0x91, 0x8d ])) buf = new B(7) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0x00, 0x00, 0x00 ])) buf = new B(6) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0x00, 0x00 ])) buf = new B(5) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0x00 ])) buf = new B(4) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8 ])) buf = new B(3) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x00, 0x00, 0x00 ])) buf = new B(2) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x00, 0x00 ])) buf = new B(1) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x00 ])) t.end() }) test('handle invalid utf16 code points when encoding to utf8 the way node does', function (t) { var text = 'a' + '\uDE38\uD83D' + 'b' var buf = new B(8) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd, 0xef, 0xbf, 0xbd, 0x62 ])) buf = new B(7) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd, 0xef, 0xbf, 0xbd ])) buf = new B(6) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd, 0x00, 0x00 ])) buf = new B(5) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd, 0x00 ])) buf = new B(4) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd ])) buf = new B(3) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0x00, 0x00 ])) buf = new B(2) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0x00 ])) buf = new B(1) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61 ])) t.end() })
Close