Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


chakkaradeep

799 posts

Ultimate Geek

Trusted

#16669 22-Oct-2007 21:28
Send private message

Some of the peopl'e signature have some info on our ip address,operating system and browser...are those safe ? How can I block those ? I dont want to them to speak with my PC

Here is a sample screenshot,





Regards,
Chaks

Desktop : Intel Quad Core Q9400 2.66GHz - 8GB RAM - 500 GB + 500 GB HDD - NVidia GeForce 9800GT - LG246WH Flatron Display - Windows Server 2008 R2 Enterprise with Hyper-V
Virtual Machine : Powered by Hyper-V and VMWare Workstation
Laptop: HP dv7-3004TX Entertainment Notebook PC | HP Touchsmart tx2 1119au - Windows 7 Ultimate x64
Mac: iMac 21.5" Snow Leopard
Mobile : iPhone 3GS

Create new topic
freitasm
BDFL - Memuneh
80646 posts

Uber Geek
+1 received by user: 41029

Administrator
ID Verified
Trusted
Geekzone
Lifetime subscriber

#91961 22-Oct-2007 22:06
Send private message

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.




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.

 




chakkaradeep

799 posts

Ultimate Geek

Trusted

  #91964 22-Oct-2007 22:11
Send private message

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.


Oh...thanks Smile




Regards,
Chaks

Desktop : Intel Quad Core Q9400 2.66GHz - 8GB RAM - 500 GB + 500 GB HDD - NVidia GeForce 9800GT - LG246WH Flatron Display - Windows Server 2008 R2 Enterprise with Hyper-V
Virtual Machine : Powered by Hyper-V and VMWare Workstation
Laptop: HP dv7-3004TX Entertainment Notebook PC | HP Touchsmart tx2 1119au - Windows 7 Ultimate x64
Mac: iMac 21.5" Snow Leopard
Mobile : iPhone 3GS

freitasm
BDFL - Memuneh
80646 posts

Uber Geek
+1 received by user: 41029

Administrator
ID Verified
Trusted
Geekzone
Lifetime subscriber

#91969 22-Oct-2007 22:34
Send private message

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.Clear

  Set Image = Server.CreateObject("csImageFile.Manage")

  filename = Request.ServerVariables("APPL_PHYSICAL_PATH") & "\image.gif"

  Image.ReadFile filename
  Image.TextOpaque = True
  Image.TextSize = 14

  Image.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!





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
489 posts

Ultimate Geek
+1 received by user: 6


  #91978 22-Oct-2007 23:08
Send private message

Ooops, busted!




pɐǝɥ sıɥ uo ƃuıpuɐʇs

chakkaradeep

799 posts

Ultimate Geek

Trusted

#91979 22-Oct-2007 23:19
Send private message

freitasm:


Response.Expires = 0
Response.Buffer = True
Response.Clear

Set Image = Server.CreateObject("csImageFile.Manage")

filename = Request.ServerVariables("APPL_PHYSICAL_PATH") & "\image.gif"

Image.ReadFile filename
Image.TextOpaque = True
Image.TextSize = 14

Image.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!



Thanks freitasm Smile




Regards,
Chaks

Desktop : Intel Quad Core Q9400 2.66GHz - 8GB RAM - 500 GB + 500 GB HDD - NVidia GeForce 9800GT - LG246WH Flatron Display - Windows Server 2008 R2 Enterprise with Hyper-V
Virtual Machine : Powered by Hyper-V and VMWare Workstation
Laptop: HP dv7-3004TX Entertainment Notebook PC | HP Touchsmart tx2 1119au - Windows 7 Ultimate x64
Mac: iMac 21.5" Snow Leopard
Mobile : iPhone 3GS

Filterer
489 posts

Ultimate Geek
+1 received by user: 6


  #91981 22-Oct-2007 23:26
Send private message

If you get the extension LiveHTTP Headers for firefox it might shed some more light on the issues,

