Skip to content

Commit 6b19a09

Browse files
authored
Merge pull request #24 from sunnamed434/dev
Pre-releasing BitMono
2 parents 6554a10 + fec3d8a commit 6b19a09

4 files changed

Lines changed: 19 additions & 12 deletions

File tree

BitMono/BitMono.Host/appsettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"NoInliningMethodObfuscationExcluding": true,
77

88
// Excluding from obfuscation if it is a type/method and etc
9-
// should has an [Obfuscation(Feature = "Name", Exclude = true)] attribute with Protection name (Feature) and Excluding set to true
9+
// should has an [Obfuscation(Feature = "Name")] attribute with Protection name (Feature)
1010
"ObfuscationAttributeObfuscationExcluding": true,
1111

1212
// Sometimes when you don`t have needed dependency for your app, a tons of reasons could be for that,
@@ -21,7 +21,7 @@
2121
},
2222
"Tips": [
2323
"[Tip]: Mark your method with attribute [MethodImpl(MethodImplOptions.NoInlining)] to ignore obfuscation of your method!",
24-
"[Tip]: Mark your Type or method with attribute [Obfuscation(Feature = , Exclude = true)] to ignore obfuscation!",
24+
"[Tip]: Mark your Type or method with attribute [Obfuscation(Feature = name,)] to ignore obfuscation!",
2525
"[Tip]: Open config.json and set Watermark to 'false', to disable watermarking of your file!",
2626
"[Tip]: Drop your libraries in 'Base' directory!"
2727
]

BitMono/BitMono.Host/protections.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,39 +10,39 @@
1010
},
1111
{
1212
"Name": "ObjectReturnType",
13-
"Enabled": true
13+
"Enabled": false
1414
},
1515
{
1616
"Name": "BitMethodDotnet",
17-
"Enabled": true
17+
"Enabled": false
1818
},
1919
{
2020
"Name": "FullRenamer",
21-
"Enabled": true
21+
"Enabled": false
2222
},
2323
{
2424
"Name": "AntiDebugBreakpoints",
25-
"Enabled": true
25+
"Enabled": false
2626
},
2727
{
2828
"Name": "StringsEncryption",
29-
"Enabled": true
29+
"Enabled": false
3030
},
3131
{
3232
"Name": "FieldsHiding",
33-
"Enabled": true
33+
"Enabled": false
3434
},
3535
{
3636
"Name": "DotNetHook",
37-
"Enabled": true
37+
"Enabled": false
3838
},
3939
{
4040
"Name": "CallToCalli",
41-
"Enabled": true
41+
"Enabled": false
4242
},
4343
{
4444
"Name": "BitDotNet",
45-
"Enabled": false
45+
"Enabled": true
4646
}
4747
]
4848
}

BitMono/BitMono.Protections/DotNetHook.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using BitMono.API.Protecting.Renaming;
66
using BitMono.API.Protecting.Resolvers;
77
using BitMono.ExternalComponents;
8-
using BitMono.Utilities.Extensions.dnlib;
98
using dnlib.DotNet;
109
using dnlib.DotNet.Emit;
1110
using dnlib.DotNet.Writer;

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
| Versions: |
2+
| - |
3+
| [v0.1.0](#v010) |
4+
5+
---
6+
7+
### v0.1.0:
8+
* Pre-Release of BitMono.

0 commit comments

Comments
 (0)