protection

How to protect drawable resource in Android application

荒凉一梦 提交于 2019-12-06 02:40:55
问题 Please tell me how to protect our resource in a apk package. With a simple rename-extract process, any one can copy and thief application drawable resource like images or soundFX files. My question is, is there any way to protect drawable resource in a Android application? 回答1: The drawable needs to be accessible to the operating system, so it has to be readable. If you really want to keep it secure, you could consider storing it encrypted as a raw asset, then load it, decrypt it into a

Dealing with SMS Spoofing

≯℡__Kan透↙ 提交于 2019-12-05 22:05:17
I'm working on a web service that would use an SMS gateway to receive instructions from customers. Since this would be a commercial product I would like to implement a safeguard to protect our system from SMS spoofs. I don't want people impersonating others by spoofing their number. I've noticed that Twitter allows people to tweet through text messages, how can they make sure that messages are actually genuine? Is this possible, and if so how do I accomplish this? Or should I ignore this and just deal with it through support should they get through. How do users spoof their numbers? Every

How to protect Mac OS X software from cracking?

女生的网名这么多〃 提交于 2019-12-05 02:36:52
问题 We're releasing a Mac version of our Windows application. Under Windows, there are several tools for executable protection, for example Armadillo, ExeCryptor, AsProtect etc, however, none of these has a Mac version. So, my question is: Are there any executable protection / encryption tools for Mac OS X? 回答1: It is my personal view and most other OS X developer's view that you should make it reasonably hard to steal your software but there is a point that it's simply not worth the effort. The

Securing WinForms Application suggestions [closed]

人盡茶涼 提交于 2019-12-04 17:08:44
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I've been looking for a simple key/license system for our users. Its partly to stop piracy (avoid users from sharing the application around) and the other half to track the number of 'licensed users' we have. I have already read a few good suggestions on SO but I'm curious as to how people have implemented the 30 day evaluation criteria. Do you generate a key that stores the date somewhere and do a comparison

preventing direct download of SQLite file using .htaccess

夙愿已清 提交于 2019-12-04 14:52:52
I know the basics of .htaccess, but freely admit to being a non-expert when it comes to mod_rewrite. The problem: I have a sqlite db file in the document root (no, I can't move it out of here) called data.sqlite . This file is accessed internally by PHP files, however, I want to protect this file from being 'downloaded' by the user typing the db URL directly into their browser. I have used .htaccess to create pretty URLs in the past, and thought using mod_rewrite would provide a nice solution to my problem. However, my rewrite rule does not seem to prevent access. .htaccess Options

Where to Store the Protection Trial Info for Software Protection Purpose

我们两清 提交于 2019-12-04 10:11:42
问题 It might be duplicate with other questions, but I swear that I googled a lot and search at StackOverflow.com a lot, and I cannot find the answer to my question: In a C#.Net application, where to store the protection trial info, such as Expiration Date, Number of Used Times? I understand that, all kinds of Software Protection strategies can be cracked by a sophiscated hacker (because they can almost always get around the expiration checking step). But what I'm now going to do is just to

Software protection for small vendors

时光怂恿深爱的人放手 提交于 2019-12-04 07:44:15
问题 This is a problem we all have to consider at some point. After many years and many approaches I tend to agree in general with the staterment: "For any protected software used by more than a few hundred people, you can find a cracked version. So far, every protection scheme can be tampered with." Does your employer enforce the use of anti-piracy software? Further, every time I post about this subject, some one will remind me; "First of all, no matter what kind of protection you'll employ,a

Protect Excel Worksheet For Read Only But Enable External Data Refresh

别来无恙 提交于 2019-12-04 07:19:19
I have an Excel 2010 workbook. One worksheet imports data from an external data connection (SQL query). I have also added additional columns to the worksheet to perform calculations on the data and to massage it a bit. The worksheet forms the backbone of the raw data used in the other worksheets. I'd like to protect the worksheet to make it read-only (allowing sort, filter, pivot table usage). I know how to do this with the protect worksheet feature. But when the worksheet is protected, I can't use the Refresh button to refresh the data from the source and I want users to be able to do this. I

How to protect drawable resource in Android application

ぐ巨炮叔叔 提交于 2019-12-04 06:25:51
Please tell me how to protect our resource in a apk package. With a simple rename-extract process, any one can copy and thief application drawable resource like images or soundFX files. My question is, is there any way to protect drawable resource in a Android application? The drawable needs to be accessible to the operating system, so it has to be readable. If you really want to keep it secure, you could consider storing it encrypted as a raw asset, then load it, decrypt it into a ByteStream and pass it into the BitmapFactory. That, of course, has slight performance ramifications and will

To protect the apk

瘦欲@ 提交于 2019-12-04 05:58:56
问题 I have developed one application and created the apk.Now I want to avoid the piracy of that application means if I have installed the apk on my device and if i am trying to install same apk on another device then it should not be get installed on another device. Is there any way to do it ? 回答1: well what you are looking for is personalized APK, means for each device you have to build once APK and in that you need to put logic that the APK can be installed on only one device; So to do that you