From: Jann Horn Date: Thu, 27 Mar 2014 18:45:28 +0000 (+0100) Subject: add spamnet (for spamming a network server with garbage) X-Git-Url: http://git.thejh.net/?p=tools.git;a=commitdiff_plain;h=86973028b439986f4b2a7722c92e44c643ff5869;ds=inline add spamnet (for spamming a network server with garbage) --- diff --git a/tools/spamnet.c b/tools/spamnet.c new file mode 100644 index 0000000..29de7e5 --- /dev/null +++ b/tools/spamnet.c @@ -0,0 +1,27 @@ +#include +#include + +int main(int argc, char **argv) { + if (argc != 4) xperror("invocation: ", 0); + int s = netopen(argv[1], argv[2], JH_TCP_HINTS); + if (s < 0) { + fprintf(stderr, "unable to connect: %s\n", gai_strerror(s)); + exit(1); + } + char *buf = argv[3]; + ssize_t len = strlen(buf); + ssize_t total = 0; + while (1) { + ssize_t wcount = fail_on_neg(write(s, buf, len), "write failed", 1); + if (wcount == 0) { + fprintf(stderr, "zero write! ending.\n"); + return 1; + } + if (wcount != len) { + fprintf(stderr, "wrong write size! ending.\n"); + return 1; + } + total += wcount; + fprintf(stderr, "%zd\n", total); + } +}