Skip to content

Commit

Permalink
Merge pull request #1523 from p-l-/enh-tag-binaryedge
Browse files Browse the repository at this point in the history
Scanners: tag BinaryEdge scanners (based on hostname)
  • Loading branch information
p-l- committed May 28, 2023
2 parents 311f74c + 93bddda commit df52076
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ivre/tags/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,3 +255,11 @@ def gen_hostname_tags(hostname: str) -> Generator[Tag, None, None]:
info=[f"Hostname {hostname} suggests a Shodan scanner"],
),
)
elif hostname.endswith(".binaryedge.ninja"):
yield cast(
Tag,
dict(
TAG_SCANNER,
info=[f"Hostname {hostname} suggests a BinaryEdge scanner"],
),
)

0 comments on commit df52076

Please sign in to comment.