Vizitator Posted June 18, 2012 Report Posted June 18, 2012 Vreau sa stiu cum aflu si eu ip pe yahoo messenger ..ip pe care vreau sal aflu este de pe rds:-/ Quote
DarkyAngel Posted June 18, 2012 Report Posted June 18, 2012 prima oar? când te înregistrezi pe un forum, cite?te ?i tu REGULILE... Quote
StrXt Posted June 18, 2012 Report Posted June 18, 2012 https://rstcenter.com/forum/51873-ip-yahoo-2.rst#post345693 Quote
me.mello Posted June 19, 2012 Report Posted June 19, 2012 Daca nu mai merge asta https://rstcenter.com/forum/46717-rst-who-fuck.rst da-ti foc!!! Quote
totti93 Posted June 19, 2012 Report Posted June 19, 2012 @me.mello Poate sa-si toarne benzina deja, ca am sters botii mai demult, ca nu mergeau Quote
Vizitator Posted June 19, 2012 Author Report Posted June 19, 2012 Eu cred ca daca are ip dinamic ..mai bine iti tai venele asa ca va multumesc pentru implicare in a ma ajuta . Quote
AhEaD Posted June 19, 2012 Report Posted June 19, 2012 Iti bagi un deget in cur in timp ce cu cealalta mana iti dai palme si alfii ip de yahoo.Ne-am chinuit sa scriem reguli ca sa vina ratati ca tine.Jet in sloboz! Quote
u0m3 Posted June 20, 2012 Report Posted June 20, 2012 (edited) Poti folosi codul asta pus pe un webhost:<?php// Definitionsdefine("SHOW_IMAGE", 0);define("SHOW_LAST_IP", 1);define("LOG_FILE", "log.txt");// Variables$cmd=SHOW_IMAGE;$img=realpath("./something-went-wrong-graphic.jpg");// Check if we are suposed to display IP or if(isset($_GET["cmd"]) && $_GET["cmd"] == SHOW_LAST_IP) { $cmd = SHOW_LAST_IP;}if(isset($_GET["id"])) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, base64_decode($_GET["id"])); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); $imgblob = curl_exec($ch); curl_close($ch);}if($cmd == SHOW_LAST_IP) { $fp = @fopen(LOG_FILE, 'rb'); if(!$fp) { echo "Failed to open file"; exit; } while (!feof($fp)) { $contents .= fread($fp, 8192); } echo $contents; fclose($fp);} else { if(isset($imgblob)) { $image = new Imagick(); $image->readimageblob($imgblob); header("Content-type: " . $image->getFormat()); echo $image->getimageblob(); } else { $image = new Imagick($img); echo $image; } $line = "" . date("r") . " ==> " . $_SERVER['REMOTE_ADDR'] . " [" . (isset($_SERVER['REMOTE_HOST'])? $_SERVER['REMOTE_HOST'] : "Reverse DNS lookup not enabled") . "]" . PHP_EOL; $fp = @fopen(LOG_FILE, 'a'); if($fp) { fwrite($fp, $line); fclose($fp); }}Trebuie editate unele variabile/definitii, dar nu e mult de lucru. Edited June 20, 2012 by u0m3 Quote