Everytime your browser send a request for a webpage (or image) it sends up some information, you can see this with Live HTTPHEaders


GET / HTTP/1.1
Host: www.google.co.nz
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.8) Gecko/20071008 Firefox/2.0.0.8
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive

All the sig picture does it to read in your user agent which gives which browser and OS you are running, and then looks up which ISP owns your IP range, nothing too scary ;p

To block my signiture at least, you could block www.danasoft.com which is the company that hosts the "image"




pɐǝɥ sıɥ uo ƃuıpuɐʇs

 
 
 

Support Geekzone with one-off or recurring donations Donate via PressPatron.
chakkaradeep

799 posts

Ultimate Geek

Trusted

  #91987 23-Oct-2007 00:07
Send private message


To block my signiture at least, you could block www.danasoft.com which is the company that hosts the "image"


Well, as I dont see any thing scary, why should I hide your signature :D




Regards,
Chaks

Desktop : Intel Quad Core Q9400 2.66GHz - 8GB RAM - 500 GB + 500 GB HDD - NVidia GeForce 9800GT - LG246WH Flatron Display - Windows Server 2008 R2 Enterprise with Hyper-V
Virtual Machine : Powered by Hyper-V and VMWare Workstation
Laptop: HP dv7-3004TX Entertainment Notebook PC | HP Touchsmart tx2 1119au - Windows 7 Ultimate x64
Mac: iMac 21.5" Snow Leopard
Mobile : iPhone 3GS

maninimepo
72 posts

Master Geek


  #92131 23-Oct-2007 20:52
Send private message

Slightly off topic I know, but is there a way I can choose to host my avatar myself?

I've got a nice little PHP script I like to use on other forums, which loads an image at random.

It's quite a cool effect. Every time the script is called, it serves up a different image.

Wouldn't mind using it here but the avatars are stored on the geekzone servers. :-(




freitasm
BDFL - Memuneh
80646 posts

Uber Geek
+1 received by user: 41029

Administrator
ID Verified
Trusted
Geekzone
Lifetime subscriber

#92132 23-Oct-2007 20:54
Send private message

Hmmm., sorry not at the moment - although that's an interesting idea... Stay tuned.




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
30853 posts

Uber Geek
+1 received by user: 9996

Retired Mod
Trusted
Biddle Corp
Lifetime subscriber

  #92136 23-Oct-2007 21:23
Send private message

Filterer: Ooops, busted!


Your sig doesn't show my correct IP anyway! MF's VB post does however.


freitasm
BDFL - Memuneh
80646 posts

Uber Geek
+1 received by user: 41029

Administrator
ID Verified
Trusted
Geekzone
Lifetime subscriber

#92138 23-Oct-2007 21:29
Send private message

I am a h4x0r running VB Script!




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.

 


 
 
 

Stream your favourite shows now on Apple TV (affiliate link).
Filterer
489 posts

Ultimate Geek
+1 received by user: 6


  #92146 23-Oct-2007 21:58
Send private message

sbiddle:
Filterer: Ooops, busted!




Your sig doesn't show my correct IP anyway! MF's VB post does however.





Thats a little weird, I have no idea, I didn't make the avatar, you just sign up to it ;p
Having said that I don't see how if MF gets the correct IP and mine doesn't, its not like your IP could have changed between the two requests




pɐǝɥ sıɥ uo ƃuıpuɐʇs

freitasm
BDFL - Memuneh
80646 posts

Uber Geek
+1 received by user: 41029

Administrator
ID Verified
Trusted
Geekzone
Lifetime subscriber

#92150 23-Oct-2007 22:12
Send private message



They probably have some cache problems... This was working before and now it's wrong. My IP address is different than this... I am using Windows Vista and Internet Explorer - so this screenshot shows the image was completely wrong...

Shall I start a service and provide something that actually works?




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.

 


Create new topic








Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.