Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python37 /
libexec /
Delete
Unzip
Name
Size
Permission
Date
Action
twisted-dropin-cache
1.33
KB
-rwxr-xr-x
2023-02-23 17:33
Save
Rename
#!/opt/alt/python37/bin/python3 # -*- Mode: Python -*- # vi:si:et:sw=4:sts=4:ts=4 # this program regenerates the dropin.cache file for twisted, # or for the modules specified on the command line # we copy and adapt getPlugins from there because getPlugins does log.err() # on *any* exception, giving us a full traceback every time a plug-in has # gone away import sys from twisted.plugin import IPlugin, getCache import twisted.plugins def getPlugins(interface, package=twisted.plugins): allDropins = getCache(package) for dropin in allDropins.values(): for plugin in dropin.plugins: try: adapted = interface(plugin, None) except AttributeError: # this is most likely due to a module in the cache that # has now gone away, so ignore it pass except: log.err() else: if adapted is not None: yield adapted which = None if len(sys.argv) > 1: which = sys.argv[1:] if not which: list(getPlugins(IPlugin)) else: from twisted.python import reflect for w in which: try: module = reflect.namedAny(w) except AttributeError: sys.stderr.write("No module '%s' found.\n" % w) continue list(getPlugins(IPlugin, module))