Using telnet on windows 7.. can't connect on a specific port

0

Sorry if my question is stupid, but I'm trying to connect to myself using telnet, and i'm having some issues. I'm using a windows rat(Not an illegal one), it's an exe file that listens on port 24328 and allows people to connect using telnet.

so i tried to telnet to myself using:

telnet XX.XX.XX.XX.XX(My external IP Address)

Then i tried the same thing with my local IP address, nothing works. Then i tried to connect and tell telnet the port:

telnet XX.XX.XX.XX.XX 24328

Not working as well.

I Have no idea how to connect on that port, is it even possible on windows?

Thanks.

Eden_Pierce

Posted 2014-10-31T19:50:46.060

Reputation: 1

1It might help if you told us what error message(s) you are getting. – G-Man Says 'Reinstate Monica' – 2014-10-31T20:06:34.527

Note: Connecting to your external IP from inside the LAN (behind a NAT router) often/usually doesn't work due to the router not being good enough to provide, or being configured to enable, that feature. Have you confirmed the RAT is actually up and listening on that port (netstat -a)? Have you confirmed there's no firewall or AV suite blocking access to the port? To repeat what G-Man requests in his comment, what are the actual error message you get when trying to connect? – Ƭᴇcʜιᴇ007 – 2014-10-31T20:43:42.293

Answers

0

Did you enable the Telnet Server feature on your machine?

Run --> appwiz.cpl --> Turn Windows features on or off

DarkStar

Posted 2014-10-31T19:50:46.060

Reputation: 1

I think he's saying that he's using the telnet client to try to connect to some other program/service (RAT). – G-Man Says 'Reinstate Monica' – 2014-10-31T21:46:44.300

OK i get it now :) – DarkStar – 2014-11-01T12:05:38.433

0

  1. Connecting to the external IP address often fails since the consumer grade router does not allow access to its own external IP from the internal LAN. There is nothing you can do.

  2. if you want others to access your computer from Internet, you have to configure TCP port forwarding on your router for port 24328 which Must be forwarded to the local IP of your PC.

  3. you should be able to telnet to the internal IP. Try disable windows firewall completely to see whether it helps.

user3767013

Posted 2014-10-31T19:50:46.060

Reputation: 1 297