Poll
Feedback
Geini wrote:
Danke für die Informationen zu den Captchas und die schönen beispiele!! so brauchte ich nicht lang suchen und hab dazu noch eine Super erklärung + download gefunden....
more...
©1996-2012
Michael Rosenbaum Ratzeburg - Germany
Advert
Most wanted
Atomic Clock Bios BIOS Beep tones BIOS Boot CD I BIOS Boot CD II BIOS Boot Diskette BIOS Boot Logo BIOS Boot USB Stick BIOS EPA Logos BIOS ID BIOS Passwords BIOS Software BIOS Update instruction Blog Bios Boot Logo Feedback PC Professionalist wanted ! Mainboard manufacturer Programs Ratzeburg
Domains
Domains for sale!
Short and catchy domains are very rare.
9b9.de
pik7.net
rapidlinks.de
rapidlinks.net
rapidlinks.eu
Show available domains...
The procedure is simple: take a prepared E-Mail address which contains IP, date and time of the website access. Hide this address inside the HTML-Code, that a normal visitor cant see it, and wait until you receive Spam by this E-Mail address. On the basis of IP, date and time of the website access, we can find out the spammer's provider to take steps against the spam, on the condition that the spammer does not use an anonymizing proxy server like Tor or JAP.
Example:
Your current IP is: 38.107.179.237 and you have accessed this website at date: 02/05/2012 time: 07:50:33
These 3 informations are enough. Now we use a small PHP-Script to create the mailto-Link. To hide the link inside the browser, we leave the link text (between <a> and </a>) free. First of all we use the PHP-functions date() and time() to create a formatted date and time output, and the Server variable $_SERVER['REMOTE_ADDR'] to get the actual IP.
Result: the HTML-Code contains just about the following link:
Now we try to reduce the length of our mailto-link, because a spammer could ignore a long E-Mail link. First, we use the PHP-function time() to get the Unix-Timestamp, which contains the number of seconds elapsed since midnight UTC of January 1, 1970. Then we use dechex() to convert the timestamp into an 8 characters long (4Byte, 32Bit) hexadecimal value. At last, we use ip2long() to convert the IP into a 32Bit long value, and dechex() to convert the value into an 8 characters long (4Byte, 32Bit) hexadecimal value.
Result: the HTML-Code contains just about the following link:
That should be enough. Ok, we could also remove the string info and both hyphens, to get a 6 characters smaller E-Mail address. In future, we could use the PHP-functions long2ip() and hexdec() to convert the string back into the previous values.
Proxy or real IP?
With the following PHP-script we try to find the real IP behind an open proxy:
Note: on the condition that the spammer does not use an anonymizing proxy server!