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

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/share/nodejs/asyncro/src/   drwxr-xr-x
Free 662.91 GB of 879.6 GB (75.36%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     util.js (918 B)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/** @private */
export function map(array, mapper) {
	return Promise.all(array.map(mapper));
}

/** Invoke a list (object or array) of functions, returning their results in the same structure.
 *	@private
 */
export function resolve(list) {
	let out = Array.isArray(list) ? [] : {};
	for (let i in list) if (list.hasOwnProperty(i)) out[i] = list[i]();
	return out;
}

/** reduce() callback that pushes values into an Array accumulator
 *	@private
 */
export async function pushReducer(acc, v) {
	acc.push(await v());
	return acc;
}

/**
 * Base `map` to invoke `Array` operation **in parallel**.
 * @private
 * @param {String} operation		The operation name of `Array` to be invoked.
 * @return {Array} resulting mapped/transformed values.
 */
export function baseMap(operation) {
	return async (array, predicate) => {
		let mapped = await map(array, predicate);
		return array[operation]( (v, i) => mapped[i] );
	};
}

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