diff --git a/BackdoorMan b/BackdoorMan index 5a32893..d3eb9b4 100755 --- a/BackdoorMan +++ b/BackdoorMan @@ -428,7 +428,14 @@ class Servicer: # | 5.free services of nimbusec. | # +=========================================+ try: - r = requests.post('https://shellray.com/upload', files={'file':self.file}) + while 1: + try: + r = requests.post('https://shellray.com/upload', files={'file':self.file}) + if r.status_code is 200: + break + except: + pass + sleep(0.5) data = r.json() if not data['infected']: return False