vote up 0 vote down star
1

How do I detect if a remote client is running Remote Desktop Protocol? and it is also accepting remote desktop connections ??

Like Open an port to detect HTTP and send request, receive request headers and see in request headers information about HTTP so I will know the person is running HTTP weather if he changed the port e.g: running HTTP 6551.

flag

59% accept rate

2 Answers

vote up 1 vote down check

Attempt and make a connection with something that is RDP-connection aware (RDP is not HTTP). Of course, failing to establish an initial handshake is not proof that a connection can not be established. It could be blocked by a firewall, listening on another port, etc.

The MS-RDPBCGR specification, page 16 talks about connecting which in turn defers to X.224, go figure.

It'd likely just be easiest to use Wireshark and observe in-the-wild behavior to develop a minimal detection case. I suspect only the very initial portion of the handshake needs to be generated/replayed in order to "decide" that it's a listening RDP server.

(Or, perhaps use an existing RDP client which has this "test connect" functionality or the ability to be scripted.)

link|flag
Thanks very much my problem is solved. Thanks for giving me wonderful and pin point information. – Aizaz Oct 29 at 9:01
vote up 2 vote down

You could do netstat -a in the command line and see if the default port for remote desktop connection is listening, ie. TCP:3389 but thats only if the client hasn't changed the ports for MSTSC

link|flag
How to do this on Remote computer through programmatic way ??? – Aizaz Oct 29 at 6:40
i am not sure how it can be done by implementing a program, i am not doubting the fact, just never thought about it. If the purpose is to connect to a computer that you can physically touch, I suggest you should try either through the command line tools or just viewing the remote settings. – aforloney Oct 29 at 6:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.