!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/server/node_modules/findhit-util/lib/   drwxr-xr-x
Free 12.97 GB of 57.97 GB (22.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     core.js (2.43 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
module.exports = (function ( ƒ ){

	ƒ.uniqId = function () {
		return Math.floor( Math.random() * 11 ) +''+ Math.floor( Math.random() * 1000000 );
	};

	ƒ.uuid = (function() {
		var s4 = function () {
			return Math.floor((1 + Math.random()) * 0x10000)
				.toString(16)
				.substring(1);
		}

		return function() {
			return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
			s4() + '-' + s4() + s4() + s4();
		};
	})();

	ƒ.forEach = ƒ.each = function ( o, fn, context ) {

		if( ƒ.is.Array( o ) ) {
			return ƒ.Array.each.apply( null, arguments );
		}

		if( ƒ.is.Object( o ) ) {
			return ƒ.Object.each.apply( null, arguments );
		}

		return false;
	};

	ƒ.map = function ( o, fn, context ) {

		if ( ƒ.isnt.Function( fn ) ) {
			throw new TypeError("fn must be a function");
		}

		if( ƒ.is.Array( o ) ) {
			return ƒ.Array.map.apply( null, arguments );
		}

		if( ƒ.is.Object( o ) ) {
			return ƒ.Object.map.apply( null, arguments );
		}

		return false;
	};

	ƒ.filter = function ( o, fn, context ) {

		if ( ƒ.isnt.Function( fn ) ) {
			throw new TypeError("fn must be a function");
		}

		if( ƒ.is.Array( o ) ) {
			return ƒ.Array.filter.apply( null, arguments );
		}

		if( ƒ.is.Object( o ) ) {
			return ƒ.Object.filter.apply( null, arguments );
		}

		return false;
	};

	ƒ.clone = function ( obj ) {
		var clone = {};
		clone.constructor = obj.constructor;
		clone.prototype = obj.prototype;
		return ƒ.extend( clone, obj );
	};

	ƒ.extend = function ( target ) {
		var srcs,
			r = false,
			i, j, len, src;

		if ( target === true){
			target = arguments[1];
			r = true;
			srcs = Array.prototype.slice.call(arguments, 2);
		} else {
			srcs = Array.prototype.slice.call(arguments, 1);
		}

		for ( j = 0, len = srcs.length; j < len; j++ ) {
			src = srcs[j];
			for ( i in src ) {
				if ( r && typeof target[i] == 'object' )
					this.extend( target[i], src[i] );
				else
					target[i] = src[i];
			}
		}
		return target;
	};

	ƒ.slice = function ( target, start, end ) {

		if ( ƒ.is.Function( target.slice ) ) {
			return target.slice( start, end );
		}

		if ( ƒ.is.Object( target ) ) {
			var keys = Object.keys( target ).slice( start, end );

			return ƒ.filter( target, function ( value, key ) {
				return keys.indexOf( key ) !== -1;
			});
		}

		return [];
	};

	ƒ.stamp = (function () {
		var last_id = 0;

		return function ( obj ) {
			obj._id = obj._id || ++last_id;
			return obj._id;
		};
	})();

	ƒ.log = console.log;

});

:: 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.0291 ]--