Skip to content

Commit

Permalink
Added API call details when signature matches
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmolka committed Nov 2, 2015
1 parent 3f19894 commit a625e90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/signatures/andromeda_apis.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def on_call(self, call, process):
try:
eventname_int = int(eventname)
if self.sysvolserial and eventname_int == self.sysvolserial ^ 0x696e6a63: # 'injc'
self.add_match(process, 'api', call)
return True
except:
pass
1 change: 1 addition & 0 deletions modules/signatures/antiav_avast_libs.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@ class AvastDetectLibs(Signature):
def on_call(self, call, process):
dllname = self.get_argument(call, "FileName")
if "snxhk" in dllname.lower():
self.add_match(process, 'api', call)
return True
1 change: 1 addition & 0 deletions modules/signatures/antiav_bitdefender_libs.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@ class BitdefenderDetectLibs(Signature):
def on_call(self, call, process):
dllname = self.get_argument(call, "FileName")
if "avcuf32" in dllname.lower():
self.add_match(process, 'api', call)
return True

0 comments on commit a625e90

Please sign in to comment.