Skip to content

Commit

Permalink
Windows: Fix up minor typo and CodeQL warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ikelos committed Dec 10, 2024
1 parent f00b596 commit b6717d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
)

syscall_finder_type.__doc__ = """
This type to used to specify how malicious system call invocations should be found.
This type is used to specify how malicious system call invocations should be found.
`get_syscall_target_address` is optionally used to extract the address containing the malicious 'syscall' instruction
`wants_syscall_inst` whether or not this method expects the 'syscall' instrunction directly within the malicious code block
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

vollog = logging.getLogger(__name__)

# The generator of DirectSystemCalls will bail with a warning if capstone is not installed
try:
import capstone
except ImportError:
# The generator of DirectSystemCalls will bail with a warning if capstone is not installed
pass


Expand Down

0 comments on commit b6717d8

Please sign in to comment.