Skip to content

Commit

Permalink
disable yara_x due to performance
Browse files Browse the repository at this point in the history
  • Loading branch information
doomedraven committed Nov 7, 2024
1 parent 81d9555 commit fa1f925
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/cuckoo/common/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,15 @@
print("Missed library. Run: poetry install")
HAVE_YARA = False

HAVE_YARA_X = False
"""
try:
import yara_x
HAVE_YARA_X = True
except ImportError:
# print("Missed library. Run: poetry install pip3 install yara-x")
HAVE_YARA_X = False
"""

log = logging.getLogger(__name__)

Expand Down

0 comments on commit fa1f925

Please sign in to comment.