source-code-protection

Sharing R functionality with multiple users without exposing code [closed]

喜欢而已 提交于 2019-11-26 21:44:29
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I have code that will read in and process data that I would like to allow multiple users to use, but I do not want to allow them to see the code. Is there a way to do this using R or RStudio? 回答1: One option

Free SWF Obfuscator [closed]

醉酒当歌 提交于 2019-11-26 19:44:36
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . Does anybody know of a free flash obfuscator(protector)? All I can find are commercial ones with free trials. I have done numerous

How do you protect code from leaking outside? [duplicate]

本秂侑毒 提交于 2019-11-26 16:54:39
问题 This question already has an answer here: How do you protect your software from illegal distribution? [closed] 25 answers Besides open-sourcing your project and legislation, are there ways to prevent, or at least minimize the damages of code leaking outside your company/group? We obviously can't block Internet access (to prevent emailing the code) because programmer's need their references. We also can't block peripheral devices (USB, Firewire, etc.) The code matters most when it has some

How to protect compiled Java classes?

荒凉一梦 提交于 2019-11-26 15:19:49
问题 I know, many similar questions has been asked here. I am not asking if I can protect my compiled Java class - because obviously you will say 'no you can't'. I am asking what is the best known method of protecting Java classes against de-compiling? If you aware of any research or academic paper in this field please do let me know. Also if you have used some methods or software please share you experience? Any kind of information will be very useful. Thank you. 回答1: First if you're targeting

Obfuscate PHP code [closed]

陌路散爱 提交于 2019-11-26 11:46:26
I create software using PHP. I'm going to sell this software so I need to protect my source code so that nobody can view it. How can I protect my PHP code so that the software still functions the same? I also need to bind the software to a particular, authorized PC. It should not run on any other PC. How can I do that? Should I encrypt using LAN MAC address? Does anyone have any other ideas? SamGoody I put together the following list a ways back - don't know if they are all current, or how many are now free, but you should find something useful here: About: Wikipedia article: PHP Accelerator

How do I protect javascript files?

旧时模样 提交于 2019-11-26 11:45:35
问题 I know it\'s impossible to hide source code but, for example, if I have to link a JavaScript file from my CDN to a web page and I don\'t want the people to know the location and/or content of this script, is this possible? For example, to link a script from a website, we use: <script type=\"text/javascript\" src=\"http://somedomain.com/scriptxyz.js\"> </script> Now, is possible to hide from the user where the script comes from, or hide the script content and still use it on a web page? For

node.js - Code Protection?

半腔热情 提交于 2019-11-26 10:07:20
问题 I want to use node.js in my next project, but my boss does not like that our competitors can read the source code. Is there a way to protect the JavaScript code? 回答1: You could accomplish this with a NativeExtension for node You'd have a boostrap.js file that adds a extension handler for .jse files // register extension require.extensions[".jse"] = function (m) { m.exports = MyNativeExtension.decrypt(fs.readFileSync(m.filename)); }; require("YourCode.jse"); YourCode.jse would be the encrypted

Obfuscate PHP code [closed]

僤鯓⒐⒋嵵緔 提交于 2019-11-26 05:51:43
问题 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 3 years ago . I create software using PHP. I\'m going to sell this software so I need to protect my source code so that nobody can view it. How can I protect my PHP code so that the software still functions the same? I also need to bind the software to a particular, authorized PC. It should not

How can I obfuscate (protect) JavaScript? [closed]

﹥>﹥吖頭↗ 提交于 2019-11-25 21:35:54
问题 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 5 years ago . I want to make a JavaScript application that\'s not open source, and thus I wish to learn how to can obfuscate my JS code? Is this possible? 回答1: Obfuscation: Try YUI Compressor. It's a very popular tool, built, enhanced and maintained by the Yahoo UI team. You may also use: