From 56296a69824b86c85a5f081fd3db12a02517e8b3 Mon Sep 17 00:00:00 2001 From: Lordrumson <152627673+Lordrumson@users.noreply.github.com> Date: Fri, 1 Dec 2023 09:54:10 -0500 Subject: [PATCH] Update fsociety.py --- fsociety.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fsociety.py b/fsociety.py index 56f6573..bc7ccfb 100644 --- a/fsociety.py +++ b/fsociety.py @@ -1191,9 +1191,9 @@ def grabuploadedlink(url): for dir in directories: currentcode = urllib.urlopen(url + dir).getcode() if currentcode == 200 or currentcode == 403: - print "-------------------------" - print " [ + ] Found Directory: " + str(url + dir) + " [ + ]" - print "-------------------------" + print ("-------------------------") + print (" [ + ] Found Directory: " + str(url + dir) + " [ + ]") + print ("-------------------------") upload.append(url + dir) except: pass @@ -1205,10 +1205,10 @@ def grabshell(url): for shell in shells: currentcode = urllib.urlopen(upl + shell).getcode() if currentcode == 200: - print "-------------------------" - print " [ ! ] Found Shell: " + \ - str(upl + shell) + " [ ! ]" - print "-------------------------" + print ("-------------------------") + print (" [ ! ] Found Shell: " + \ + str(upl + shell) + " [ ! ]") + print ("-------------------------") except: pass