晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /opt/imunify360/venv/lib64/python3.11/site-packages/imav/malwarelib/cleanup/ |
Upload File : |
"""
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License,
or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Copyright © 2019 Cloud Linux Software Inc.
This software is also available under ImunifyAV commercial license,
see <https://www.imunify360.com/legal/eula>
"""
import asyncio
import json
import logging
import os
import subprocess
import tempfile
import time
from collections import defaultdict
from contextlib import suppress
from itertools import islice
from typing import Callable, Dict, List, Optional, Set, Tuple, Union
from defence360agent.contracts.config import (
MalwareSignatures,
MyImunifyConfig,
)
from defence360agent.contracts.messages import MessageType
from defence360agent.contracts.permissions import (
ms_clean_requires_myimunify_protection,
)
from defence360agent.utils import (
RecurringCheckStop,
Singleton,
base64_encode_filename,
recurring_check,
)
from imav.contracts.config import MalwareTune
from imav.malwarelib.model import MalwareHit
from imav.malwarelib.utils.revisium import (
RevisiumCSVFile,
RevisiumJsonFile,
RevisiumTempFile,
)
logger = logging.getLogger(__name__)
def cleaner_result_instance(tempdir=None, mode=None):
if MalwareTune.USE_JSON_REPORT:
return RevisiumJsonFile(tempdir, mode)
return RevisiumCSVFile(tempdir, mode)
class MalwareCleanerLog(RevisiumTempFile):
pass
class MalwareCleanerProgress(RevisiumJsonFile):
"""
Get progress from external source
"""
_progress = 0
@recurring_check(2)
async def watch(self, callback):
try:
data = self.read()
except FileNotFoundError:
raise RecurringCheckStop()
except json.JSONDecodeError:
return
progress = data["current"]
increment, self._progress = progress - self._progress, progress
callback(increment)
class MalwareCleanupFileList(RevisiumTempFile):
def write(self, filelist):
with self._path.open("wb") as w:
w.writelines(base64_encode_filename(f) + b"\n" for f in filelist)
def _parse_int(value: Union[str, int]) -> int:
"""Convert str|int to int, in case errors return -2
-1 used as default value when storing CH
"""
try:
return int(value)
except ValueError:
return -2
class CleanupResultEntry(dict):
def __init__(self, data: Dict[str, Union[str, int]]):
# fields:
# d - cleanup result
# e - error description
# s - signature that was triggered for the file during scan
# f - file path (it's unexpected that f is absent)
# r - the result of aibolit rescan after cleanup
#
# We shouldn't fail on parsing one record (to do not stop processing
# report), so we consider default values for all fields.
super().__init__(
d=_parse_int(data.get("d", -1)),
e=_parse_int(data.get("e", -1)),
s=data["s"],
f=data["f"],
r=_parse_int(data.get("r", -1)),
)
def is_cleaned(self):
if self.is_failed() or self.requires_myimunify_protection():
return False
if self["e"] == 4:
logger.warning(
"File has changed, assuming that it was cleaned: %s", self["f"]
)
return True
return self["e"] == 0 and self["d"] == 0
def is_removed(self):
return not self.is_failed() and self["e"] == 0 and self["d"] > 0
def is_failed(self):
return self["r"] == 1
def requires_myimunify_protection(self):
return self["r"] == 2
def not_exist(self):
return not self.is_failed() and self["e"] == 5
class CleanupResult(Dict[str, CleanupResultEntry]):
"""
Cleanup result container for result entries
"""
def __init__(self, report=None):
if report:
super().__init__({e["f"]: CleanupResultEntry(e) for e in report})
@staticmethod
def __key(hit: Union[str, MalwareHit]) -> str:
return getattr(hit, "orig_file", hit)
def __contains__(self, hit: Union[str, MalwareHit]):
return super().__contains__(self.__key(hit))
def __getitem__(self, hit: Union[str, MalwareHit]):
return super().__getitem__(self.__key(hit))
class MalwareCleaner:
PROCU_PATH = "/opt/ai-bolit/procu2.php"
PROCU_DB = MalwareSignatures.PROCU_DB
def __init__(self, loop=None, sink=None):
self._loop = loop if loop else asyncio.get_event_loop()
self._proxy = MalwareCleanupProxy()
self._sink = sink
def _cmd(
self,
filename,
progress_path,
result_path,
log_path,
soft,
*,
username,
blacklist=None,
use_csv=True,
standard_only=True,
):
cmd = [
"/opt/ai-bolit/wrapper",
self.PROCU_PATH,
"--deobfuscate",
"--nobackup",
"--forcibly_cleanup",
"--rescan",
"--list=%s" % filename,
"--input-fn-b64-encoded",
"--username=%s" % username,
]
if blacklist:
cmd.append("--black-list=%s" % blacklist)
cmd.extend(
[
"--log=%s" % log_path,
"--progress=%s" % progress_path,
]
)
if use_csv:
cmd.extend(["--csv_result=%s" % result_path])
else:
cmd.extend(["--result=%s" % result_path])
if standard_only:
cmd.extend(["--standard-only"])
if os.path.exists(self.PROCU_DB):
cmd.append("--avdb")
cmd.append(self.PROCU_DB)
if soft:
cmd.append("--soft")
return cmd
@staticmethod
def _get_cleaner_error_info(
exc: Exception,
cmd: List[str],
returncode: int,
stdout: Optional[bytes],
stderr: Optional[bytes],
):
return dict(
exception=exc.__class__.__name__,
return_code=returncode,
command=cmd,
out=stdout.decode(errors="replace") if stdout is not None else "",
err=stderr.decode(errors="replace") if stderr is not None else "",
)
async def _send_cleanup_failed_message(self, info: dict):
if self._sink:
try:
msg = MessageType.CleanupFailed(
{**info, **{"timestamp": int(time.time())}}
)
await self._sink.process_message(msg)
except asyncio.CancelledError:
raise
except Exception:
logger.exception(
"Exception while sending CleanupFailed message"
)
async def start(
self,
user,
filelist,
soft=True,
blacklist=None,
standard_only=None,
) -> Tuple[CleanupResult, Optional[str], List[str]]:
tempdir = tempfile.gettempdir()
result_file = cleaner_result_instance(tempdir=tempdir)
use_csv = isinstance(result_file, RevisiumCSVFile)
standard_only = self.is_standard_only(user, standard_only)
with MalwareCleanupFileList(
tempdir=tempdir, mode=0o644
) as flist, MalwareCleanupFileList(
tempdir=tempdir, mode=0o644
) as blk, MalwareCleanerProgress(
tempdir=tempdir
) as progress, result_file as result, MalwareCleanerLog(
tempdir=tempdir
) as log:
flist.write(filelist)
if blacklist:
blk.write(blacklist)
self._loop.create_task(progress.watch(self._proxy.progress_cb))
if blacklist:
cmd = self._cmd(
flist.filename,
progress.filename,
result.filename,
log.filename,
soft,
username=user,
blacklist=blk.filename,
use_csv=use_csv,
standard_only=standard_only,
)
else:
cmd = self._cmd(
flist.filename,
progress.filename,
result.filename,
log.filename,
soft,
username=user,
use_csv=use_csv,
standard_only=standard_only,
)
logger.debug("Executing %s", " ".join(cmd))
out, err = b"", b""
proc = None
try:
proc = await asyncio.subprocess.create_subprocess_exec(
*cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
out, err = await proc.communicate()
report = result.read()
except asyncio.CancelledError:
if proc:
with suppress(ProcessLookupError):
proc.terminate()
raise
except Exception as exc:
info = self._get_cleaner_error_info(
exc,
cmd,
proc.returncode if proc else 126, # 126 - permission error
stdout=out,
stderr=err,
)
# Group errors by exit code on Sentry
logger.error(
f"Cleanup failed exit_code={info.get('return_code')}: %s",
f"{info.get('out')} {info.get('err')}",
extra={**info, "exception": exc},
)
await self._send_cleanup_failed_message(
{**info, **dict(message=str(exc))}
)
return CleanupResult(), repr(exc), cmd
return CleanupResult(report), None, cmd
@staticmethod
def is_standard_only(user: str, standard_only: bool) -> bool:
"""Check if only standard signatures should be applied for the user"""
# FIXME: DEF-20763 Remove this line to enable standard signatures
return False
if not MyImunifyConfig.ENABLED:
# Ignore standard_only value if MyImunify is disabled
return False
elif standard_only is None:
# When cleaned by default action
return not ms_clean_requires_myimunify_protection(user)
return standard_only
class MalwareCleanupProxy(metaclass=Singleton):
_CHUNK_SIZE = 10000
"""
Class to interconnect Cleanup status endpoint and Cleanup plugin
"""
def __init__(self):
self.current = self.total = 0
self.hits = defaultdict(set)
def add(self, cause, initiator, post_action, scan_id, standard_only, hits):
self.hits[
(cause, initiator, post_action, scan_id, standard_only)
].update(hits)
def flush(self) -> Tuple[str, str, Callable, str, Set]:
while self.hits:
scan_info, hits = self.hits.popitem()
all_hits = iter(hits)
hits = set(islice(all_hits, self._CHUNK_SIZE))
remaining_hit = next(all_hits, None)
if remaining_hit is not None:
self.hits[scan_info].add(remaining_hit)
self.hits[scan_info].update(all_hits)
self.total += len(hits)
yield *scan_info, hits
def progress_cb(self, increment=1):
self.current += increment
def reset(self):
self.current = self.total = 0
def get_progress(self):
try:
return int(self.current / (self.total + len(self.hits)) * 100)
except ZeroDivisionError:
return None