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

Pages: 1-

Tripcode Finder (PHP)

Name: !A1aRKillA6 2008-06-17 21:12

http://freegamesportal.org/tripfind.php

Is like, I'm bored, so I decided to make a tripcode finder.  It's like for the people who are not nuts like us who still want to get tripcodes.  (Love the .c one)
Use like...
http://freegamesportal.org/tripfind.php?in=trip

oh, and PHP sucks at random, so I used sessions to make it sequential and avoid collisions.  If liked I'll post the source code, and apologies for the time restraint, my server's not too hot on server-intensive scripts.

Name: Anonymous 2008-06-17 21:23

No, Rupi.

Name: HAX !!Ylp7PJziuI8gfjE 2008-06-17 21:35

Name: HAX !zcPi/R.EDg 2008-06-17 21:35

Name: test !ncUNt0/mig 2008-06-17 22:12

working?

Name: Anonymous 2008-06-17 23:08

lol that javascript one is better than this shit

Name: snacks !eBl/4YS0EY 2008-06-17 23:23

Name: Anonymous 2008-06-18 6:53

i was bored, so i decided to make a tripcode finder too:
http://hotaru.thinkindifferent.net/code/trip.cs

and here's an ansi c (instead of iso c99) one that uses crypt() and posix extended regular expressions instead of openssl fcrypt() and pcre (i was extremely bored):
http://hotaru.thinkindifferent.net/code/trip-std.c

Name: Anonymous 2008-06-18 6:55

I WAS BORED SO I HAXED MY ANUS IN A VIRTuAL MACHINE

Name: Chris !!aBJKZuplTV/HGe3 2008-06-18 8:17

hey guise whats my tripcode

Name: Anonymous 2008-06-18 8:20

When is someone going to write a tripcode searcher in LISP or Haskell?

Name: Anonymous 2008-06-18 9:39

lol
FAIL

Name: trippy!mcgee!dmt 2008-06-18 12:27

LOL WHATS MY TRIP CODE?!

Name: Anonymous 2008-06-18 13:01

sauce-code pls

Name: op 2008-06-18 14:59

<?php
session_start();
$session =& $_SESSION['session'];
global $session;

$mintime = 3;
$maxtime = 15;
?>
<html>
<head>
<title>4chan tripcode finder</title>
<body>
<tt><b>4chan tripcode finder</b><br> <br>

<?php
if(!isset($_GET['in'])){

}else{
$str = $_GET['in'];
function hashup($in){
return substr(crypt($in, substr($in,1)),3);
}
//if(strstr("213","1"))

$rm = getrandmax();
$results = 0;



if(!isset($_GET['case']))
$_GET['case'] = "insensitive";

$clist = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
$clen = strlen($clist);

if(!isset($session['prepared'])){//<>"yes"){
$i = 0;
while($i<8){
$session[$i]=rand(0,$clen);
$i+=1;
}
$session['prepared']="yes";
$ttim = 0;
$created=TRUE;
$session['time'] = time();
echo "Your session has been created.<br>Refresh after a few seconds to begin finding tripcodes!";
}else{
echo "Started with: ";
$i = 0;
while($i<8){
echo substr($clist,$session[$i],1);
$i+=1;
}
echo "<br>";
$ttim = min(round((time() - $session['time'])*0.7),$maxtime);
}

if($ttim>=$mintime&&strlen($_GET['in'])>=3&&strlen($_GET['in'])<=5){

echo "Searching...<br>";

if($_GET['case']=="sensitive"){

$start = time();
$total = 0;
while(time()<$start+$ttim){
$total+=1;
$str="";
$i=0;
while($i<8){
$str.=substr($clist,$session[$i],1);
$i+=1;
}
$hstr = hashup($str);
if(strstr($hstr,$_GET['in'])<>FALSE)
echo "$hstr #$str<br>";
$i = 0;
$session[$i]+=1;
while($session[$i]>=$clen){
$session[$i]-=$clen;
$i=($i+1) % 8;
$session[$i]+=1;
}
}
echo "$total tries<br>";

}else{

$start = time();
$total = 0;
while(time()<$start+$ttim){
$total+=1;
$str="";
$i=0;
while($i<8){
$str.=substr($clist,$session[$i],1);
$i+=1;
}
$hstr = hashup($str);
if(stristr($hstr,$_GET['in'])<>FALSE)
echo "$hstr #$str<br>";
$i = 0;
$session[$i]+=1;
while($session[$i]>=$clen){
$session[$i]-=$clen;
$i=($i+1) % 8;
$session[$i]+=1;
}
}
echo "$total tries<br>";

}

echo "Ended with: ";
$i = 0;
while($i<8){
echo substr($clist,$session[$i],1);
$i+=1;
}
$session['time'] = time();
echo " after ".$ttim." sec";

}else{

if(!isset($created)){

if($ttim<$mintime){
echo "Only $ttim sec loaded so far, you should try again after waiting hmmm!<br>";
echo "You need at least $mintime sec before I will search, up to $maxtime sec.<br>";
echo "This is just to prevent server overload, sorry :)<br> <br>";
}else{
echo "I won't search for anything unless it is between 3 and 5 letters long.<br>";
echo "Anything shorter is just dumb, and anything longer will just overload me.<br>";
}
}

}

}
?><br> <br>
usage: tripfind.php?in=[string]<br>
usage: tripfind.php?case=insensitive&in=[string]<br>
usage: tripfind.php?case=sensitive&in=[string]<br>
insensitive by default<br> <br>
Having trouble finding tripcodes?<br>
If your [string] is five letters long, you should use case=insensitive.<br>
case=sensitive will work fine for [string] that are just three long.<br>
If your [string] is more than five letters long, or less than three, I won't even bother searching for it.<br>
 <br>
Try searching for things more than once, you will get different results.<br>
</tt>
</body></html>

Name: Anonymous 2008-06-18 15:10

use tripcode explorer.

Name: !v1oOuxsJ9E 2008-06-18 15:29

Name: !aKM9QurxO6 2008-06-18 15:30

Name: !.2CThPWLbg 2008-06-18 15:31

Z0N6E0YQ

Name: Chris !!aBJKZuplTV/HGe3 2008-06-18 18:59

lol u guyz

Name: Anonymous 2008-06-18 19:36

[quote]use tripcode exploder[/quote]

Name: Anonymous 2010-08-05 2:15

>>23

JACKSON 25 GET

Name: Anonymous 2010-08-05 23:22

>>24
Fuck off, spammer.

Name: Anonymous 2010-08-06 3:11

>>25
25

Name: ​​​​​​​​​​ 2010-10-24 18:47

Name: Sgt.Kabukiman蜖鲥 2012-05-24 6:25

All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy

Name: bampu pantsu 2012-05-29 3:53

bampu pantsu

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