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



   101749

[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 (Airchunk) - Unhide
Airchunk  
Registered
27
Posts
0
Threads
4 Years of service
#81
(07 April, 2021 - 12:57 AM)hussaryyn Wrote: Show More
Orcus RAT 1.9.1 Source Code, enjoy.

Leave a LIKE and post to unlock.

[Image: 68747470733a2f2f692e696d6775722e636f6d2f...712e706e67]

Special thanks to @Snyke!
cortexnet.cc



Fat  Don't be LEECHER leave a LIKE  Fat
Don't use it for bad purposes.



 C# RAT with lots of features.

[Image: 687474703a2f2f6673352e64697265637475706c...792e706e67]
[Image: 3J7ITrW.png]
[Image: 2Pt9sBB.png]

[Image: XiF3EgX.png]
[Image: 2663RXx.png]
 
DancingClown
 

Thank you for the post great leak pepeblush pepeblush
This post is by a banned member (Dood_) - Unhide
Dood_  
Registered
33
Posts
0
Threads
5 Years of service
#82
hyper
This post is by a banned member (skidware) - Unhide
skidware  
Registered
24
Posts
0
Threads
4 Years of service
#83
(07 April, 2021 - 12:57 AM)hussaryyn Wrote: Show More
okOrcus RAT 1.9.1 Source Code, enjoy.

Leave a LIKE and post to unlock.

[Image: 68747470733a2f2f692e696d6775722e636f6d2f...712e706e67]

Special thanks to @Snyke!
cortexnet.cc



Fat  Don't be LEECHER leave a LIKE  Fat
Don't use it for bad purposes.



 C# RAT with lots of features.

[Image: 687474703a2f2f6673352e64697265637475706c...792e706e67]
[Image: 3J7ITrW.png]
[Image: 2Pt9sBB.png]

[Image: XiF3EgX.png]
[Image: 2663RXx.png]
 
DancingClown
 

ok help whats license key
This post is by a banned member (Airchunk) - Unhide
Airchunk  
Registered
27
Posts
0
Threads
4 Years of service
#84
(08 April, 2021 - 03:18 PM)hussaryyn Wrote: Show More
(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();
        }
    }
}

Thanks for the help this gets me past the register issue however everytime I press build the application crashes, Do you know any solutions to this issue?
This post is by a banned member (griffin7) - Unhide
griffin7  
Registered
2
Posts
0
Threads
5 Years of service
#85
Thanks, hope it works
This post is by a banned member (link3r) - Unhide
link3r  
Infinity
73
Posts
3
Threads
5 Years of service
#86
This is a bump
This post is by a banned member (daniel21) - Unhide
This post is by a banned member (jherfw) - Unhide
jherfw  
Registered
3
Posts
0
Threads
4 Years of service
#88
nice tryyyyyyyyy

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: 1 Guest(s)