如何从网页读取并运行硬盘上的文件?
这是我想做的事情的要点: 用户必须将他的指纹(捕获的图像)与服务器中存储的图像进行匹配。我已经在 OpenCV 中实现了图像匹配程序,它是磁盘上的 .exe 文件。其输出是flag.txt。 基本上,如果 flag.txt 的值非零,则用户可以访问下一个网页。
问题是 - 如何运行 .exe 并从网页读取生成的文本文件(保存在硬盘上)的内容?
编辑 - 请注意,我不确定这属于哪个标签。
Here's the gist of what I'm trying to do:
A user will have to match his fingerprint (captured image) with an image stored in the server. I've implemented the image matching program in OpenCV and it's a .exe on disk. The output of this is flag.txt.
Basically if the value of flag.txt is non-zero the user may gain access to the next webpage.
The question is - how to I run the .exe and read the contents of the resultant text file (saved on the hard-drive) from a webpage?
EDIT - please note, I am not sure under which tags this falls.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要实现一种 Web 服务,它将执行您的 .exe 文件并执行其他逻辑并从网页访问此 Web 服务。由于安全原因,浏览器不允许网页执行此类操作
You need to implement kind of web service which will execute you .exe files and do other logic and access this web service from web page. Browser won't allow web page do such actions because of security reasons