Windows 7 RDP certificate

0

I'm just trying to connect to a Windows 7 computer from another Windows 7 computer using built-in RDP. but I get this warning as pictured: enter image description here

Both computer are clean and in the same LAN, so what's the problem, is this normal? How can I make sure there's no man-in-middle attack?

Sam

Posted 2017-01-06T11:47:39.300

Reputation: 950

1If you want to be sure that there's no MiM attack you could view the certificate and see if it matches the certificate you have on the PC you're trying to RDP to. – Bungicasse – 2017-01-06T12:00:05.343

Answers

0

If you want be sure that there's no attack, you should get a certificate from a trusted Certificate Authority, configure your Windows 7 pc to present this certificate when a RDP session is initiated, and accept this certificate on the other side.

Right now, the pc accepting the RDP session is presenting an automatically generated certificate. If you have a signed and trusted certificate, you can replace it using the steps from Rivald's blog

  1. open mmc.exe (Microsoft Management Console)
  2. add the add-in - certificates (for the computer account) (and select local computer)
  3. navigate to the remote desktop folder -> certificates
  4. delete the certificate for the name of the server and close the mmc instance
  5. Go to: administrative tools -> remote desktop services -> remote desktop session host configuration
  6. Select the instance in the main window - rdp -tcp -> right click and select properties
  7. on the window that pops up, select default

R-D

Posted 2017-01-06T11:47:39.300

Reputation: 2 506