obfuscation

Is there a free tool capable of pruning unused code from a CLI assembly? [closed]

瘦欲@ 提交于 2019-12-21 12:24:08
问题 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 . Is there a free tool capable of pruning unused code from a CLI assembly? I know there are obfuscators that are capable of performing this optimization, but these all cost money. Is there a free (or even open source) tool that removes the unused code in an already compiled assembly? 回答1: There is. It's called the

Proprietary Haskell Library

夙愿已清 提交于 2019-12-21 05:17:08
问题 I am somewhat new to Haskell, been using it for a few months now for side projects. I'd like to write a Haskell interface to a C library. All code will be proprietary, not open source. So my question is, what if I end up distributing this to a customer and don't want to provide the source code, but rather something like a shared library. In C I can build the code for the target platform and provide header files. Can I do something similar in Haskell? 来源: https://stackoverflow.com/questions

How to obfuscate lua code?

别来无恙 提交于 2019-12-21 05:12:09
问题 I can't find anything on Google for some tool that encrypts/obfuscates my lua files, so I decided to ask here. Maybe some professional knows how to do it? (For free). I have made a simple game in lua now and I don't want people to see the code, otherwise they can easily cheat. How can I make the whole text inside the .lua file to just random letters and stuff? I used to program in C# and I had this .NET obfuscator called SmartAssembly which works pretty good. When someone would try check the

How to obfuscate lua code?

一个人想着一个人 提交于 2019-12-21 05:12:04
问题 I can't find anything on Google for some tool that encrypts/obfuscates my lua files, so I decided to ask here. Maybe some professional knows how to do it? (For free). I have made a simple game in lua now and I don't want people to see the code, otherwise they can easily cheat. How can I make the whole text inside the .lua file to just random letters and stuff? I used to program in C# and I had this .NET obfuscator called SmartAssembly which works pretty good. When someone would try check the

How to not obfuscate interface methods & its parameters using Proguard in Android?

我只是一个虾纸丫 提交于 2019-12-21 03:32:36
问题 I have the following code: public class MyClass { public void method1(Integer marks) { } private String method3(String name){ } public interface interface1 { void method4(Integer ID); void method5(Integer rate, boolean status); } } I have used progaurd-rules.pro -keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod -keepparameternames -keep public class * -keepclassmembers public class *{ public *; } -keep public interface

obfuscate or encrypt some plain text data in PHP

喜欢而已 提交于 2019-12-20 18:13:07
问题 I need to obfuscate or encrypt some plain text data in my php 5.2 application. I'd prefer a solution that would have input string and output string retain the same length. This does not need to extremely strong, as there are numerous other layers of security in place. Strong would be good, but this will just keep programmers/dba/support people/etc from accidentally reading the text from within the database. key considerations EDIT ADD I'd prefer a solution that would have input string and

obfuscate or encrypt some plain text data in PHP

 ̄綄美尐妖づ 提交于 2019-12-20 18:13:04
问题 I need to obfuscate or encrypt some plain text data in my php 5.2 application. I'd prefer a solution that would have input string and output string retain the same length. This does not need to extremely strong, as there are numerous other layers of security in place. Strong would be good, but this will just keep programmers/dba/support people/etc from accidentally reading the text from within the database. key considerations EDIT ADD I'd prefer a solution that would have input string and

How to stop proguard from obfuscating entire package?

一曲冷凌霜 提交于 2019-12-20 17:34:06
问题 I need to prevent Proguard from obfuscating any classes from the package com.foo.* . I have tried: -keep com.foo.** { <fields>; <methods>; <constructors>; } But proguard says : Error: Unexpected keyword 'com.sun.foo.**' in line 32 of file 'obfuscationConfig.pro', included from argument number 1 I get a similar error if I try keep name com.foo** or keep * com.foo.** . 回答1: Try to use the following: -keep class com.foo.** { public protected private *; } 来源: https://stackoverflow.com/questions

Interview Hello World explanation

房东的猫 提交于 2019-12-20 08:12:45
问题 This classic ioccc entry is a Hello World program written in C. Can anyone please provide an explanation of how it works? Original code (syntax highlighting intentionally missing): int i;main(){for(;i["]<i;++i){--i;}"];read('-'-'-',i+++"hell\ o, world!\n",'/'/'/'));}read(j,i,p){write(j/p+p,i---j,i/i);} Slightly cleaner: int i; main() { for ( ; i["]<i;++i){--i;}"]; read('-' - '-', i++ + "hello, world!\n", '/' / '/')); } read(j, i, p) { write(j / p + p, i-- - j, i / i); } 回答1: for loop

Interview Hello World explanation

倾然丶 夕夏残阳落幕 提交于 2019-12-20 08:11:20
问题 This classic ioccc entry is a Hello World program written in C. Can anyone please provide an explanation of how it works? Original code (syntax highlighting intentionally missing): int i;main(){for(;i["]<i;++i){--i;}"];read('-'-'-',i+++"hell\ o, world!\n",'/'/'/'));}read(j,i,p){write(j/p+p,i---j,i/i);} Slightly cleaner: int i; main() { for ( ; i["]<i;++i){--i;}"]; read('-' - '-', i++ + "hello, world!\n", '/' / '/')); } read(j, i, p) { write(j / p + p, i-- - j, i / i); } 回答1: for loop