Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-4041-

younger bro stealin my porn...

Name: Anonymous 2005-01-01 11:38

i'm just wondering what everyone think the right approach shuold be... do i confront him and then smack him aruond a bit for stealing? should i ignore it and go on my merry way (i mean he's my little bro not my kid. i'm not entitled to bring him up properly). or should i do the share and share alike option?

Name: Anonymous 2005-01-01 13:17

What are your ages?

Name: Anonymous 2005-01-01 13:41

i bet 8 and 12

Name: Anonymous 2005-01-01 14:33

Hide gay porn in it. Print out goatse.

Name: Anonymous 2005-01-01 14:40

take nude pics of him.

Name: Anonymous 2005-01-01 20:30

Walk in on him and whack him over the head with the magazine while saying "No! Bad!"

Name: Anonymous 2005-01-03 19:37

>>6 and then tie him on a leash in the front yard for what he has done

Name: Anonymous 2005-01-03 19:41

And spank him

Name: Anonymous 2005-01-09 18:49

jerk him off

Name: Anonymous 2005-01-09 19:27 (sage)

Replace all your porn with underage gay incest stuff. That'll teach him.

Name: Anonymous 2005-01-10 14:44

So, what happened?

Name: Anonymous 2005-01-11 21:30

>>11
He gave him a blowjob
 ,^^^,
 |> <|
  \0/  <====8

Name: Anonymous 2005-01-19 1:38

Lace all of the pages with Acid, and leave your porno stash hanging around your bed in the morning. That'll teach the little freeloader.

Name: Anonymous 2005-01-23 23:12

>>13

I don't know. That sounds kind of cool.

Name: Anonymous 2005-01-24 0:43

NIGGA STOLE MY PORN

Name: Anonymous 2005-01-25 8:12

Name: Anonymous 2006-07-03 21:51

stick it in his pooper

Name: Anonymous 2009-08-22 12:54

>18
Nice job bumping a five year old thread.

Name: The Amazing Anus !tly/rANUS. 2009-08-22 13:01

