使用 c++ 从 .swf 中提取变量
我目前正在开发一个项目,该项目依赖于外部 .swf 文件中定义的变量和常量。由于我没有 .swf 文件的源代码,我需要通过反编译并手动复制和粘贴变量来提取这些变量的内容。我想知道是否有一种方法可以通过使用 C++ 分析字节码来提取这些变量。
I am currently working on a project which relies on variables and constants defined in an external .swf-File. As I don't have the sourcecode to the .swf file I need to extract the content of these variables by decompiling and copy&pasting the variables by hand. I was wondering if there is a way to extract these variables by analysing the bytecode using c++ for instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎是用 C 编写的,但是在快速谷歌搜索后,该项目似乎与您正在寻找的内容最匹配:
http://openswf.svn.sourceforge.net/viewvc/openswf/
如果这对您不起作用,您可以随时查看 SWF 文件规范(完整记录) 这里像老板一样编写您自己的解析器。 ;)
Seems to be written in C but, after doing some quick googling this project seems to be the closet match to what you're looking for:
http://openswf.svn.sourceforge.net/viewvc/openswf/
If that doesn't work for you, you can always check out the SWF file specification (fully documented) here and write up your own parser like a boss. ;)