obfuscation

Obfuscated code throws error in a Greasemonkey Script

♀尐吖头ヾ 提交于 2020-01-25 00:00:27
问题 I have a Greasemonkey script that I want to be obfuscated. I was wondering what goes wrong with the available "Packer" Javascript obfuscator. It compresses the script fine but after installation, the script doesn't work. Is there any PHP Class that would obfuscate/pack GM scripts and retain functionality? Or how do I go about doing this? Error: Timestamp: 01-05-2013 13:11:35 Error: missing ; before statement Source File: file://file_path Line: 1 Script: // ==UserScript== // @name Test //

com.apple.eawt.Application not working after obfuscation

半腔热情 提交于 2020-01-24 18:03:53
问题 I have written an application in Java for both Mac OSx and Windows, but I've developed it on Windows. Therefore I used java.lang.reflect.* in order to implement the 'About' and 'Quit' handler without receiving exceptions. I've exported it as an Executable Jar and everything works fine on both operating systems. However, I want to obfuscate the application and I'm using ProGaurd to do so. I've specified the necessary libraries for it to work on Windows (rt.jar, jsse.jar, jce.jar) and it still

how to proguard with spring-boot gradle plugin

余生长醉 提交于 2020-01-22 20:10:13
问题 How to setup proguard obfuscation with spring boot 2 and gradle build? Hello. Trying to setup code obfuscation of Spring Boot app with its gradle plugin and Proguard gradle plugin. Google mostly gives some approaches for older spring-boot-gradle-plugin version (i.e. this closest one using non-existing bootRepackage task), or using maven plugin (having repackage goal). Idea is to obfuscate classes before jar packaging, as I understand, but I don't see any entry points in current gradle plugin

Storing API keys in Android, is obfustication enough?

為{幸葍}努か 提交于 2020-01-22 18:47:09
问题 I'm using the Dropbox API. In the sample app, it includes these lines: // Replace this with your consumer key and secret assigned by Dropbox. // Note that this is a really insecure way to do this, and you shouldn't // ship code which contains your key & secret in such an obvious way. // Obfuscation is good. final static private String CONSUMER_KEY = "PUT_YOUR_CONSUMER_KEY_HERE"; final static private String CONSUMER_SECRET = "PUT_YOUR_CONSUMER_SECRET_HERE"; I'm well aware of the mantra

Storing API keys in Android, is obfustication enough?

廉价感情. 提交于 2020-01-22 18:46:07
问题 I'm using the Dropbox API. In the sample app, it includes these lines: // Replace this with your consumer key and secret assigned by Dropbox. // Note that this is a really insecure way to do this, and you shouldn't // ship code which contains your key & secret in such an obvious way. // Obfuscation is good. final static private String CONSUMER_KEY = "PUT_YOUR_CONSUMER_KEY_HERE"; final static private String CONSUMER_SECRET = "PUT_YOUR_CONSUMER_SECRET_HERE"; I'm well aware of the mantra

Protect C++ program against decompiling [duplicate]

倖福魔咒の 提交于 2020-01-21 08:31:28
问题 This question already has an answer here : Closed 7 years ago . Possible Duplicate: Is it possible to decompile C++ Builder exe? Is C++ Builder exe safe? I use Microsoft Visual C++ 2010 Express to write my programs. When i want to distribute my program I compile it with 'Release' configuration and also I set the linker to not add debug information. So my question is, Is my executable safe or anyone can decompile it and see the source code? If it is unsafe, how can I prevent it from being

Obfuscate/Encrypt SharedPreferences file possible?

流过昼夜 提交于 2020-01-14 13:51:49
问题 So, I'm interested in obfuscating the SharedPreferences xml file of my app, much like Android LVL does to obfuscate it's license cahce data. Would this be conceivable? Plenty of google-digging has yielded little results that might address my question. And I'm certainly no cryptologist. What about other forms of encryption? My end goal isn't to try making the xml bulletproof, I just want to block out the lower 90% of people who would refrain from messing around with it if it's not in plain

Obfuscate/Encrypt SharedPreferences file possible?

白昼怎懂夜的黑 提交于 2020-01-14 13:51:09
问题 So, I'm interested in obfuscating the SharedPreferences xml file of my app, much like Android LVL does to obfuscate it's license cahce data. Would this be conceivable? Plenty of google-digging has yielded little results that might address my question. And I'm certainly no cryptologist. What about other forms of encryption? My end goal isn't to try making the xml bulletproof, I just want to block out the lower 90% of people who would refrain from messing around with it if it's not in plain

How to obfuscate a java based project [closed]

我怕爱的太早我们不能终老 提交于 2020-01-13 19:52:10
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 7 months ago . I have created a java based project using Netbeans as an IDE. Now I want to obfuscate my project. How can this be done? 回答1: You need to use a source obfuscator. I have used Zelix Klassmaster in the past and it is pretty good. 回答2: I have used RetroGuard and i was really happy

How to secure an API written in .Net

对着背影说爱祢 提交于 2020-01-11 10:48:33
问题 This is a variation on an existing question in SO about securing/obfuscating .Net applications in general. I'm developing an API in C# that includes some algorithms I'm keen to protect. I understand no method will be perfect, but what's the generally accepted method for doing this? I'd like my clients to be able to code against the API but I don't want them to reverse engineer what's inside (at least I don't want to make it easy for them). If I obfuscate the code, won't that also obfuscate