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


Viewing file:     plask_viewer.js (1.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
var plask = require('plask');
var fs = require('fs');
var omggif = require('./omggif');

if (process.argv.length < 3) throw "Usage: <filename.gif>";
var buf = fs.readFileSync(process.argv[2]);
var gr = new omggif.GifReader(buf);

var pixels = plask.SkCanvas.create(gr.width, gr.height);

plask.simpleWindow({
  settings: {
    width: 800,
    height: 600
  },

  init: function() {
    var canvas = this.canvas, paint = this.paint;

    canvas.clear(230, 230, 230, 255);  // Draw the background, just once.
  },

  draw: function() {
    var canvas = this.canvas, paint = this.paint;

    var frame_num = this.framenum % gr.numFrames();
    var frame_info = gr.frameInfo(frame_num);

    if (frame_num === 0 || frame_info.disposal === 2 /* restore to bg */)
      pixels.clear(0, 0, 0, 255);

    var start = Date.now();
    gr.decodeAndBlitFrameBGRA(frame_num, pixels.pixels || pixels);
    console.log('Decoded and blit frame in: '  + (Date.now() - start) + 'ms');

    canvas.drawCanvas(paint, pixels, 0, 0, gr.width, gr.height);

    var this_ = this;
    setTimeout(function() { this_.redraw(); }, frame_info.delay * 10);
  }
});

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