Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
share /
hplip /
base /
[ HOME SHELL ]
Name
Size
Permission
Action
pexpect
[ DIR ]
drwxr-xr-x
__pycache__
[ DIR ]
drwxrwxr-x
avahi.py
3.01
KB
-rw-r--r--
codes.py
30.55
KB
-rw-r--r--
device.py
96.04
KB
-rw-r--r--
dime.py
3.3
KB
-rw-r--r--
exif.py
35.08
KB
-rw-r--r--
g.py
14.19
KB
-rw-r--r--
imageprocessing.py
33.14
KB
-rw-r--r--
imagesize.py
5.75
KB
-rw-r--r--
__init__.py
826
B
-rw-r--r--
ldif.py
16.33
KB
-rw-r--r--
LedmWifi.py
30.33
KB
-rw-r--r--
local.py
2.36
KB
-rw-r--r--
logger.py
18.06
KB
-rw-r--r--
magic.py
63.2
KB
-rw-r--r--
maint.py
58.36
KB
-rw-r--r--
mdns.py
10.04
KB
-rw-r--r--
mfpdtf.py
17.34
KB
-rw-r--r--
models.py
19.12
KB
-rw-r--r--
module.py
28.32
KB
-rw-r--r--
os_utils.py
2.28
KB
-rw-r--r--
password.py
13
KB
-rw-r--r--
pkit.py
11.45
KB
-rw-r--r--
pml.py
26.46
KB
-rw-r--r--
queues.py
16.35
KB
-rw-r--r--
services.py
9.74
KB
-rw-r--r--
sixext.py
5.78
KB
-rw-r--r--
six.py
22.32
KB
-rw-r--r--
slp.py
5.8
KB
-rw-r--r--
smart_install.py
11.37
KB
-rw-r--r--
status.py
76.42
KB
-rw-r--r--
strings.py
28.21
KB
-rw-r--r--
tui.py
13.79
KB
-rw-r--r--
utils.py
76.22
KB
-rw-r--r--
validation.py
3.68
KB
-rw-r--r--
vcard.py
43.66
KB
-rw-r--r--
wifi.py
22.25
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : imagesize.py
# -*- coding: utf-8 -*- # # (c) Copyright 2001-2015 HP Development Company, L.P. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # Author: Don Welch # # Ported from Perl's Image::Size module by Randy J. Ray # # Std Lib import os import os.path import re import struct # Re patterns xbm_pat = re.compile(r'^\#define\s*\S*\s*(\d+)\s*\n\#define\s*\S*\s*(\d+)', re.IGNORECASE) xpm_pat = re.compile(r'"\s*(\d+)\s+(\d+)(\s+\d+\s+\d+){1,2}\s*"', re.IGNORECASE) ppm_pat1 = re.compile(r'^\#.*', re.IGNORECASE | re.MULTILINE) ppm_pat2 = re.compile(r'^(P[1-6])\s+(\d+)\s+(\d+)', re.IGNORECASE) ppm_pat3 = re.compile(r'IMGINFO:(\d+)x(\d+)', re.IGNORECASE) tiff_endian_pat = re.compile(r'II\x2a\x00') def readin(stream, length, offset=0): if offset != 0: stream.seek(offset, 0) return stream.read(length) def xbmsize(stream): width, height = -1, -1 match = xbm_pat.match(readin(stream,1024)) try: width = int(match.group(1)) height = int(match.group(2)) except: pass return width, height def xpmsize(stream): width, height = -1, -1 match = re.search(xpm_pat, readin(stream, 1024)) try: width = int(match.group(1)) height = int(match.group(2)) except: pass return width, height def pngsize(stream): # also does MNG width, height = -1, -1 if readin(stream, 4, 12) in ('IHDR', 'MHDR'): height, width = struct.unpack("!II", stream.read(8)) return width,height def jpegsize(stream): width, height = -1, -1 stream.seek(2) while True: length = 4 buffer = readin(stream, length) try: marker, code, length = struct.unpack("!c c h", buffer) except: break if marker != '\xff': break if 0xc0 <= ord(code) <= 0xc3: length = 5 height, width = struct.unpack("!xhh", readin(stream, length)) else: readin(stream, length-2) return width, height def ppmsize(stream): width, height = -1, -1 header = re.sub(ppm_pat1, '', readin(stream, 1024)) match = ppm_pat2.match(header) typ = '' try: typ = match.group(1) width = int(match.group(2)) height = int(match.group(3)) except: pass if typ == 'P7': match = ppm_pat3.match(header) try: width = int(match.group(1)) height = int(match.group(2)) except: pass return width, height def tiffsize(stream): header = readin(stream, 4) endian = ">" match = tiff_endian_pat.match(header) if match is not None: endian = "<" input = readin(stream, 4, 4) offset = struct.unpack('%si' % endian, input)[0] num_dirent = struct.unpack('%sH' % endian, readin(stream, 2, offset))[0] offset += 2 num_dirent = offset+(num_dirent*12) width, height = -1, -1 while True: ifd = readin(stream, 12, offset) if ifd == '' or offset > num_dirent: break offset += 12 tag = struct.unpack('%sH'% endian, ifd[0:2])[0] type = struct.unpack('%sH' % endian, ifd[2:4])[0] if tag == 0x0100: width = struct.unpack("%si" % endian, ifd[8:12])[0] elif tag == 0x0101: height = struct.unpack("%si" % endian, ifd[8:12])[0] return width, height def bmpsize(stream): width, height = struct.unpack("<II", readin(stream, 8, 18)) return width, height def gifsize(stream): # since we only care about the printed size of the image # we only need to get the logical screen sizes, which are # the maximum extents of the image. This code is much simpler # than the code from Image::Size #width, height = -1, -1 buf = readin(stream, 7, 6) # LSx, GCTF, etc height, width, flags, bci, par = struct.unpack('<HHBBB', buf) return width, height TYPE_MAP = {re.compile('^GIF8[7,9]a') : ('image/gif', gifsize), re.compile("^\xFF\xD8") : ('image/jpeg', jpegsize), re.compile("^\x89PNG\x0d\x0a\x1a\x0a") : ('image/png', pngsize), re.compile("^P[1-7]") : ('image/x-portable-pixmap', ppmsize), re.compile('\#define\s+\S+\s+\d+') : ('image/x-xbitmap', xbmsize), re.compile('\/\* XPM \*\/') : ('image/x-xpixmap', xpmsize), re.compile('^MM\x00\x2a') : ('image/tiff', tiffsize), re.compile('^II\*\x00') : ('image/tiff', tiffsize), re.compile('^BM') : ('image/x-bitmap', bmpsize), re.compile("^\x8aMNG\x0d\x0a\x1a\x0a") : ('image/png', pngsize), } def imagesize(filename, mime_type=''): width, height = -1, -1 f = open(filename, 'r') buffer = f.read(4096) if not mime_type: for t in TYPE_MAP: match = t.search(buffer) if match is not None: mime_type, func = TYPE_MAP[t] break if mime_type and func: f.seek(0) width, height = func(f) else: width, height = -1, -1 f.close() return height, width, mime_type
Close