Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
Added possible trackers list
Browse files Browse the repository at this point in the history
  • Loading branch information
RaithSphere committed Nov 14, 2020
1 parent c5ba2fd commit 49e72e3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion HRM.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,11 +418,16 @@ async def searchbt():

""" Ignore HTC or Unknown Devices """
Devicelist = ["HTC", "Unknown", "Apple", "Google"]
KnownDevices = ["808S", "Polar", "XOSS"]

for d in devices:
dx = str(d)
if not any(x in dx for x in Devicelist):
log.info(dx)

if any(x in dx for x in KnownDevices):
log.info("\033[92mPossible Tracker: %s \033[0m", dx)
else:
log.info(dx)


def http(webport):
Expand Down

0 comments on commit 49e72e3

Please sign in to comment.