Adversarial C2 Protocol Implemented in Zig
0
fork

Configure Feed

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

Add real RawSocket deinit

+2 -1
+2 -1
src/main.zig
··· 355 355 } 356 356 357 357 fn deinit(self: *RawSocket) void { 358 - _ = self; 358 + _ = std.os.linux.close(self.fd); 359 + self.* = undefined; 359 360 } 360 361 361 362 fn send(self: RawSocket, payload: []const u8) !void {