vmray: improve models.py comments

This commit is contained in:
Mike Hunhoff
2024-07-23 09:52:36 -06:00
parent cbdc7446aa
commit 31e53fab20

View File

@@ -106,7 +106,7 @@ class Params(BaseModel):
def validate_call_name(value: str) -> str:
if value.startswith("sys_"):
# VMRay appears to log kernel function calls ("sys_*") so we remove that
# VMRay appears to log kernel function calls ("sys_*") for Linux so we remove that
# here to enable capa matching
return value[4:]
else: