Important alert: (current site time 7/15/2013 9:27:17 PM EDT)
 

VB icon

Adult Check Checker

Email
Submitted on: 8/22/2002 1:00:06 PM
By: iron saTan  
Level: Beginner
User Rating: By 8 Users
Compatibility: 5.0 (all versions), Active Perl specific, 4.0 (all versions), 3.0 (all versions), Pre 3.0
Views: 12439
 
     Ever been to a board and seen lots of adult check passes, want to report them but don't want to waste there time with ones they already have down as stolen. Well here this is for you :).
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.
				
=**************************************
= Name: Adult Check Checker
= Description:Ever been to a board and seen lots of adult check passes, want to report them but don't want to waste there time with ones they already have down as stolen. Well here this is for you :).
= By: iron saTan
=
=This code is copyrighted and has= limited warranties.Please see http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=360&lngWId=6=for details.=**************************************

#!usr\bin\perl
####################################
## AdultCheck Catcher ##
## Copyright iron saTan (C)##
## ironsatan@satanshideaway.com##
####################################
use IO::Socket;
print "Scanning for Adult Check Checker!\n";
print "By iron saTan(ironsatan@satanshideaway.com\n\n\n";
open (id,"c:/adultchecks.txt") or die "Can't open quote file";
@ids=<id>;
chomp(@ids);
close id; 
foreach $id (@ids){
if ($look = IO::Socket::INET->new(PeerAddr => 'id.adultcheck.com', PeerPort => '80', Proto => "tcp")) {
print $look "GET /cgi-bin/idsearch.cgi?page=649943&id=$id HTTP/1.0\n\n";
}
while ($ex_data = <$look>) {
chop($ex_data);
$bitch .= $ex_data;
}
$a = "http://www4.adultcheck.com/cgi-bin/invalid.shtml";
$b = "http://www4.adultcheck.com/cgi-bin/stolen.shtml";
$c = "http://www4.adultcheck.com/cgi-bin/expired.shtml";
open (FOUND,">>c:/double.txt") or die "Can't open log file";
# Sees if id is valid or invaild or stolen or expired
if ($bitch =~ /\Q$a\E/i) {
print "\n$id Not found";
}
else
{
if ($bitch =~ /\Q$b\E/i){
print "\n$id has been stolen";
}
else
{
if ($bitch =~ /\Q$c\E/i){
print "\n$id has expired";
}
else
{
print "\n$id is still ok!";
print FOUND "\n$id";
}
}
}
$bitch = "";
}
print "\nEnd of check!";


Other 1 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

8/22/2002 1:08:24 PMRobert Wolfe

your a genius, and i now am a happy man =D
(If this comment was disrespectful, please report it.)

 
8/25/2002 9:14:02 PMSean

Ok...sure...to report them..got it. Glad to see someone so concerned about protecting adult sites from illegal accesses. Seems PSC is become a script kiddies site..too bad.
(If this comment was disrespectful, please report it.)

 
8/25/2002 10:25:05 PMRobert Wolfe

Sean, once again you are commenting on other peoples code whcih you are not finding useful. This code is actually very helpful for people wishing to learn, if your not goign to use it, then dont even worry about it. I havent seen our codes on bugtraq or packetstorm, so were not script kids.. =p
(If this comment was disrespectful, please report it.)

 
8/26/2002 11:01:42 AMiron saTan

Umm script kiddie is someone who uses other peoples tools to gain there end. I use my own tools which I coded hence I am not a script kiddie.

Please learn phrases before you use them
(If this comment was disrespectful, please report it.)

 
8/26/2002 2:26:30 PMRobert Wolfe

Sean has just proved to know absolutly nothing.
(If this comment was disrespectful, please report it.)

 
2/8/2003 2:49:50 AMWolfie.

hmms sorry to say adult check is on to this form of scanning, very sorry to say :( it su.cks lol anyways jus thought id tell ya and psc wont even let me say su.cks
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.