From 0446de8dc6ec1678dd64dd1fb45e5f4eb14acd06 Mon Sep 17 00:00:00 2001 From: fortishield <161459699+FortiShield@users.noreply.github.com> Date: Mon, 10 Feb 2025 16:25:10 +0600 Subject: [PATCH] Update cybersf/information_gathering/rang3r.py Co-authored-by: qodo-merge-pro[bot] <151058649+qodo-merge-pro[bot]@users.noreply.github.com> Signed-off-by: fortishield <161459699+FortiShield@users.noreply.github.com> --- cybersf/information_gathering/rang3r.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cybersf/information_gathering/rang3r.py b/cybersf/information_gathering/rang3r.py index 643def1..ccf75c6 100644 --- a/cybersf/information_gathering/rang3r.py +++ b/cybersf/information_gathering/rang3r.py @@ -14,7 +14,8 @@ def __init__(self): def run(self): os.chdir(self.full_path) set_readline([]) + from shlex import quote user_domain = input('\nEnter a domain to enumerate for rang3r: ').strip() - return os.system('python3 rang3r.py -v -d ' + user_domain) + return os.system('python3 rang3r.py -v -d ' + quote(user_domain)) rang3r = rang3rRepo()