Obfuscate « Security « Spring Q&A





1. having problem with proguard trying to obfuscate code that uses Spring    stackoverflow.com

My project uses spring for IoC. After obfuscation the application context fails to find the bean since it's class name has been changed. I tried to use -adaptresourcefilecontents option to get context.xml ...

2. are there any potential issues with obfuscating an application?    stackoverflow.com

I am building a spring mvc web application. I plan on using hibernate. I don't have much experience with obfuscating etc. What are the potential downsides to obfuscating an application? I understand that there might ...

3. Using Proguard with a library that uses Spring @Autowired by name    stackoverflow.com

I'm using Proguard to obfuscate a library that has several @Autowired fields. The obfuscator is renaming those class fields (because they are private/internal to the class) and thus my bean ...

4. Using Proguard with a library has a @Service bean which should autowire    stackoverflow.com

I have a library Common.License which I am obfuscating with Proguard:

<plugin>
    <groupId>com.pyx4me</groupId>
    <artifactId>proguard-maven-plugin</artifactId>
    <executions>
       ...

5. ProGuard obfuscation variable naming, how to avoid local and param prefixes?    stackoverflow.com

I am trying to obfuscate a spring web application using ProGuard. I want to keep class and method names, especially the ones used as spring beans. But ProGuard renames local variables ...

6. Is obfuscation of Spring apps worth trying it?    stackoverflow.com

I want to use obfuscators (e.g ProGuard) to protect the IP in my web application. I know the limitations of obfuscated bytecode and that one can decompile it nevertheless. But I ...

7. Is obfuscation worth trying it ?    forum.springsource.org

Is obfuscation worth trying it ? Hi, I want to use obfuscators (e.g ProGuard) to protect the IP in my web application. I know the limitations of obfuscated bytecode and that ...

8. Obfuscators experience with Spring    forum.springsource.org

I'm looking for some positive or negative experience or attempts in using obfuscators with Spring. What strategies were used and to what degree the classes were obfuscated, what problems were encountered ...

9. obfuscation    forum.springsource.org

We want to obfuscate our java source for our web application. The problem, of course, is that we have to update our spring configuration files as well, as most obfuscation tools ...





10. text obfuscation/encryption    forum.springsource.org

text obfuscation/encryption Hi all, I just did a quick look around the Java API and Spring but couldn't really find what I needed, so hopefully someone here will have an idea ...

11. Code Obfuscation    forum.springsource.org

Sorry for posting it here if it does not belong, cant find appropriate forum for that. My PM is asking for Code Obfuscation to stop reverse engineering. If I obfuscate my ...

12. obfuscating spring-beans.xml    forum.springsource.org

I am interested in obfuscating our application software; with spring, much of the internal structure of the application is contained in the spring-beans.xml. I would like to modify the classes that ...

13. Obfuscating a spring application    forum.springsource.org

Hi, Im developement a web application and wanna hide or obfuscate the spring configuration files. So the user can not modify them. Is there a way to perform this task ? ...