📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 09:55:48
📂
/
/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
defence360agent
/
migrations
✏️
Editing: 092_ignore_proc_sys_dirs.py
""" This migration adds /proc and /sys to ignore for malware scanning """ def migrate(migrator, database, fake=False, **kwargs): if not fake: for ignored_dir in ["/proc", "/sys"]: MalwareIgnorePath = migrator.orm["malware_ignore_path"] MalwareIgnorePath.get_or_create(path=ignored_dir) def rollback(migrator, database, fake=False, **kwargs): pass
💾 Save Changes
❌ Cancel