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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/wa.picotech.app/public_html/node_modules/@thi.ng/bitstream/   drwxr-xr-x
Free 28.41 GB of 117.98 GB (24.08%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     simple.js (2.24 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/**
 * Barebones alternative to {@link BitOutputStream} for word sizes <= 8 and with
 * minimal API surface. The returned object only exposes 2 functions:
 *
 * - `write(x, size)` - writes a single value of given bit size (default: 1 bit)
 * - `bytes()` - retrieve all bytes written so far
 *
 * @remarks
 * The internal backing buffer automatically resizes on demand. The optionally
 * provided `capacity` is only the initial buffer size.
 *
 * @param capacity - initial capacity
 */
export const bitWriter = (capacity = 16) => {
    let buf = new Uint8Array(capacity);
    let pos = 0;
    let bit = 8;
    const ensure = () => {
        if (++pos === buf.length) {
            let b = new Uint8Array(buf.length << 1);
            b.set(buf);
            buf = b;
        }
    };
    return {
        write: (x, n = 1) => {
            x &= (1 << n) - 1;
            let b = bit - n;
            let m = bit < 8 ? ~((1 << bit) - 1) : 0;
            if (b >= 0) {
                m |= (1 << b) - 1;
                buf[pos] = (buf[pos] & m) | ((x << b) & ~m);
                if (b === 0) {
                    ensure();
                    bit = 8;
                }
                else {
                    bit = b;
                }
            }
            else {
                bit = 8 + b;
                buf[pos] = (buf[pos] & m) | ((x >>> -b) & ~m);
                ensure();
                buf[pos] = (buf[pos] & ((1 << bit) - 1)) | ((x << bit) & 0xff);
            }
        },
        bytes: () => buf.slice(0, pos + (bit & 7 ? 1 : 0)),
    };
};
/**
 * Barebones alternative to {@link BitInputStream} for word sizes <= 8 and with
 * minimal API surface and WITHOUT bounds checking of any form! The returned
 * function reads `n` bits from the originally provided buffer.
 *
 * @param buf
 */
export const bitReader = (buf) => {
    let p = 0;
    let b = 8;
    return (n = 1) => {
        let l = b - n;
        let out;
        if (l >= 0) {
            b = l;
            out = (buf[p] >>> l) & ((1 << n) - 1);
            if (!l) {
                p++;
                b = 8;
            }
        }
        else {
            out = (buf[p++] & ((1 << b) - 1)) << -l;
            b = 8 + l;
            out = out | (buf[p] >>> b);
        }
        return out;
    };
};

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0056 ]--