Adversarial C2 Protocol Implemented in Zig
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Skip empty stdin

+4
+4
src/main.zig
··· 107 107 var stdin = &limited.interface; 108 108 109 109 while (stdin.fillMore()) { 110 + // Sometimes fillMore will return 0 bytes. 111 + // Skip these 112 + if (stdin.seek == stdin.end) continue; 113 + 110 114 chunk_writer.end = 0; 111 115 try chunk_writer.print("{b64}", .{stdin.buffered()}); 112 116 try client.sendRelay(init.io, chunk_writer.buffered(), parseDest(flags.dest));