diff --git a/.gitignore b/.gitignore index 5d381cc..f295d3d 100644 --- a/.gitignore +++ b/.gitignore @@ -158,5 +158,5 @@ cython_debug/ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ +.idea/ diff --git a/detection/backdoor_detection.py b/detection/backdoor_detection.py index 705def4..6611263 100644 --- a/detection/backdoor_detection.py +++ b/detection/backdoor_detection.py @@ -44,6 +44,9 @@ def find_dangerous_functions( r"\bpopen\(": "medium", r"\beval\(": "high", r"\bsubprocess\.run\(": "medium", + r"\b__getattribute__\(": "high", + r"\bgetattr\(": "medium", + r"\b__import__\(": "high", }, ".js": { r"\beval\(": "high",