Update balsamic.py

main
witchdocsec 2024-05-18 03:34:17 +01:00 committed by GitHub
parent 97a83322b6
commit 8e5649b195
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def socksend(rhost,rport,payload, steps=0):
while i < steps:
s.sendall("arb".encode("utf-8"))
s.sendall(utility.b64pickle(payload))
s.recv(1024)
def socklisten(lport,payload, steps=0):
lport=int(lport)
steps=int(steps)
@ -60,4 +60,5 @@ def socklisten(lport,payload, steps=0):
conn.sendall("arb".encode("utf-8"))
i+=1
conn.sendall(utility.b64pickle(payload))
conn.recv(1024)