Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python3.9 /
site-packages /
gpg /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-07-22 01:03
constants
[ DIR ]
drwxr-xr-x
2024-07-22 01:03
__init__.py
4.89
KB
-rw-r--r--
2018-12-03 09:37
_gpgme.cpython-39-x86_64-linux-gnu.so
832.17
KB
-rwxr-xr-x
2022-03-30 19:37
callbacks.py
1.91
KB
-rw-r--r--
2018-08-27 07:06
core.py
60.67
KB
-rw-r--r--
2021-01-08 15:23
errors.py
6.1
KB
-rw-r--r--
2019-06-04 06:27
gpgme.py
151.97
KB
-rw-r--r--
2022-03-30 19:35
results.py
3.22
KB
-rw-r--r--
2018-12-03 09:37
util.py
1.96
KB
-rw-r--r--
2018-08-27 07:06
version.py
3.09
KB
-rw-r--r--
2022-03-30 19:34
Save
Rename
# Copyright (C) 2004 Igor Belyi <belyi@users.sourceforge.net> # Copyright (C) 2002 John Goerzen <jgoerzen@complete.org> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library 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 # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA from __future__ import absolute_import, print_function, unicode_literals from getpass import getpass del absolute_import, print_function, unicode_literals def passphrase_stdin(hint, desc, prev_bad, hook=None): """This is a sample callback that will read a passphrase from the terminal. The hook here, if present, will be used to describe why the passphrase is needed.""" why = '' if hook is not None: why = ' ' + hook if prev_bad: why += ' (again)' print("Please supply %s' password%s:" % (hint, why)) return getpass() def progress_stdout(what, type, current, total, hook=None): print("PROGRESS UPDATE: what = %s, type = %d, current = %d, total = %d" % (what, type, current, total)) def readcb_fh(count, hook): """A callback for data. hook should be a Python file-like object.""" if count: # Should return '' on EOF return hook.read(count) else: # Wants to rewind. if not hasattr(hook, 'seek'): return None hook.seek(0, 0) return None