Skip to content

Commit

Permalink
Bugfix: Do not run PESieve on Windows XP systems
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Roth committed Mar 17, 2018
1 parent 6257a41 commit 58bef5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion loki.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ def __init__(self, intense_mode):
self.app_path = get_application_path()

# PESieve
self.peSieve = PESieve(self.app_path, is64bit(), logger)
if "xp" not in getPlatformFull().lower():
self.peSieve = PESieve(self.app_path, is64bit(), logger)

# Check if signature database is present
sig_dir = os.path.join(self.app_path, "./signature-base/")
Expand Down

0 comments on commit 58bef5c

Please sign in to comment.