Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

test


ghost's Avatar
0 0

test


ghost's Avatar
0 0

Did it work? :P What did you test?


ghost's Avatar
0 0

test


ghost's Avatar
0 0

Yeah…


ghost's Avatar
0 0

Whoa, cool. Good job whoever did that :P.


ghost's Avatar
0 0

quite scary lol


ghost's Avatar
0 0

o.o i see nothing


ghost's Avatar
0 0

that's in hackingforce's sig. when you open the image in a new window it says "302 found" and then the email thing comes up…interesting, how'd you do that?


ghost's Avatar
0 0

LOL. Is it possible? I'm using IE 7 and it does nothing. o.o Is this first example that IE isn't f**ked as it usually is?


SySTeM's Avatar
-=[TheOutlaw]=-
20 0

It's quite simple if you think about it, you set the location to an image, and you make it so the image has "moved", that way FF will try and follow the location to the new location, in this case, a mailto link :)


ghost's Avatar
0 0

hmm…I wonder if you could make it redirect to a javascript function? I'm messing around with it right now. [img]http://silvershad0w.awardspace.com/test04.php[/img]


ghost's Avatar
0 0

pluss im pretty cool :happy:


lukem_95's Avatar
Member
0 0

xtrmsk8r91, if you actually had a picture, instead of a php page, considering the forum disallows dynamic (aka .php) pictures it will probably work.


ghost's Avatar
0 0

nah didn't work


ghost's Avatar
0 0

the image i posted up there isn't an image it's a php script that writes that info on the fly

$im = ImageCreateFromPng("bg.png");
$txtcol = imagecolorallocate($im, 255, 255, 255);
$string = "Your IP is ".getenv('REMOTE_ADDR');
$iw= imagesx($im);
$sw = imagefontwidth(5)*strlen($string);
$sx = ($iw-$sw)/2;
imagestring($im, 5, $sx, 25, $string, $txtcol);
$string = "Sakarin says";
$txtcol = imagecolorallocate($im, 255, 255, 255);
$sw = imagefontwidth(5)*strlen($string);
$sx = ($iw-$sw)/2;
imagestring($im, 5, $sx, 67, $string, $textcol);
$string = "The colors suck i know";
$textcol = imagecolorallocate($im, 255, 255, 255);
$sw = imagefontwidth(5)*strlen($string);
$sx = ($iw-$sw)/2;
imagestring($im, 5, $sx, 80, $string, $textcol);
header("Content-type: image/png");
imagepng($im);
?>```

and an .htaccess entry like this
```markupRedirect permanent /app/images/bg.png http://www.pedrogoya.com/app/images/sak.php```