Skip to content

Commit

Permalink
Merge pull request #227 from abrignoni/In_progress
Browse files Browse the repository at this point in the history
Update airdropNumbers.py
  • Loading branch information
abrignoni authored Apr 18, 2024
2 parents ef88232 + c425908 commit 56743cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/artifacts/airdropNumbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ def get_airdropNumbers(files_found, report_folder, seeker, wrap_text, time_offse
endhashcheck = targettest[-5:]
if (starthashcheck, endhashcheck) in target_hashes:
logfunc(f"Found phone {targetphone} for hash {starthashcheck}....{endhashcheck}")
phone_hash = target_hashes.pop((starthashcheck, endhashcheck))
phone_hash = target_hashes[(starthashcheck, endhashcheck)]
phone_hash[1] = targetphone
data_list.append(phone_hash)
data_list.append(phone_hash.copy())
if not target_hashes:
logfunc("No target hashes left")
break
Expand Down

0 comments on commit 56743cd

Please sign in to comment.