View Single Post
  #2 (permalink)  
Old June 9th, 2002
cultiv8r cultiv8r is offline
Connoisseur
 
Join Date: August 9th, 2001
Location: Philadelphia, PA, USA
Posts: 358
cultiv8r is flying high
Default

I wonder, how does one connect to another node over TCP/IP, if TCP/IP needs an IP but you don't send one?

Looking through their source code, it definitely sends and receives IP addresses:

Code:
   String fsip=srcdata.GetDataValue("nodeip");
   String nodemanager=srcdata.GetDataValue("nodemanager");
and

Code:
  new URL("http://"+fsip+":"+fsport+"/"+objid);
So even if it is encrypted, you need a way to unencrypt it. So how can you unencrypt if you don't know how it was encrypted? You use a uniform, publicly known encryption. So there you go - it defeats the purpose because anyone can still unencrypt it and know the IP address.
Reply With Quote