Skip to content

Commit

Permalink
Update antianalysis_tls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kevross33 authored Oct 4, 2024
1 parent b1ccb9e commit f055eb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/signatures/all/antianalysis_tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def run(self):
pe = self.results["target"]["file"].get("pe", [])
if pe:
for section in pe["sections"]:
if section["name"].lower() == ".tls":
self.data.append({"thread local storage": section})
if section["name"].lower().startswith(".tls"):
self.data.append({"section": section})
ret = True

return ret

0 comments on commit f055eb0

Please sign in to comment.