由买买提看人间百态

topics

全部话题 - 话题: decompile
首页 上页 1 2 3 下页 末页 (共3页)
r****y
发帖数: 26819
1
来自主题: Flash版 - 请教FLASH网址问题
要下载不是没有办法。
装一个swf decompiler就知道这个swf调用什么了,然后依法全部下载。
A*******1
发帖数: 366
2
来自主题: Flash版 - 请教FLASH网址问题
刚下了swf decompiler
打开YV_YEP.swf看了看 还是看不懂
请那位高手来解说解说 这flashVars="id=13749435"该在哪里?
谢谢
package
{
import flash.display.*;
import flash.events.*;
import flash.net.*;
public class YV_YEP extends Sprite
{
private var _loader:Loader;
public function YV_YEP()
{
_loader = new Loader();
loaderInfo.addEventListener(Event.COMPLETE, onLoad);
return;
}// end function
private function onError(param1:Event) : void
r****y
发帖数: 26819
3
来自主题: Flash版 - swf decomplier 软件
这种事我常遇到。
不要期望decompiler给你一个理想的结构,对于复杂的swf也不要希望拿到它全部的
东西,只要能看到代码,知道它的原理,自己能重新做一个就可以了。不可太贪。
r****y
发帖数: 26819
4
没有仔细跟那个教程,不过看来是需要在关键帧上停的。
如果你有swf decompiler看看源码就知道了。

flash
r****y
发帖数: 26819
5
用decompiler还原成fla,读读as代码。。。
r****y
发帖数: 26819
6
用SWF Decompiler。。。
E**a
发帖数: 275
7
发信人: Exia (漂流瓶), 信区: PDA
标 题: 求推荐软件可以frame by frame输出视屏为图片
发信站: BBS 未名空间站 (Fri Jul 22 13:49:12 2011, 美东)
录了十几个小时的video,想后期每隔相同时间间隔输出为图片,试过video
decompiler,老马的mediacam,都不怎么理想,求推荐free的小软件,谢谢
L*****y
发帖数: 4290
8
matlab?

发信人: Exia (漂流瓶), 信区: PDA
标 题: 求推荐软件可以frame by frame输出视屏为图片
发信站: BBS 未名空间站 (Fri Jul 22 13:49:12 2011, 美东)
录了十几个小时的video,想后期每隔相同时间间隔输出为图片,试过video
decompiler,老马的mediacam,都不怎么理想,求推荐free的小软件,谢谢
F**e
发帖数: 593
k*****c
发帖数: 6
10
现在有一个类的.class文件,想获得这个类定义的public methods。
使用下面的方法来做。但对于某些类,在运行到theClass.getMethods()时就出ClassNotF
oundException(而且不能被我程序的异常处理捕获,直接退出到命令行),因为那个类引
用了一些在我的机器上没有的类。
//Class theClass=classLoader.loadClass(sClassName);
Class theClass=Class.forName(sClassName,false,classLoader);
allMethods=theClass.getMethods();
我的目的是只想得到这个类定义的所有公开功能,并不是要使用这个类。
(当然可以用decompiler去看,但我要处理大量的类,想通过程序做)
应该有办法获得吧,就象IDE可以列出类的所有功能。
请指教。谢谢!
g*****n
发帖数: 37
11
No use. Java bytecode can be easily decompiled, using DJ, mocha ...
h******b
发帖数: 312
12
use retro guard:
Java bytecode (.class and .jar files) contains much of the information in your
Java source files, leaving your products exposed to reverse engineering.
RetroGuard, a general purpose bytecode obfuscator, is designed to fit
effortlessly into your regular build and testing process, providing peace of
mind that your valuable Java code is more secure against decompilation and
other forms of reverse engineering.
http://www.retrologic.com/
w******t
发帖数: 1422
13
I have this stupid thought: why we need to do that?
(1)java means to be open source, isn't it?
(2)maybe I am not good enough, but I always think that anything I can do,
there're whole lot people can do it too (maybe even better) without look at my
code
(3)if your product needs protection, I think it's going to be complex enough,
do you think one can spend less time to redo it by reading the decompiled code
without design doc and spec doc, than redo it from scratch (if they know the
reqirements)
xt
发帖数: 17532
14


There is no way. You can only obfuscate your class files so people
cannot decompile.
b****w
发帖数: 64
15


还是可经decompile吧,
只是看起来麻烦点
如果有一些特殊的代码或是数据
放在服务器端只从APPLET取输入
g*****g
发帖数: 34805
16
search "java decompiler"
h**j
发帖数: 2033
n***k
发帖数: 2780
t*****s
发帖数: 124
g*****g
发帖数: 34805
20
as long as you don't use generics, I think it's fine.

a
g*****g
发帖数: 34805
21
the best way I know, decompile the code, wrap all strings with
unicode.
g*****g
发帖数: 34805
22
来自主题: Java版 - is access to int[] faster than List?
I mean for ArrayList, for LinkedList, of course it's different.
I didn't see the source, but if you decompile it, I believe
you'll see something like that.
g*****g
发帖数: 34805
23
I never had a chance to use native2ascii, maybe devs in China will
be more concerned. I'll take decompiler over Javap any day of the week.
Htmlconverter, how about grab an real applet example from google and
start from there?
This is the top skill a java dev needs, know how to efficiently use
google and copy/paste.
u**********e
发帖数: 282
24
jad decompiler
c++
m******t
发帖数: 2416
25
来自主题: Java版 - JavaFX

I wonder how flash player deals with this - we never see security warnings
from playing a flash.
That probably can't be helped - java classes can be decompiled, if someone
really wants it.
m******t
发帖数: 2416
26
来自主题: Java版 - JAVA问题求教

engin
变了
Are you worried about your java code being reverse engineered and stolen, or
are you worried about your encryption algorithm being decompiled and
cracked?
N*D
发帖数: 3641
27
来自主题: Java版 - JAVA问题求教
I don't want to expose the encryption algorithm and the key to people who
want to use it. Is there any way to do this? Thanks.

engin
变了
Are you worried about your java code being reverse engineered and stolen, or
are you worried about your encryption algorithm being decompiled and
cracked?
s*******u
发帖数: 19
28
It is very likely it can be done -- since even the jar file may be
decompiled to the source code (the code might be obfuscated. It can be hard
to figure out the thing). But if you are not familar with Java, you are
pretty much out of the luck to take such an adventure.

来是
h****w
发帖数: 41
29
试过java decompiler了,反编译出一堆你说的obfuscated。所以想找个简单点的
方法,就是一个类似自动填表机的东西填java applet

hard
g*****g
发帖数: 34805
30
来自主题: Java版 - 问java applet的问题
Decompile the code and set debug point, it doesn't stop you from
running it as an application.
c**t
发帖数: 2744
31
来自主题: Java版 - 问java applet的问题
Decompiled, it used some other packages in the server path, which we don't h
ave, failed to compile...
b******y
发帖数: 9224
32
来自主题: Java版 - Confluence太贵了
和JIRA一样,太贵了。所以,国内才会有盗版(可以拿到demo版,将license文件class
file decompile, 然后将日期无限延长,再compile后放回去)
感觉,这些软件,其实不难做。便宜的,功能类似的web application,一定有市场。
F****n
发帖数: 3271
33
来自主题: Java版 - spring framework不open source 了?
有能beat obfuscator 的decompiler吗
g*****g
发帖数: 34805
34
Use a decompiler.
k**********a
发帖数: 255
35
只有decompile才可以吗
g*****g
发帖数: 34805
36
来自主题: Java版 - 郁闷
It's based on web UI. You can decompile the code yourself if you
want to. It's under baozi.jar and only 2 classes.
h*****0
发帖数: 4889
37
来自主题: Java版 - 郁闷
I don't know how to decompile things.. and I guess that will produce codes
difficult to read..
g**********y
发帖数: 14569
38
来自主题: Java版 - 郁闷
But for most developer, they don't need to decompile code. Besides, a bad/
long program is automatic obfuscated, nobody wants to read/understand such
code unless he is the unlucky maintainer.
F****n
发帖数: 3271
39
来自主题: Java版 - type erasure weird problem
That's because you confuse Java language vs JVM byte code. They are not the
same by specification and JVM byte code can have a lot of illegal Java
constructs.
In fact today's best obfuscator utilizes this, for instance, directly write
a compiled byte code to replace Java names with weird illegal characters to prevent
decompiling.
Back to the question, I think LZ simply made a wrong observation during compiling. The class can be compiled but the caller will have problem if no Generic parameters a... 阅读全帖
z****e
发帖数: 54598
40
三种主流平台都支持,相当不错
http://java.decompiler.free.fr/?q=jdgui
k******p
发帖数: 21
41
decompile and customize/subclass it
c******n
发帖数: 4965
42
来自主题: Java版 - yourkit license
there is a post online where someone figured out that it's very easy to hack
the license check: you just decompile and modify the license check code.
and recompile and use the new class.
but it seems that the latest versions of yjp obfuscates the source code so
the above is no longer feasible
d****g
发帖数: 7460
43
好多年前用过jad.前一阵子找也找不到了。大家用什么?
f*******n
发帖数: 12623
44
Jad可以在这里下载:
http://www.varaneckas.com/jad/
B*****g
发帖数: 34098
45
这种工具的原理是什么?
F****n
发帖数: 3271
46
读bytecode
o**1
发帖数: 6383
47
JD-GUI
w**z
发帖数: 8232
48
google 一下,平时就看code,没啥区别。你有啥特殊要求,就要自己试试了。
g*****g
发帖数: 34805
49
一堆免费的,其实都还行。
y****e
发帖数: 23939
50
谢谢楼上的回贴。找了个linux下的jd-gui,除了search功能不太满意,也还不错了。
首页 上页 1 2 3 下页 末页 (共3页)