ip address
-
say there's a server program lauch in a LAN network and it is listening at port number 2000. 1. Anyone has an idea on how to obtained the ip address for the above mentioned server? 2. Or is it possible to communicate to this port with the condition that ip address for the above server was not given. Hacker pls help
-
say there's a server program lauch in a LAN network and it is listening at port number 2000. 1. Anyone has an idea on how to obtained the ip address for the above mentioned server? 2. Or is it possible to communicate to this port with the condition that ip address for the above server was not given. Hacker pls help
You definately need the IP (or hostname) of the server in order to connect to it. That would be like someone sending you an email without your email address! If you don't know the IP you could do an ip scan on your network to find any ip's with port 2000 open.
Don't be overcome by evil, but overcome evil with good
-
say there's a server program lauch in a LAN network and it is listening at port number 2000. 1. Anyone has an idea on how to obtained the ip address for the above mentioned server? 2. Or is it possible to communicate to this port with the condition that ip address for the above server was not given. Hacker pls help
-
say there's a server program lauch in a LAN network and it is listening at port number 2000. 1. Anyone has an idea on how to obtained the ip address for the above mentioned server? 2. Or is it possible to communicate to this port with the condition that ip address for the above server was not given. Hacker pls help
You asked this question yesterday and got the same answers. You can't do it. You only option is to enumerate all the IP address on the network and ping them to test if the port is open. As several people have said, it's like asking where to find house number 103 but without telling them which road it's on.
Simon
-
say there's a server program lauch in a LAN network and it is listening at port number 2000. 1. Anyone has an idea on how to obtained the ip address for the above mentioned server? 2. Or is it possible to communicate to this port with the condition that ip address for the above server was not given. Hacker pls help
again, 1) you need to know the server ip in order to connect to it. 2) do you want to know if it´s possible for you as a client to connect to a server without giving your ip? no When the designed application on the server asks the client´s ip when he tries to connect, if the server can´t get it, he doesn´t grant acess to the client. i woulnd´t!!! :wtf: Do you want to make a fake ip, be somewhat stealth mode? is that it? i don´t how to do that but, i think you can find something of that to download.
-
again, 1) you need to know the server ip in order to connect to it. 2) do you want to know if it´s possible for you as a client to connect to a server without giving your ip? no When the designed application on the server asks the client´s ip when he tries to connect, if the server can´t get it, he doesn´t grant acess to the client. i woulnd´t!!! :wtf: Do you want to make a fake ip, be somewhat stealth mode? is that it? i don´t how to do that but, i think you can find something of that to download.
simple solution would be ...search the IP with in the LAN and match its port number.
Sr. Software Engineer Irevna, India
-
say there's a server program lauch in a LAN network and it is listening at port number 2000. 1. Anyone has an idea on how to obtained the ip address for the above mentioned server? 2. Or is it possible to communicate to this port with the condition that ip address for the above server was not given. Hacker pls help
scan the your Lan ip's using dos command " net view" it would give all machine names and then from that machine names get their corresponding ip's. then combine ipaddress and the port u want to scan, thru this code for (int CurrPort = 1; CurrPort <= 25; CurrPort++) { TcpClient TcpScan = new TcpClient(); try { // Try to connect TcpScan.Connect("192.168.0.1", CurrPort); // If there's no exception, we can say the port is open MessageBox.Show("Port " + CurrPort + " open"); } catch { // An exception occured, thus the port is probably closed MessageBox.Show("Port " + CurrPort + " closed"); } }