!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/node_modules/d/test/   drwxrwxr-x
Free 12.95 GB of 57.97 GB (22.33%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     lazy.js (2.77 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";

var d                        = require("../")
  , getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;

module.exports = function (t, a) {
	var Foo = function () {}, i = 1, o, o2, desc;
	Object.defineProperties(
		Foo.prototype,
		t({
			bar: d(function () { return ++i; }),
			bar2: d(function () { return this.bar + 23; }),
			bar3: d(function () { return this.bar2 + 34; }, { desc: "ew" }),
			bar4: d(function () { return this.bar3 + 12; }, { cacheName: "_bar4_" }),
			bar5: d(function () { return this.bar4 + 3; }, { cacheName: "_bar5_", desc: "e" })
		})
	);

	desc = getOwnPropertyDescriptor(Foo.prototype, "bar");
	a(desc.configurable, true, "Configurable: default");
	a(desc.enumerable, false, "Enumerable: default");

	o = new Foo();
	a.deep([o.bar, o.bar2, o.bar3, o.bar4, o.bar5], [2, 25, 59, 71, 74], "Values");

	a.deep(
		getOwnPropertyDescriptor(o, "bar3"),
		{ configurable: false, enumerable: true, writable: true, value: 59 }, "Desc"
	);
	a(o.hasOwnProperty("bar4"), false, "Cache not exposed");
	desc = getOwnPropertyDescriptor(o, "bar5");
	a.deep(
		desc, { configurable: false, enumerable: true, get: desc.get, set: desc.set },
		"Cache & Desc: desc"
	);

	o2 = Object.create(o);
	o2.bar = 30;
	o2.bar3 = 100;

	a.deep(
		[o2.bar, o2.bar2, o2.bar3, o2.bar4, o2.bar5], [30, 25, 100, 112, 115], "Extension Values"
	);

	Foo = function () {};
	Object.defineProperties(
		Foo.prototype,
		t({
			test: d("w", function () { return "raz"; }),
			test2: d("", function () { return "raz"; }, { desc: "w" }),
			test3: d("", function () { return "raz"; }, { cacheName: "__test3__", desc: "w" }),
			test4: d("w", "bar")
		})
	);

	o = new Foo();
	o.test = "marko";
	a.deep(
		getOwnPropertyDescriptor(o, "test"),
		{ configurable: false, enumerable: false, writable: true, value: "marko" }, "Set before get"
	);
	o.test2 = "marko2";
	a.deep(
		getOwnPropertyDescriptor(o, "test2"),
		{ configurable: false, enumerable: false, writable: true, value: "marko2" },
		"Set before get: Custom desc"
	);
	o.test3 = "marko3";
	a.deep(
		getOwnPropertyDescriptor(o, "__test3__"),
		{ configurable: false, enumerable: false, writable: true, value: "marko3" },
		"Set before get: Custom cache name"
	);
	a(o.test4, "bar", "Resolve by value");

	a.h1("Flat");
	Object.defineProperties(
		Foo.prototype,
		t({
			flat: d(function () { return "foo"; }, { flat: true }),
			flat2: d(function () { return "bar"; }, { flat: true })
		})
	);

	a.h2("Instance");
	a(o.flat, "foo", "Value");
	a(o.hasOwnProperty("flat"), false, "Instance");
	a(Foo.prototype.flat, "foo", "Prototype");

	a.h2("Direct");
	a(Foo.prototype.flat2, "bar");

	a.h2("Reset direct");
	Object.defineProperties(Foo.prototype, t({ testResetDirect: d(false) }));

	a.throws(function () { Foo.prototype.testResetDirect = false; }, TypeError);
};

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0363 ]--