All Projects → Zaczero → SharpLoader

Zaczero / SharpLoader

Licence: GPL-3.0 License
🔮 [C#] Source code randomizer and compiler

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to SharpLoader

Enigma
Gradle Plugin - Obfuscator String Encryption (Android/Java)
Stars: ✭ 43 (+19.44%)
Mutual labels:  encryption, obfuscator, encrypt
Skater .net Obfuscator
Skater .NET Obfuscator is an obfuscation tool for .NET code protection. It implements all known software protection techniques and obfuscation algorithms.
Stars: ✭ 64 (+77.78%)
Mutual labels:  code, obfuscator, source-code
jRand
A Java library to generate random data for all sorts of things. Java random data faker
Stars: ✭ 27 (-25%)
Mutual labels:  random, randomization
awesome-randomizers
🎲 A curated list of awesome services for obtaining random results.
Stars: ✭ 36 (+0%)
Mutual labels:  random, randomizer
DPB
Dynamic Project Builder
Stars: ✭ 22 (-38.89%)
Mutual labels:  code, project
jsrand
A seeded pseudo-random number generator for JavaScript.
Stars: ✭ 19 (-47.22%)
Mutual labels:  random, seed
easy reader
⏮ ⏯ ⏭ A Rust library for easily navigating forward, backward or randomly through the lines of huge files.
Stars: ✭ 83 (+130.56%)
Mutual labels:  random, lines
gogen
Command-line tool to generate GO applications and libraries
Stars: ✭ 17 (-52.78%)
Mutual labels:  code, project
Obfuscator Class
👨‍💻 Simple and effective Obfuscator PHP class (this is not a stupid base64 encoding script, but a real and effective obfuscation script)
Stars: ✭ 202 (+461.11%)
Mutual labels:  encryption, obfuscator
strgen
A Python module for a template language that generates randomized data
Stars: ✭ 34 (-5.56%)
Mutual labels:  random, randomizer
js-confuser
JS-Confuser is a JavaScript obfuscation tool to make your programs *impossible* to read.
Stars: ✭ 38 (+5.56%)
Mutual labels:  code, obfuscator
fastfaker
Fast, concurrent fake data generator for any structure or type.
Stars: ✭ 21 (-41.67%)
Mutual labels:  random, randomizer
objc-runtime-CN
Objective-C Runtime Analysis (Objective-C运行时分析)
Stars: ✭ 28 (-22.22%)
Mutual labels:  runtime, source-code
Laravel Database Encryption
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Stars: ✭ 238 (+561.11%)
Mutual labels:  encryption, encrypt
linec
🍬一个高颜值命令行统计代码行数的计数器。(counts lines of code)
Stars: ✭ 121 (+236.11%)
Mutual labels:  code, lines
Jsrsasign
The 'jsrsasign' (RSA-Sign JavaScript Library) is an opensource free cryptography library supporting RSA/RSAPSS/ECDSA/DSA signing/validation, ASN.1, PKCS#1/5/8 private/public key, X.509 certificate, CRL, OCSP, CMS SignedData, TimeStamp, CAdES JSON Web Signature/Token in pure JavaScript.
Stars: ✭ 2,760 (+7566.67%)
Mutual labels:  encryption, signature
Lua-Obfuscator
Obfuscate your lua code because it's so easy to steal!
Stars: ✭ 69 (+91.67%)
Mutual labels:  code, obfuscator
Seedshift
Plausibly deniable steganographic encryption of BIP-39 mnemonic seed words with a date shift cipher
Stars: ✭ 21 (-41.67%)
Mutual labels:  encryption, encrypt
Laravel Source Encrypter
Laravel and Lumen Source Code Encrypter
Stars: ✭ 175 (+386.11%)
Mutual labels:  encryption, encrypt
Easyrsa
Simple and Secure Wrapper for phpseclib
Stars: ✭ 183 (+408.33%)
Mutual labels:  encryption, signature

User guide

What is SharpLoader?

SharpLoader is a program that opens source code files (c#), randomizes them and compiles to an .exe assembly.
This process reults a random file signature every time.

How to compile a SharpLoader project?

If everything is set up properly all you have to do is run SharpLoader.exe, select project .zip and click compile.

What is seed?

Seed is a unique randomization output.
Value is random by default but it's possible to set it manually.

How to set custom seed value?

Use -seed argument. SharpLoader.exe -seed 123

How to run SharpLoader in cmd?

Use -cmd argument. SharpLoader.exe -cmd

Developer guide

How to prepare source code files?

Currently there are available 8 randomization features (that are listed below).
Simply add proper tags to your source code.

//-<swap>
int a = 0;
int b = 0;
int c = 0;
//-<swap/>

TIP: You can use <tag> or //-<tag> if you prefer comments

Features:

1. Swap

//-<swap>
int a = 0;
int b = 0;
int c = 0;
//-<swap/>
//-<swap>
if (a == 0)
{ }
//-<block>
if (b == 0)
{ }
//-<swap/>

2. Trash

Adds from 1 to 6 lines of trash.

int a = 0;
//-<trash>
int b = 0;

2.1. Trash +1 argument

Adds from 1 to X lines of trash.

int a = 0;
//-<trash 5>
int b = 0;

2.2. Trash +2 arguments

Adds from X to Y lines of trash.

int a = 0;
//-<trash 4 12>
int b = 0;

3. Flow

Generates random code flow.

//-<flow>
int a = 0;
int b = 0;
int c = 0;
//-<flow/>
//-<flow>
if (a == 0)
{ }
//-<block>
if (b == 0)
{ }
//-<flow/>

4. Seed

Gets replaced with compilation seed value.

int seed = <seed>;

5. Random

Generates random int value.

int a = <rnd>;

5.1. Random +1 argument

Generates random int value from 0 to X.

int a = <rnd 25>;

5.2. Random +2 arguments

Generates random int value from X to Y.

int a = <rnd 100 200>;

6. Random String

Generates random string with 8-16 length.

string a = <rnds>;

6.1. Random String +1 argument

Generates random string with 1-X length.

string a = <rnds 25>;

6.2. Random String +2 arguments

Generates random string with X-Y length.

string a = <rnds 100 200>;

7. Encrypt

Encrpypts value.

int a = <enc 58>;
char a = <enc 'C'>;
string a = <enc "Hello World">;

8. Proxy

Generates proxy functions.

//-<proxy>
int a = 0;
int b = 0;
int c = 0;
//-<proxy/>
//-<proxy>
if (a == 0)
{ }
//-<block>
if (b == 0)
{ }
//-<proxy/>

8.1. Proxy +1 argument

Generates proxy functions inside X namespace.

//-<proxy MyNamepsace>
int a = 0;
int b = 0;
int c = 0;
//-<proxy/>
//-<proxy MyNamepsace>
if (a == 0)
{ }
//-<block>
if (b == 0)
{ }
//-<proxy/>

8.2. Proxy +1 argument

Generates proxy variables for X argument.

int a = <proxy 58>;
char a = <proxy 'C'>;
string a = <proxy "Hello World">;

How to configure SharpLoader?

All SharpLoader's configuration is stored in SharpLoader.ini file.
You can generate this file by running SharpLoader in cmd mode.

References

All references that your application use (dlls).
Separated by ';' character.
References=System.dll;System.Windows.Forms.dll

Directory

Main project directory.
Directory=MySources

TIP: Alternatively you can drag'n'drop source files/directories

Output

Compiled assembly name.
Output=MyApplication

Arguments

Compiler arguments (unsafe, prefer 32-bit etc.).
Arguments=/platform:anycpu32bitpreferred

AutoRun

Should assembly be run after successful compilation.
AutoRun=true

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].