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.10
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 /
system-config-printer /
xml /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
preferreddrivers.rng
7.31
KB
-rw-r--r--
validate.py
2.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : validate.py
#!/usr/bin/python3 ## system-config-printer ## Copyright (C) 2010 Red Hat, Inc. ## Authors: ## Tim Waugh <twaugh@redhat.com> ## 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ## This program performs validation that cannot be performed using ## RELAX NG alone. import fnmatch import sys import xml.etree.ElementTree class Validator: def __init__ (self, filename): self._filename = filename def validate (self): filename = self._filename print ("Validating %s" % filename) preferreddrivers = xml.etree.ElementTree.XML (open (filename).read ()) (drivertypes, preferenceorder) = preferreddrivers.getchildren () validates = True names = set() for drivertype in drivertypes.getchildren (): name = drivertype.get ("name") names.add (name) for printer in preferenceorder.getchildren (): types = [] drivers = printer.find ("drivers") if drivers is not None: types.extend (drivers.getchildren ()) blacklist = printer.find ("blacklist") if blacklist is not None: types.extend (blacklist.getchildren ()) for drivertype in types: pattern = drivertype.text.strip () matches = fnmatch.filter (names, pattern) names -= set (matches) for name in names: validates = False print(("*** Driver type \"%s\" is never used" % name), file=sys.stderr) return validates import getopt import os opts, args = getopt.getopt (sys.argv[1:], "") if len (args) < 1: dirname = os.path.dirname (sys.argv[0]) args = [os.path.join (dirname, "preferreddrivers.xml")] exitcode = 0 for filename in args: validator = Validator (filename) if not validator.validate (): exitcode = 1 sys.exit (exitcode)
Close