From 1ce67710d0eba2436cbb32bb8d0e489e0d9bde07 Mon Sep 17 00:00:00 2001 From: gdesmar <75089569+gdesmar@users.noreply.github.com> Date: Mon, 7 Oct 2024 20:00:25 +0000 Subject: [PATCH] Removing cat and ver as native tool of interest to reduce FP --- urlcreator/urlcreator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urlcreator/urlcreator.py b/urlcreator/urlcreator.py index 27c2d4b..6c4c75f 100644 --- a/urlcreator/urlcreator.py +++ b/urlcreator/urlcreator.py @@ -22,8 +22,8 @@ HIGH_PORT_MINIMUM = 1024 # Common tools native to the platform that can be used for recon -WINDOWS_TOOLS = ["dir", "hostname", "ipconfig", "netsh", "pwd", "route", "schtasks", "ver", "whoami"] -LINUX_TOOLS = ["cat", "crontab", "hostname", "iptables", "pwd", "route", "uname", "whoami"] +WINDOWS_TOOLS = ["dir", "hostname", "ipconfig", "netsh", "pwd", "route", "schtasks", "whoami"] +LINUX_TOOLS = ["crontab", "hostname", "iptables", "pwd", "route", "uname", "whoami"] # Tools used for recon, sourced from https://github.com/ail-project/ail-framework/blob/master/bin/modules/Tools.py # fmt: off