Skip to content

Instantly share code, notes, and snippets.

View rodolfocangiotti's full-sized avatar
😔

Rodolfo Cangiotti rodolfocangiotti

😔
View GitHub Profile
@miekg
miekg / udpserv.c
Created May 10, 2017 10:33
udp server in C
/*
* udpserver.c - A simple UDP echo server
* usage: udpserver <port>
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <netdb.h>
@pazdera
pazdera / brute_force_string.c
Created August 3, 2011 17:54
Basic string generation for brute-force attacks
/*
* Basic string generation for brute-force attacks
* Copyright (C) 2011 Radek Pazdera
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,