/* spam.c - Spam a thread on the BBS boards.
 *
 * USAGE: spam <times> <wait> <folder>
 *
 *
 * <wait> is the period in milliseconds between posts.
 *
 * In order to spam a thread, you need a folder containing
 * a HEADER.TXT and a MSG.TXT.
 *
 * The HEADER.TXT contains all HTTP info to be sent to the server.
 * The MSG.TXT contains the content string -- ie. your name, email, and your
 * post.  It also contains the ID of the thread you wish to spam, and which
 * board it can be found in.
 *
 * * EXAMPLE *
 *
 * > spam 50 6000 progsage
 *
 * If you have the files progsage\header.txt and progsage\msg.txt, the program
 * will spam a thread (specified in MSG.TXT) with 50 posts, waiting 6 seconds
 * (6000 milliseconds) between each post.
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#include <winsock.h>

const int port = 80;

unsigned long int times, count=0, rest=0;

char threadid[11];

FILE* fp;
FILE* fpmsg;
FILE* logfp;

SOCKET sock;
SOCKADDR_IN addr;
struct hostent* host;

char http_clength[64];

char content[8192];

char buffer[1024];
char rbuffer[2048];

char folder[256];
char f_header[256];
char f_msg[256];



int main(int argc, char* argv[])
{
     /*** Winsock startup variable */
     WSADATA wsaData;
     int loop, i;


     if (argc != 4)
     {
          printf("usage: spam <times> <interval> <folder>\n");
          printf("       folder must contain a header.txt and a msg.txt\n");
          return 0;
     }

     /* <times> to spam the thread */
     times = atoi(argv[1]);

     /* <interval> in milliseconds between posts */
     rest = atoi(argv[2]);

     /* folder to find header.txt and msg.txt inside */
     if (strlen(argv[3]) <= 244)
          strcpy(folder, argv[3]);
     else {
          printf("folder too long.\n");
          return 0;
     }


     if (WSAStartup(MAKEWORD(2,0), &wsaData))
     {
          printf("Failed to start WinSock.\n");
          return 0;
     }


     strcat(f_header, folder);
     strcat(f_header, "\\header.txt");
     printf("HEADER: %s\n", f_header);

     strcat(f_msg, folder);
     strcat(f_msg, "\\msg.txt");
     printf("MSG: %s\n", f_msg);

     while (count++ < times)
     {
          /* Create our socket */
          sock = socket(AF_INET, SOCK_STREAM, 0);

          host = gethostbyname("dis.4chan.org");

          memset(&addr, 0, sizeof(addr));
          addr.sin_family = AF_INET;
          addr.sin_addr.s_addr = ((struct in_addr*)(host->h_addr))->s_addr;
          addr.sin_port = htons(port);

          if (connect(sock, (SOCKADDR*) &addr, sizeof(addr)))
          {
               printf("Unable to connect to host. %u\n", WSAGetLastError());
               return 0;
          }

          printf("Connected successfully.\n");

          printf("Sending header.\n");

          fp = fopen(f_header, "r");

          loop = 0;
          while (!feof(fp))
          {
               ++loop;
               fgets(buffer, 1024, fp);
               i = strlen(buffer);
               buffer[i-1] = 0x0D;
               buffer[i] = 0x0A;
               buffer[i+1] = 0;
               printf("%s", buffer);
               send(sock, buffer, strlen(buffer), 0);
          }


          /* GetContent(); */
          fpmsg = fopen(f_msg, "r");
          fgets(content, 8191, fpmsg);
          fclose(fpmsg);

          /*** Create content-length ***/
          sprintf(http_clength, "Content-Length: %u", strlen(content));
          printf("%s\n", http_clength);
          send(sock, http_clength, strlen(http_clength), 0);

          sprintf(buffer, "\x0D\x0A\x0D\x0A");
          send(sock, buffer, 4, 0);


          printf("%s\n", content);
          send(sock, content, strlen(content), 0);

          sprintf(buffer, "\x0D\x0A");
          send(sock, buffer, 2, 0);

          recv(sock, rbuffer, 2048, 0);
          printf("\n%s\n", rbuffer);

          closesocket(sock);
          fclose(fp);

          printf("\nFinished! %d/%d\n", count, times);

          if (count < times) 
               Sleep(rest);

     }


     printf("*** COMPLETE ***\n\n");

     WSACleanup();
}


-
Here is the HEADER.TXT

POST /post HTTP/1.1
Host: dis.4chan.org
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20 (.NET CLR 3.5.30729)
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Referer: http://dis.4chan.org/prog/
Cookie: nws_style=Yotsuba; __utma=228619097.3169207663460969500.1242172576.1249734563.1249740607.280; ws_style=Yotsuba B; 4chan_pass=bZitTCnk; __utmz=228619097.1249693429.274.7.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=%22A%20fatal%20error%20occured%21%22%20%22Please%20don%27t%20click%20on%20that%20link%20again%21%22; __qca=1242172584-47686337-4694767; 4chan_email=noko; __qcb=557482846; __utmb=228619097.219.10.1249740607; __utmc=22861909
Content-Type: application/x-www-form-urlencoded


It may be good to have a new line at the end of the file there, I'm not sure if it's needed though.

Here is an example MSG.TXT:

bbs=lounge&id=1239439150& lol what 2&kotehan=&meiru=sage&com=1000+posts&email=

Place that line in MSG.TXT... Note that The &id= field in that line needs to be set to the ID of the thread you want to spam.  You may also adjust the bbs=board field.

Name: !MILKRIBS4k 2009-08-22 13:41

>>15
* African American

Name: pork soda 2009-08-22 13:42

How can you steal porn? Did he do CTRL-X instead of CTRL-C or something?

Name: Anonymous 2009-08-22 14:11

>>21
Magazines?

Name: Anonymous 2009-08-22 14:48

>>19
What language is this?

Name: !MILKRIBS4k 2009-08-22 14:54

>>23
Did you not notice the .c!

Name: Anusymous 2009-08-22 14:59

>>24
You're an anus!

Name: !MILKRIBS4k 2009-08-22 15:08

>>25
No, maybe you are!

Name: Anusymous 2009-08-22 15:09

>>26
You're an anus!

