Update balsamic.py
parent
97a83322b6
commit
8e5649b195
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue