Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tavern/tomes/arp_scan/main.eldritch
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
def arp_scan():
ip_res = sys.get_ip()
# Get the first IP on each interface ignoring any `127.0.0.` ips
all_ips = [ iface['ips'][0] for iface in ip_res if len(iface['ips']) > 0 and '127.0.0.' not in " ".join(iface['ips']) ]
print(f"Scanning the following networks:\n{all_ips}\n")
res = pivot.arp_scan(all_ips)
print(res)

arp_scan()
5 changes: 5 additions & 0 deletions tavern/tomes/arp_scan/metadata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: ARP Scan
description: ARP Scan all networks that the host has access to
author: hulto
support_model: FIRST_PARTY
tactic: RECON