decompiling

Java inner class inconsistency between descriptor and signature attribute? (class file)

我们两清 提交于 2019-12-09 16:53:48
问题 I'm trying to understand if there's a reason in the spec for the discrepany between java descriptors and signatures for inner classes. (I'm looking directly at the content of the class files here, but I use javap to illustrate). ( n.b. I have tried this on JDK 1.6.0_33 and 1.7.0_05, both have the same issue when viewed with javap from Java 7 - java 6's javap doesn't seem to show any generic signature info, as per Sean's answer below. ) Update : Thanks to those discussing - my take is The

java decompilation

倖福魔咒の 提交于 2019-12-09 16:16:11
问题 When decompiling a specific jar using java decompiler (http://java.decompiler.free.fr/) I got some strange code I cannot identify what is. can someone help me? the code is something like: Foo.access$004(Foo.this); or this Bar.access$006(Bar.this); or else Baz.access$102(Baz.this, true) What are these methods access$004 , access$006 and access$102 ? 回答1: Synthetic methods like this get created to support acessing private methods of inner classes. Since inner classes were not part of the

How can I find the dynamic libraries required by an ELF Binary in C++?

时光毁灭记忆、已成空白 提交于 2019-12-09 12:21:36
问题 How can I get a list of all the dynamic libraries that is required by an elf binary in linux using C++? Once I've managed to extract the information (filename?) from the binary I can find the actual file by searching through the PATH , but I haven't been able to find any information regarding extracting unmangled information from the ELF binary. Thoughts? 回答1: The list of required shared objects is stored in the so-called dynamic section of the executable. The rough algorithm of getting the

How do you decompile, edit in eclipse and recompile an apk? Step by Step? [duplicate]

人盡茶涼 提交于 2019-12-09 05:54:44
问题 This question already has answers here : Decompile an APK, modify it and then recompile it (9 answers) Closed 6 years ago . I have this application from the market in an apk format, but I want to tweak it a little bit to fix some issues I have with a small screen, I know the code ok but it's getting to the point of editing the code that's the problem What I have tried before: Decompile using apk manager (command 9) That created a folder in projects with all the files In eclipse I made a new

Extract VB.NET code from exe file

爱⌒轻易说出口 提交于 2019-12-09 02:56:37
问题 I made a program using VB and I lost the source code but I have the exe file. How can I extract the code from the exe file? 回答1: Assuming your exe is a .NET assembly (you tagged the question as VB.NET), you can reverse engineer your exe using tools such as Reflector. 回答2: If it's VB.NET you can use the RedGate Reflector tool and the FileDisassemler plugin to generate the source code. That is if the exe was not obfuscated 回答3: Since you tagged your question vb.net you might be able to retrieve

Is it possible to actually debug 3rd party code using the source decompiled with dotPeek?

那年仲夏 提交于 2019-12-09 02:49:26
问题 I use VS2012. I know how to debug the 3rd party code using the .NET Reflector and always used it. I was wondering whether this is possible with dotPeek from JetBrains or with R# itself without the dotPeek. I am able to navigate to the decompiled 3rd party code, but not step through it. Any ideas? 回答1: I see this question is still driving traffic to my blog, so I'll add an answer: yes, debugging 3rd-party assemblies is now possible with the JetBrains dotPeek decompiler (completely free), by

I have apk file, Is it possible to get android studio project from apk?

随声附和 提交于 2019-12-08 15:35:04
问题 I have completed apk file, but lost my project. Is it possible to get android studio project from my apk file? If possible, which tools can I use? I want IDE tool name, tried with dex2jar, but not works. 回答1: I don't think it is possible however you can the kind of files, resources, used packages, etc from the apk. But i doubt if you can see the actual code. 来源: https://stackoverflow.com/questions/54339913/i-have-apk-file-is-it-possible-to-get-android-studio-project-from-apk

Security in Flex – is it possible to manipulate downloaded code and execute web service

一世执手 提交于 2019-12-08 07:42:33
问题 I am designing the application in Flex that connects to some web services to perform some financial transactions. Web services are secured using https protocol and are asking for user token created at login on each request. This is used to authenticate and authorize the user. So far so good. The trick part is that not all of our web services are coarsely grained. To give you an example, we can have two web service methods: EnoughFounds and Transfer. So, only after the method EnoughFounds

Security in Flex – is it possible to manipulate downloaded code and execute web service

柔情痞子 提交于 2019-12-08 06:25:29
I am designing the application in Flex that connects to some web services to perform some financial transactions. Web services are secured using https protocol and are asking for user token created at login on each request. This is used to authenticate and authorize the user. So far so good. The trick part is that not all of our web services are coarsely grained. To give you an example, we can have two web service methods: EnoughFounds and Transfer. So, only after the method EnoughFounds replies “true” will I execute Transfer. This logic is programmed inside the Flex application code. The

Encryption and Decompiling

邮差的信 提交于 2019-12-08 05:59:39
问题 Im about to put my Android app on the marketplace. I recently encrypted all of my server/client communication. What i am wondering is if my data is encrypted using a specialized key, and if a person decompiles my code and extracts the key, then is it even worth encrypting the data in the first place? My communications ran a lot faster when the data wasn't encrypted. With the game being an action game, lag is going to be a huge "fun killer" and from experience i know it is frustrating. I know