Here is a sample screenshot,
|
|
Referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies
Support Geekzone by subscribing (browse ads-free), or making a one-off or recurring donation through PressPatron.
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
Referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies
Support Geekzone by subscribing (browse ads-free), or making a one-off or recurring donation through PressPatron.
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"
Referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies
Support Geekzone by subscribing (browse ads-free), or making a one-off or recurring donation through PressPatron.
Filterer: Ooops, busted!
Referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies
Support Geekzone by subscribing (browse ads-free), or making a one-off or recurring donation through PressPatron.
sbiddle:Filterer: Ooops, busted!
Your sig doesn't show my correct IP anyway! MF's VB post does however.

Referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies
Support Geekzone by subscribing (browse ads-free), or making a one-off or recurring donation through PressPatron.
|
|