Spray icon indicating copy to clipboard operation
Spray copied to clipboard

Broken on Kali Linux

Open jnelsonbb opened this issue 3 years ago • 1 comments

The RPC Client version present on Kali Linux changed the error message used in the text log processing from STDOUT to STDERR.

Found that adding (2&>1 Edit: this was wrong use 2>&1) after the file redirect would send the STDERR to STDOUT and properly log in the file like before.

Only tested in SMB mode on Kali Linux, but similar fixes might be applied to other areas where STDOUT is relied on.

jnelsonbb avatar Dec 19 '22 17:12 jnelsonbb

See edit above in line. I made an error when creating the original issue. The proper redirect was 2>&1 and it should be placed at the end of each line where rpcclient was run.

jnelsonbb avatar Feb 06 '23 19:02 jnelsonbb