Name: Anonymous 2009-08-22 15:36

>>19
Oh just noticed this line
bbs=lounge&id=1239439150& lol what 2&kotehan=&meiru=sage&com=1000+posts&email=
The " lol what " is actually a wordfilter of

s h i i c h a n =

without any of those spaces.

fix it and it will compile.

Name: Anonymous 2009-08-22 15:48

>>28
wait no, it would be

s h i i c h a n = p r o p e r

and keep the 2 before the ampersand.

Name: Anonymous 2009-08-22 16:14

>>28
It'll still compile without that.(っ‿っ)

Name: Anonymous 2009-08-22 16:33

>>30
It will compile, but 4chan needs to have s h i i c h a n defined as proper2 in the content of the form when you send a POST message.

Actually I've never tried posting a message without that field, but I'm sure it wouldn't be there if it wasn't necessary.

Name: !MILKRIBS4k 2009-08-22 16:35

>>31
It doesn't work without the field! You are right!

Name: Anonymous 2009-08-22 16:35

>>30
and that doesn't get compiled in the executable anyways.  It's stored in MSG.TXT.[1]

References
1. http://rapidshare.com/files/270303188/spam-1.0.zip.html - Now available as freeware for all your saging needs.

Name: Anonymous 2009-08-22 16:36

>>33
404

Name: Anonymous 2009-08-22 16:40

>>34
Never mind, got it to work *grabs dick*

Name: Anonymous 2010-11-09 13:20

penis

Name: Anonymous 2010-11-09 13:25

>>36
What's with the bumping of five your old threads, Fievel?

Name: Family Values Man 2010-11-09 14:42

The spread of pornography in our culture is a threat to the stability of families and frequently results in family break down, child molestations, and spousal abuse. We oppose this threat because it destroys families and it destroys the person who has become addicted to it. Pornography is a progressive addiction that ruins the conscience of the person. Frequently, this person acts out his sexual fantasies by molesting children, raping girls, and committing other sexual crimes—including murder.

Name: Anonymous 2010-11-09 15:24

>>38
Pornography dispels the myths about women and shows us the naked truth: They're animals, who not only DESERVE to be raped, but also secretly LOVES it.

Name: Anonymous 2010-11-09 15:25

>>38
Porn isn't a chemical.  You don't get addicted to an image.  Indeed, you get bored of it after a while and don't bother jacking off at all for days unless you find something you didn't see before.  Try that system with heroin.

Name: t 2010-12-28 20:30

Name: Anonymous 2011-05-04 14:26

5093280958320958309258|

Name: Anonymous 2012-08-21 0:52

how i reply

Name: Anonymous 2012-08-21 1:48

>>43
Way to bump a five year old thread, dude.

Name: Anonymous 2012-08-21 2:15

>>44
Yeah, it could hide your spamming, cretin.

Name: Anonymous 2012-08-21 2:39

>>43
Holy shit dude you're going full fuckin' archaeology on this board.

Name: Anonymous 2012-08-21 7:07

>>44
>five year old thread
>five
learn to count

Name: Anonymous 2012-08-21 7:56

>>43

Magick

Name: !L33tUKZj5I 2012-08-21 11:21

>>47
You must be new here. Welcome.

Name: Anonymous 2012-08-21 11:39

MALAYSIA : We have a government that loves to cheat the people's money, rape the natural resources of the country and sell it cheaply to foreigners (and take huge bribe in return) and chase the intelligent, innovative and skillful people out of the country and continue to import dumb, criminals and low cost workers so that they can continue to plunder the countries resources.

Any attempt to question their plundering of resources is met with calls of tak suka, keluar, being called unpatriotic, being called racist and being labelled a threat to national security.

When all else fails, they turn this into a religion and race matter inciting hate among the citizens, so that their eyes are focused on hating one another while they continue to plunder...

That is our gov.

Name: Anonymous 2012-08-21 14:02

>>50
And if you have 0.1g of marijuana in your possession, you are to be put to death.

Name: Anonymous 2012-08-22 3:29

>>49
Thanks, this is very nice of you.

Don't change these.
Name: Email:
Entire Thread Thread List