Windows screen tracking

I am working on a web project where content security is a customer priority. I need to create a Windows application that will track if a user launches any screen recorder while visiting a website. If he is, I need to get him out. I have knowledge of C #, vb.net. Could you tell me if it is possible to track whether the screen recorder is working on the user's computer?

+2
source share
2 answers

Do you seriously want to prevent access to the registered website?

The simple answer is no, you cannot say. However, MS does offer some content protection APIs that may be more than what you need if you are rendering on the surface of DirectX 11:

The direct 3D video API on MSDN contains more information.

+1
source

It can cost enormous resources to implement such a solution (which will have holes and should be supported). Monitoring a website using a desktop application sounds like a dirty, unsafe hack. What if the user has a mobile phone with a camera?

Better, you should rely on standard, generally accepted HTTP / TSL security principles such as proper authentication, authorization, security policies, encryption, strong passwords, etc.

0
source

Source: https://habr.com/ru/post/1537810/


All Articles