!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)

/usr/local/lib/node_modules/homebridge-config-ui-x/node_modules/binary/test/   drwxr-xr-x
Free 13.1 GB of 57.97 GB (22.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     loop_scan.js (1.45 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
var binary = require('../');
var test = require('tap').test;
var EventEmitter = require('events').EventEmitter;

test('loop scan', function (t) {
    t.plan(8 + 6 + 2);
    
    var em = new EventEmitter;
    
    binary.stream(em)
        .loop(function (end) {
            var vars_ = this.vars;
            this
                .scan('filler', 'BEGINMSG')
                .buffer('cmd', 3)
                .word8('num')
                .tap(function (vars) {
                    t.strictEqual(vars, vars_);
                    if (vars.num != 0x02 && vars.num != 0x06) {
                        t.same(vars.filler.length, 0);
                    }
                    if (vars.cmd.toString() == 'end') end();
                })
            ;
        })
        .tap(function (vars) {
            t.same(vars.cmd.toString(), 'end');
			t.same(vars.num, 0x08);
        })
    ;
    
    setTimeout(function () {
        em.emit('data', new Buffer(
            'BEGINMSGcmd\x01'
            + 'GARBAGEDATAXXXX'
            + 'BEGINMSGcmd\x02'
            + 'BEGINMSGcmd\x03'
        ));
    }, 10);
    
    setTimeout(function () {
        em.emit('data', new Buffer(
            'BEGINMSGcmd\x04'
            + 'BEGINMSGcmd\x05'
            + 'GARBAGEDATAXXXX'
            + 'BEGINMSGcmd\x06'
        ));
        em.emit('data', new Buffer('BEGINMSGcmd\x07'));
    }, 20);
    
    setTimeout(function () {
        em.emit('data', new Buffer('BEGINMSGend\x08'));
    }, 30);
});

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