How to decrypt a string encrypted by V FoxPro

自古美人都是妖i 提交于 2019-12-02 09:02:51

VFP does not have any native encryption functionality. Those DLLs you list are just the VFP 7 runtimes, and a Visual C++ runtime which the VFP 7 runtimes have a dependency on.

What I would do is:

  1. Download Process Explorer from sysinternals.com.
  2. Start it, then run your VFP program executable.
  3. Find your program EXE in Process Monitor processes column and click on it once.
  4. In the toolbar at the top, use the button to toggle between viewing handles and viewing DLLs. This will list each of these that the EXE has open.

I suspect it's Craig Boyd's library.

If your VFP application was built on Visual MaxFrame then it contains its own encryption/decription functionality as a prg which is part of the framework(x3ed.prg).

It's basically a cypher with some modular logic to flip a couple of bits, but there are 2 variants.

If you have a special key then this is likely not it, but just in case. :)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!