A little trick we use to get info out of intented target...
For this you only need a webserver that works fine with php and the gd libary.
First create a new folder on the webserv and put this file in it: .htaccess with the text:
It tells the server to treat every file in the map as a php script.
Now we make the picture, just use paint or something. save it as a .jpg file and upload it also.
Next php script starts by typing:
It tells that it is a picture. now we go further and typ our script, this is an example:
Now we are going to load the origional picture so the user won't notice it:
and end it:
Now save it as something.jpg upload it, try to open it, look if it works and send it to whoever you want
For this you only need a webserver that works fine with php and the gd libary.
First create a new folder on the webserv and put this file in it: .htaccess with the text:
Code:
ForceType application/x-httpd-php
Now we make the picture, just use paint or something. save it as a .jpg file and upload it also.
Next php script starts by typing:
Code: PHP
<?php
header("Content-type: image/jpeg");
Code: PHP
$ip = getenv("REMOTE_ADDR");
$date = date("d") . " " . date("F") . " " . date("Y");
$intofile = $ip . "\n" . $date;
$hfile = fopen("data.txt", "w");
fwrite($hfile, $intofile);
fclose($hfile);
Code: PHP
$BGImage = imagecreatefromjpeg("name.jpg");
imagejpeg($BGImage);
imagedestroy($BGImage);
Code: PHP
?>

