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.
- 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.
Hit the β star β button
Feel free to contribute by joining the coding process or opening issues. Read more on wiki.
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
Visit wiki for full documentation
SafeString (wiki)
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.
SafeString vs System.Security.SecureString
SecureString | SafeString | |
---|---|---|
Supports multiple encodings | β | β |
Safely character insert | β | β |
Safely character remove | β | β |
Safely equals | β | β |
Safely retrieve | β | β |
Reveal only single char | β | β |
Unlimited characters | β | β |
Timing attack protection | β | β |
SafeBytes (wiki)
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.
- 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 (wiki)
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 (wiki)
SafeContainer
is a dependency container that detects and notifies injections to its instances.- It's security mode can be changed dynamically.
InjectionDetector (wiki)
- A service that's consumed by
SafeContainer
andSafeObject
. - Lowest level of the injection detection and alerting mechanism.
Encryption (wiki)
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 (wiki)
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 (wiki)
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.
-
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.