SafeOrbit 0.4.0
dotnet add package SafeOrbit --version 0.4.0
NuGet\Install-Package SafeOrbit -Version 0.4.0
<PackageReference Include="SafeOrbit" Version="0.4.0" />
paket add SafeOrbit --version 0.4.0
#r "nuget: SafeOrbit, 0.4.0"
// Install SafeOrbit as a Cake Addin #addin nuget:?package=SafeOrbit&version=0.4.0 // Install SafeOrbit as a Cake Tool #tool nuget:?package=SafeOrbit&version=0.4.0
SafeOrbit - Protect your memory in .NET 🛡️
What
SafeOrbit is an advanced memory protection library with easy to use classes.
- Protects your strings in memory while allowing you to securely compare & modify them with SafeString.
- Protects your binary data with SafeBytes.
- Anti injection module safeguards your application against memory injections and timing attacks using SafeObject, SafeContainer (injection aware DI container) and more.
- Leverages high performance and secure algorithms for encryption, hashing and random in interfaces that makes it much hard to screw up.
Why
- You want to secure strings in memory and modify & compare them without revealing them in memory.
- You want to take advantage of security best-practices without having any cryptology knowledge.
- You want to use high-performance algorithms in .NET such as
Murmur32
hashing andBlowfish
encryption. - You do not trust OS generated crypto randoms and want direct access to entropy hashes or non-OS PNRG seeded by them.
Contribute
Feel free to contribute by joining the coding process or opening issues. Read more on wiki.
License
This project is MIT Licensed. It means that you're free to use SafeOrbit freely in any application, copy, and modify its code.
It must not be required to be secret, and it must be able to fall into the hands of the enemy without inconvenience. -Auguste Kerckhoffs
Quick Documentation
Visit wiki for full documentation
Memory security
SafeString
SafeString
represents an encrypted string that guarantees to not leak your data in the memory while allowing modifications and comparisons.- It has more advantages over
System.Security.SecureString
because of the security design of the SafeOrbit.
SafeBytes
SafeBytes
is protected sequence of bytes in memory.- It's a lower level module used by
SafeString
. - You can hide any data from the memory, then modify and compare them safely without revealing the bytes.
Detect injections
- You can detect injections for any of your
.NET
class including their- the state (data in the memory)
- code that's loaded in memory
- Internal protection for
SafeOrbit
library be enabled as default.- You can disable it to gain more performance by changing SafeOrbit's security settings.
SafeObject
An object that can detect memory injections to itself.
var safeObject = new SafeObject<Customer>();
// Each change to the object's state or code must be using ApplyChanges
safeObject.ApplyChanges((customer) => customer.SensitiveInfo = "I'm protected!");
// Retrieve safe data
var safeInfo = safeObject.Object.SensitiveInfo; // returns "I'm protected!" or alerts if any injection is detected
SafeContainer
SafeContainer
is a dependency container that detects and notifies injections to its instances.- It's security mode can be changed dynamically.
InjectionDetector
- A service that's consumed by
SafeContainer
andSafeObject
. - Lowest level of the injection detection and alerting mechanism.
Cryptography
Encryption
Supported:
- Asynchronous encryption using cryptostreams.
ISafeEncryptor
a.k.a. AES-256- Considered as one of the strongest encryption algorithms.
- Easy-to-use interface using best-practices such as PBKDF2 key derivation, random IV, salt and PKCS7 padding.
IFastEncryptor
a.k.a. Blowfish- Considered as one of the fastest encryption algorithms.
- ECB & CBC (with IV) implementation that passes the vector tests.
Hashers
Supported :
ISafeHasher
a.k.a. SHA512 for higher security.IFastHasher
a.k.a. MurmurHash (Murmur32) for better performance, it should be seeded and salted.
Random
What if your OS crypto random has in any way been undermined (for example, by a nefarious government agency, or simple incompetence)?
SafeOrbit
guarantees not to reduce the strength of your crypto random. It has the ability to improve the strength of your crypto random:
SafeRandom
combines different entropy sourcesFastRandom
is a simple wrapper around a PRNG, which usesSafeRandom
for seed material.
Speed up
For better performance, it's highly recommended to start the application early in your application start with
SafeOrbitCore.Current.StartEarlyAsync();
.Memory injection is enabled as default.
- It provides self security on client side applications, but on a protected server disabling the memory injection for more performance is recommended. Read more on wiki.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.6 is compatible. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 1.6
- NETStandard.Library (>= 1.6.1)
- System.ComponentModel (>= 4.3.0)
- System.Reflection.Metadata (>= 1.4.2)
- System.Reflection.TypeExtensions (>= 4.5.1)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
- System.Security.Cryptography.Algorithms (>= 4.3.1)
- System.Security.Cryptography.ProtectedData (>= 4.3.0)
- System.Threading.Tasks.Parallel (>= 4.3.0)
- System.Threading.Thread (>= 4.3.0)
- System.Threading.ThreadPool (>= 4.3.0)
- System.Xml.ReaderWriter (>= 4.3.1)
-
.NETStandard 2.0
- System.ComponentModel (>= 4.3.0)
- System.Reflection.Metadata (>= 1.8.0)
- System.Reflection.TypeExtensions (>= 4.7.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
- System.Security.Cryptography.Algorithms (>= 4.3.1)
- System.Security.Cryptography.ProtectedData (>= 4.7.0)
- System.Security.Permissions (>= 4.7.0)
- System.Threading.Tasks.Parallel (>= 4.3.0)
- System.Threading.Thread (>= 4.3.0)
- System.Threading.ThreadPool (>= 4.3.0)
- System.Xml.ReaderWriter (>= 4.3.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.