protection

How to protect my dll from disassemblers?

你。 提交于 2019-12-25 00:52:15
问题 I am trying to protect my dll from disassemblers. I am using "Eazfuscator.NET Assistant" as dll encryption tool. but after that the Reflector still can read the source code. is it anything i need to do before using Eazfuscator or after? or can anybody can introduce me a free encryption tools which it is can help me to encrypt my source code? Thank you very much. 回答1: You can consider .Net Reactor it works for me. 回答2: You can try code obfuscators. Also you can try to pack your dll with

Excel VBA: Sheet protection not working as desired

一世执手 提交于 2019-12-24 16:17:40
问题 Using VBA I'm trying to disallow insertion and deletion of rows and columns while allowing the user to edit cell contents. I was hoping the following call would do the trick: ActiveSheet.Protect Password:="SomePassword", _ AllowInsertingColumns:=False, AllowInsertingRows:=False, _ AllowDeletingColumns:=False, AllowDeletingRows:=False, Contents:=False But this doesn't work as I expect. I can still insert and delete rows and columns. What am I missing? What's the correct way to achieve the

storing data in another form protection issues

谁都会走 提交于 2019-12-24 15:43:59
问题 I'm trying to store a string from one form to a label on another from. However, when doing so it says it cannot be done because of its protection level. Any ideas on how to fix this? maskedTxtLogin.Text = FormInvisible.lblInitials.Text(); 回答1: The controls are generated as a private field in your form designer: private System.Windows.Forms.Label lblInitials; If you want to access them outside of the form you need to create a property for them. To see the above declaration and write a property

Protect excel file with java

。_饼干妹妹 提交于 2019-12-24 10:46:39
问题 Is there a way to create open protected excel file in Java? I'm looking at JExcelApi and Apache Poi projects but with both of them I cannot figure out how to protect generated xls file. I want to assure that generated file can be opened only by people that know password phrase. 回答1: I would recommend using JACOB (COM->Java bridge), and control Excel via COM automation. This will, of course, require that Excel be installed on the machine in question. 回答2: One trick I've found when using POI is

Best practices for keeping the web server data protected

▼魔方 西西 提交于 2019-12-20 09:42:50
问题 Lets say I run a medical facility and want a website where my users/patients can lookup their private records . What would be the best solution against most-common attacks? Even if I use a private server bought somewhere, and rely on its monitoring services there's a good chance someone could find a security hole and steal my data. End of my business. What are the best practices for such architecture? 回答1: First you need to identify the attacks that you want to try and protect against, and

Quick and easy flood protection?

不问归期 提交于 2019-12-18 11:55:53
问题 I have a site where a user submits a message using AJAX to a file called like.php . In this file the users message is submitted to a database and it then sends a link back to the user. In my Javascript code I disabled the text box the user types into when they submit the AJAX request. The only problem is, a malicious user can just constantly send POST requests to like.php and flood my database. So I would like to implement simple flood protection. I don't really want the hassle of another

How to encrypt HTML source code? [duplicate]

和自甴很熟 提交于 2019-12-18 08:49:29
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How to encrypt HTML source code output using PHP I built my static website and I am finished now how to encrypt my source code? Can I hide HTML source code of my page so that nobody can see it? I have used jquery, iframes, CSS and HTML. I want protect my website from injection. 回答1: This article covers a number of techniques including: Source Code Padding No Right Click Scripts "JavaScript Encryption" HTML

How to protect a Jar file from being decompiled? [duplicate]

怎甘沉沦 提交于 2019-12-17 19:39:02
问题 This question already has answers here : What can done to secure jar files besides obfuscation? (3 answers) Closed 4 years ago . I'm developing an application using java but I'm not going to release the code. The problem is, I tested one of these jar de-compilers and it was able to get the code from my jar file almost perfectly! My question is how can I distribute my jar file without my code being extracted from it? 回答1: As Java preserves most of the "metadata" during compilation (which

Making commercial Java software (DRM)

守給你的承諾、 提交于 2019-12-17 10:32:54
问题 I intend to make some software to be sold over internet. I've only created open-source before, so I have really no idea of how to protect it from being cracked and distributed as warez. Bearing in mind that I know like two programms that aren't either cracked or not really useful I decided that the only more or less reliable way may look like this: Connect to a server and provide licensing info and some sort of hardware summary info If everything is fine, the server returns some crucial

How to protect “master” in github?

久未见 提交于 2019-12-17 07:17:08
问题 I have a few contributors in my github project. I want to allow only one of them to "push" to master. And this guy is not me (the owner of the repository). Is it possible to do? 回答1: Back then, when this question was posted, GitHub didn't allow you to specify access privileges on a branch level. You can only do it on a repository level. So what you are requesting wasn't possible. If you want to work around this limitation, I personally see two options: you could use some kind of commit hooks,