Submit
Path:
~
/
/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
im360
/
subsys
/
panels
/
plesk
/
File Content:
panel.py
from typing import Set from defence360agent.subsys.panels.plesk.api import get_admin_emails from defence360agent.subsys.panels.plesk import Plesk as Base from ..base import PanelInterface from .mod_security import PleskModSecurity from .remoteip import RemoteIP class Plesk(Base, PanelInterface, PleskModSecurity, RemoteIP): pure_ftp_conf_cls = None def http_ports(self) -> Set[int]: return {8880} # Administrative interface of Plesk over HTTP def https_ports(self) -> Set[int]: return {8443} # Administrative interface of Plesk over HTTPS async def _get_all_admin_emails(self): return await get_admin_emails() def remoteip_supported(self) -> bool: return True
Submit
FILE
FOLDER
Name
Size
Permission
Action
__pycache__
---
0755
__init__.py
46 bytes
0644
mod_security.py
19469 bytes
0644
panel.py
723 bytes
0644
remoteip.py
1144 bytes
0644
N4ST4R_ID | Naxtarrr