Here is a sample screenshot,

![]() ![]() |
Please support Geekzone by subscribing, or using one of our referral links: Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync | Backblaze backup
freitasm: They are not speaking to your PC. Every browser sends this information to a web server when requesting something, so the provider just have to create an image with this information received in the request header for the image.
It's just a trick and nothing bad.
Just because I have time, and the right image manipulation component on the server I've created something for you:
This is ASP (VB Script) code that creates this image:
Response.Expires = 0
Response.Buffer = True
Response.ClearSet Image = Server.CreateObject("csImageFile.Manage")
filename = Request.ServerVariables("APPL_PHYSICAL_PATH") & "\image.gif"
Image.ReadFile filename
Image.TextOpaque = True
Image.TextSize = 14Image.TextColor = "123456"
Image.TextFont = "Tahoma"
Image.Text 50, 50, "IP Address"Image.TextBold = true
Image.TextSize = 14
Image.Text 120, 50, Request.ServerVariables("REMOTE_ADDR")Response.ContentType = "image/gif"
Response.BinaryWrite Image.GIFData
response.End
Please support Geekzone by subscribing, or using one of our referral links: Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync | Backblaze backup
freitasm:
Response.Expires = 0
Response.Buffer = True
Response.ClearSet Image = Server.CreateObject("csImageFile.Manage")
filename = Request.ServerVariables("APPL_PHYSICAL_PATH") & "\image.gif"
Image.ReadFile filename
Image.TextOpaque = True
Image.TextSize = 14Image.TextColor = "123456"
Image.TextFont = "Tahoma"
Image.Text 50, 50, "IP Address"Image.TextBold = true
Image.TextSize = 14
Image.Text 120, 50, Request.ServerVariables("REMOTE_ADDR")Response.ContentType = "image/gif"
Response.BinaryWrite Image.GIFData
response.End
See? Nothing evil!
To block my signiture at least, you could block www.danasoft.com which is the company that hosts the "image"
Please support Geekzone by subscribing, or using one of our referral links: Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync | Backblaze backup
Filterer: Ooops, busted!
Please support Geekzone by subscribing, or using one of our referral links: Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync | Backblaze backup
sbiddle:Filterer: Ooops, busted!
Your sig doesn't show my correct IP anyway! MF's VB post does however.
Please support Geekzone by subscribing, or using one of our referral links: Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync | Backblaze backup
![]() ![]() |