Skip to content

Commit

Permalink
Remove raw data print
Browse files Browse the repository at this point in the history
  • Loading branch information
rkervella committed Jul 10, 2022
1 parent 8350b44 commit 0b9cf0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implant/sliver/handlers/tunnel_handlers/tunnel_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func (tw tunnelWriter) Write(data []byte) (int, error) {
Data: data,
})
// {{if .Config.Debug}}
log.Printf("[tunnelWriter] Write %d bytes (write seq: %d) ack: %d, data: %s", n, tw.tun.WriteSequence(), tw.tun.ReadSequence(), data)
log.Printf("[tunnelWriter] Write %d bytes (write seq: %d) ack: %d", n, tw.tun.WriteSequence(), tw.tun.ReadSequence())
// {{end}}
tw.tun.IncWriteSequence() // Increment write sequence
tw.conn.Send <- &sliverpb.Envelope{
Expand Down

0 comments on commit 0b9cf0f

Please sign in to comment.