Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezade authored and alirezade committed Dec 27, 2023
1 parent 135130a commit 0f50665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AttackerRemote.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def process_messages(self, msg):
if mode.lower() == 'link':
target_1 = self.find_tag_in_msg(msg, 'target1')
target_2 = self.find_tag_in_msg(msg, 'target2')
target = target_1 + "," + target_2
target = self.find_device_address(target_1) + "," + self.find_device_address(target_2)
self._mitm_scapy_attack(target=target, timeout=timeout)

elif attack == 'replay':
Expand Down

0 comments on commit 0f50665

Please sign in to comment.