source-code-protection

How do you extract classes' source code from a dll file?

余生颓废 提交于 2019-12-17 23:15:59
问题 Is there any software to do this? I didn't find any useful information on the internet so I am asking here. 回答1: You cannot get the exact code, but you can get a decompiled version of it. The most popular (and best) tool is Reflector, but there are also other .Net decompilers (such as Dis#). You can also decompile the IL using ILDASM, which comes bundled with the .Net Framework SDK Tools. 回答2: Only managed Languages like c# and Java can be decompiled completely.You can view complete source

Why are browsers allowed to display client-side source code?

霸气de小男生 提交于 2019-12-11 13:13:33
问题 Why are browsers allowed to display source code for HTML/CSS/JavaScript files? I've been told that obfuscation is not the ultimate answer to provide protection. So once the code is sent to the client-side, anyone can steal the front-end data? Can't all popular browsers provide a password mechanism so that unauthorized users can't see the source code? Companies invest a lot of time, money, and other resources in developing professional sites, yet it seems there is a lot of business out there

Inishtech / Software Potential Code Protector integration with Visual Studio build or Setup project

北城余情 提交于 2019-12-11 13:13:32
问题 Have anyone tried InishTech Software Potential Code Protector ? Can we integrate this with our build programmatically? I found tutorials but those were to do with the help of the Code Protector standalone GUI. What I want to know is do they have an SDK so that we can integrate with our code or some perfect tutorial which can opt-out dependencies from our setup. 回答1: UPDATE: There's been a Getting Started guide that covers code Protection added since I wrote the answer. (Exec summary: You add

setContentView shows number; how can I find layout after decompile code?

南楼画角 提交于 2019-12-11 09:43:57
问题 I have decompiled an apk code by using apktool. The code which I got contains setContentView(2130903087); My question is how can I find the layout name from this line. 回答1: At first convert this decimal number into hexadecimal. Then,after decompile the dex file, you will get R.java file inside your decompiled code. In that search for the hexadecimal number, you will get the layout file. 回答2: Apktool uses smali to disassemble applications. The code line you wrote was not produced by apktool.

Protecting source code from theft during development [closed]

六月ゝ 毕业季﹏ 提交于 2019-12-10 14:04:09
问题 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 7 years ago . Is there any way to protect my code during development so that if a developer leaves my company they are unable to access files in my project? This is especially important with TFS where the project is downloaded locally, cached, and available for offline use. Ideally the code would be unreadable if they did not

build a standalone application from Matlab code

↘锁芯ラ 提交于 2019-12-10 08:59:19
问题 I have some Matlab code and a GUI for it and I want to make a standalone app to Protect my Source Code. How can I build this standalone? Thank you for any guide. ================================================================================ I found in help: If you do not want to distribute your proprietary application code in this format, you can use one of these more secure options instead: • Deploy as P-code — Convert some or all of your source code files to a content-obscured form called

Protecting Ruby Code

安稳与你 提交于 2019-12-06 07:55:26
I'm developing a commercial project on an ARM based embedded board with a custom Linux kernel on it, using Ruby. Target workspace of the project and the device is a closed-environment, no ethernet, inernet, I/O devices etc... I want to protect my code/program so that; it'll only work on the specific machines I let (so; people cant just copy and paste my code/program on to their embedded boards and run it w/o permission). This can probably done with the machine's MAC address tho; I don't have any experience on the subject. I guess, just a simple if(device.MACAddr == "XX:XX....XX") wouldn't be

build a standalone application from Matlab code

孤者浪人 提交于 2019-12-05 16:39:06
I have some Matlab code and a GUI for it and I want to make a standalone app to Protect my Source Code. How can I build this standalone? Thank you for any guide. ================================================================================ I found in help: If you do not want to distribute your proprietary application code in this format, you can use one of these more secure options instead: • Deploy as P-code — Convert some or all of your source code files to a content-obscured form called a P-code file (from its .p file extension), and distribute your application code in this format. •

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

半世苍凉 提交于 2019-12-04 06:27:20
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? keparo Obfuscation: Try YUI Compressor . It's a very popular tool, built, enhanced and maintained by the Yahoo UI team. You may also use: Google Closure Compiler UglifyJS Private String Data: Keeping string values private is a different concern, and obfuscation won't really be of much benefit. Of course, by packaging up your source into a garbled, minified mess, you have a light version of security through obscurity . Most of the time, it's your user who

Obfuscating string values in PHP source code

落爺英雄遲暮 提交于 2019-12-04 05:02:55
问题 I want to protect PHP source code at easy way. here is a example. $a = "\x46\122" . chr(578813952>>23) . "" . chr(0105) . "\x2d"; $b = "\x73" . chr(847249408>>23) . "" . chr(0162) . "\x69" . chr(0141) . "" . chr(905969664>>23) . ""; $c = "" . chr(0x53) . "" . chr(0105) . "\x52\x56" . chr(0105) . "\x52" . chr(796917760>>23) . "\x4e" . chr(545259520>>23) . "\x4d" . chr(0x45) . ""; it is. $a="FREE-"; $b="serial"; $c="SERVER_NAME"; Please help me someone to convert this type of string ?? There is