是否有可能为一个桌面应用程序,以获取网站的网址是什么?

人气:1,040 发布:2022-09-11 标签: web .net desktop-application

问题描述

我开发一个桌面应用程序有通知用户,如果防病毒或其他安全软件被禁用,一旦用户打开银行wabsite.The银行网站网址 是已知的应用程序。我的申请有火如果给定的银行站点将被从user.I访问的通知窗口希望应用程序检查哪个站点(联系)被打开由用户和如果它是predefined链接通知形式应该会出现。是在没有开发浏览器插件做了这样的事可能吗?

I am developing a desktop application which has to notify the user if antivirus or other security software are disabled once the user opens a bank wabsite.The bank website url is known for the application. My application has to fire a notification window if the given bank site is going to be accessed from the user.I want the application to check which site (link) is opening by the user and if it is the predefined link the notification form should appear. Is something like this possible to be done without developing browser add-ins?

推荐答案

简短的答案是否定的。

较长的答案是肯定的。但是你不得不进入任一网络嗅探(将无法正常工作 - 银行业务通常是加密的)或存储东西(手动从RAM读取字符串,等等)。在这两种情况下,它至少1000倍更容易使浏览器加载项。

The longer answer is Yes. But you'd have to go into either network sniffing (won't work - bank traffic is usually encrypted) or memory stuff (manually reading strings from the RAM, etc). In both cases it's at least 1000x easier to make a browser add-in.

129