Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!

cracked.io | Best Forum Around | Free Premium Accounts




 93920

[C#] Orcus-1.9.1 RAT Full Source Code Leaked.

by link3r - 07 April, 2021 - 12:57 AM
This post is by a banned member (ruanjian668) - Unhide
This post is by a banned member (link3r) - Unhide
link3r  
Infinity
73
Posts
3
Threads
4 Years of service
#18
(08 April, 2021 - 11:33 AM)ruanjian668 Wrote: Show More
Great god, hello! I compiled it successfully, but I need a registration code to start it. You can comment out the verification for me and start it directly. thanks for your help.   
Give me an address, I will download, thanks again!


Hello, download again new version
Go to: Orcus.Administration.OrcusActivator.cs
Replace code with this and recompile.  
Create empty license.orcus file in same folder as exe PepeGlad.
Done.
 
Code:
 
using System;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using Orcus.Administration.Core.Utilities;
using Orcus.Administration.Licensing;

namespace Orcus.Administration
{
    public class OrcusActivator
    {
        private const string PublicKey =
            @"<RSAKeyValue><Modulus>0kOe1lvzBhDWD7k2rj9GeMyJt7drGCJByVl++DIX8oTd4eDXpBEsnmXYwheFk9DLPDBZzrq0GiHzaSsCYxcz2vwT+eM4UXMZux+lRx2fvgLv5ga1r+FC+DgF7CkKGZ2AeIGJYgN+cjMn0qBLp83QRJ69tzUDMfaOvA5VDDN5NzM=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>";

        protected OrcusActivator()
        {
            HardwareId = HardwareIdGenerator.HardwareId;
            IsValid = true;
            IsRegistered = true;
        }

        public static bool IsRegistered { get; set; }
        public bool IsValid { get; }
        public string HardwareId { get; }

        private bool ValidateLicense(byte[] signature)
        {
            var dataStr = GeneralizeDataString(HardwareId); // "ERIKAMUSTERMANN"

            var dataBuffer = Encoding.UTF8.GetBytes(dataStr);

            using (var provider = new RSACryptoServiceProvider())
            {
                provider.FromXmlString(PublicKey);
                provider.PersistKeyInCsp = false;

                return provider.VerifyData(dataBuffer, new SHA1CryptoServiceProvider(), signature);
            }
        }

       public static OrcusActivator Parse(string licenseData)
        {
            return new OrcusActivator();
        }

        private static byte[] DecodeDataFromString(string value)
        {
            if (value == null)
                return new byte[0];

            if ((value.Length & 1) != 0)
                throw new FormatException();

            if (string.IsNullOrWhiteSpace(value))
                return new byte[0];

            value = value.ToUpperInvariant();

            byte[] ab = new byte[value.Length >> 1];
            for (int i = 0; i < value.Length; i++)
            {
                int b = value[i];
                b = b - '0' + ((('9' - b) >> 31) & -7);
                ab[i >> 1] |= (byte) (b << 4*((i & 1) ^ 1));
            }
            return ab;
        }
        private static string GeneralizeDataString(string someString)
        {
            return someString.StripWhiteSpace().ToUpperInvariant();
        }
    }
}
This post is by a banned member (ruanjian668) - Unhide
This post is by a banned member (Therealdonx1) - Unhide
This post is by a banned member (ArsiumCoder) - Unhide
This post is by a banned member (PURGANG) - Unhide
PURGANG  
Registered
36
Posts
0
Threads
3 Years of service
#22
Mregarde pas kom sa je skam moi
This post is by a banned member (xZer0x) - Unhide
xZer0x  
Registered
14
Posts
0
Threads
3 Years of service
#23
Amazing share and useful!
This post is by a banned member (black_hole) - Unhide
5
Posts
0
Threads
3 Years of service
#24
thank you Pepelove
[Image: 68747470733a2f2f692e696d6775722e636f6d2f...752e706e67]

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 2 Guest(s)