Skip to content

Commit

Permalink
Update frida_core.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinabraham authored Dec 4, 2023
1 parent 2a4136c commit e2cec08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobsf/DynamicAnalyzer/views/android/frida_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def frida_response(self, message, data):
msg = str(msg)
if msg.startswith(api_mon):
self.write_log(self.api_mon, msg.replace(api_mon, ''))
elif clip in msg:
elif msg.startswith(clip):
msg = msg.replace(clip, '')
self.write_log(self.clipboard, f'{msg}\n')
elif msg.startswith(deps):
Expand Down

0 comments on commit e2cec08

Please sign in to comment.