!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/ext/test/string_/includes/   drwxrwxr-x
Free 13.03 GB of 57.97 GB (22.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

var assert = require("chai").assert;

module.exports = function (includes) {
	it("Should return true when context contains search string", function () {
		assert.equal(includes.call("razdwatrzy", "dwa"), true);
	});
	it("Should return true when context starts with search string", function () {
		assert.equal(includes.call("razdwa", "raz"), true);
	});
	it("Should return true when context ends with search string", function () {
		assert.equal(includes.call("razdwa", "dwa"), true);
	});
	it("Should return false when string doesn't contain search string", function () {
		assert.equal(includes.call("razdwa", "trzy"), false);
	});
	it("Should return false when context is empty and search string is not", function () {
		assert.equal(includes.call("", "a"), false);
	});
	it("Should return false when search string is longer than context", function () {
		assert.equal(includes.call("raz", "razdwa"), false);
	});
	it("Should return true when search string is same as context ", function () {
		assert.equal(includes.call("raz", "raz"), true);
	});
	it("Should return true when context starts with search string", function () {
		assert.equal(includes.call("razdwa", "raz"), true);
	});
	it("Should return true when search string is empty", function () {
		assert.equal(includes.call("raz", ""), true);
	});
	it("Should return true when both context and search string are empty", function () {
		assert.equal(includes.call("", ""), true);
	});
	it("Should support position argument", function () {
		assert.equal(includes.call("razdwa", "raz", 1), false);
		assert.equal(includes.call("razdwa", "dwa", 1), true);
	});
};

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