#!/usr/bin/perl -T ###################### #¡¡author:glisten # http://www.dsl-speed.org ###################### &get_form_data; &emptyid unless $FORM{'sid'}; $afid=$FORM{'sid'}; &gencode; sub emptyid{ $login_page="http://www.adultworldmedia.com"; # Replace to your affiliate program url print "Content-Type: text/html\n\n"; print <<"~EOT~"; Generator error Please input Your affiliate ID Try again. ~EOT~ exit; } sub gencode{ print "Content-Type: text/html\n\n"; print <<"~EOT~"; CJ Wright XXX
CJwrightxxx.com
CJ Wright and Jesselle Round 2

Over 30 minutes of Hardcore Footage and More than 100 new pictures.

CjJesselle2_002.jpg CjJesselle2_004.jpg
   
CjJesselle2_009.jpg CjJesselle2_034.jpg
       
CjJesselle2_040.jpg CjJesselle2_052.jpg
       
CjJesselle2_054.jpg CjJesselle2_057.jpg
 
CjJesselle2_065.jpg CjJesselle2_068.jpg
   
CjJesselle2_071.jpg
CjJesselle2_075.jpg
   
CjJesselle2_083.jpg CjJesselle2_085.jpg
   
CjJesselle2_086.jpg CjJesselle2_117.jpg

CLICK HERE TO BROWSE CJ WRIGHT

CJ WRIGHT ™

~EOT~ exit; } # Get form data sub get_form_data { read(STDIN,$buffer,$ENV{'CONTENT_LENGTH'}); if ($ENV{'QUERY_STRING'}) { $buffer = "$buffer\&$ENV{'QUERY_STRING'}" } @pairs = split(/&/,$buffer); foreach $pair (@pairs) { ($name,$value) = split(/=/,$pair); $value =~ tr/+/ /; $value =~ s/\t//g; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg; $FORM{$name} = $value } }