Skip to content
Open
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: 8 additions & 1 deletion BackdoorMan
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down