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


Viewing file:     test-jpeg.js (1.77 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
var testCase = require('nodeunit').testCase;
var jpeg = require('../lib/jpeg.js');
var BufferStream = require('../lib/bufferstream.js');
var buf = require('fs').readFileSync(__dirname + '/test.jpg');

module.exports = testCase({
	"test parseSections": function(test) {
		var expectedSections = [
			{ type: 216, offset: 2, len: 0 },
			{ type: 224, offset: 6, len: 14 },
			{ type: 226, offset: 24, len: 3158 },
			{ type: 225, offset: 3186, len: 200 },
			{ type: 225, offset: 3390, len: 374 },
			{ type: 219, offset: 3768, len: 65 },
			{ type: 219, offset: 3837, len: 65 },
			{ type: 192, offset: 3906, len: 15 },
			{ type: 196, offset: 3925, len: 29 },
			{ type: 196, offset: 3958, len: 179 },
			{ type: 196, offset: 4141, len: 29 },
			{ type: 196, offset: 4174, len: 179 },
			{ type: 218, offset: 4355, len: 0 }
		];
		var index = 0;
		var jpegStream = new BufferStream(buf), start = jpegStream.mark();
		jpeg.parseSections(jpegStream, function(type, sectionStream) {
			test.strictEqual(type, expectedSections[index].type);
			test.strictEqual(sectionStream.offsetFrom(start), expectedSections[index].offset);
			test.strictEqual(sectionStream.remainingLength(), expectedSections[index].len);
			++index;
		});
		test.strictEqual(index, expectedSections.length, 'all sections should be passed to the iterator');
		test.done();	
	},
	"test getSizeFromSOFSection": function(test) {
		var size = jpeg.getSizeFromSOFSection(new BufferStream(buf, 3906, 15, true));
		test.strictEqual(size.width, 2);
		test.strictEqual(size.height, 1);
		test.done();
	},
	"test getSectionName": function(test) {
		test.deepEqual({name: 'SOI'}, jpeg.getSectionName(0xD8));
		test.deepEqual({name: 'APP', index: 15}, jpeg.getSectionName(0xEF));
		test.deepEqual({name: 'DHT'}, jpeg.getSectionName(0xC4));
		test.done();
	}
});

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