Advertisement
Linkcabin

SMARTLOGS Decrypter

Jun 4th, 2015
760
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.24 KB | None | 0 0
  1. /**
  2. SMARTLOGS Decrypter
  3. -------------------
  4. LuminosityLink
  5. -------------------
  6. http://twitter.com/linkcabin
  7. ----------------------------
  8. a("base64SMARTLOGS","Specify a Password");
  9. **/
  10.  
  11. public void a(string string_0, string string_1)
  12.         {
  13.  
  14.         string s = string_1;
  15.         RijndaelManaged obj = new System.Security.Cryptography.RijndaelManaged();
  16.         MD5CryptoServiceProvider obj2 = new System.Security.Cryptography.MD5CryptoServiceProvider();
  17.         object obj3 = "";
  18.         object result;
  19.         object obj4 = new byte[32];
  20.         object sourceArray = obj2.ComputeHash(System.Text.Encoding.ASCII.GetBytes(s));
  21.         Array.Copy((Array)sourceArray, 0, (Array)obj4, 0, 16);
  22.         Array.Copy((Array)sourceArray, 0, (Array)obj4, 15, 16);
  23.         obj.Key = (byte[])obj4;
  24.         obj.Mode = System.Security.Cryptography.CipherMode.ECB;
  25.         object obj5 = obj.CreateDecryptor();
  26.         object obj6 = System.Convert.FromBase64String(string_0);
  27.         byte[] stuff = (byte[])obj6;
  28.         int len = stuff.Length;
  29.         //MessageBox.Show(len.ToString());
  30.         obj3 = System.Text.Encoding.ASCII.GetString(((System.Security.Cryptography.ICryptoTransform)obj5).TransformFinalBlock((byte[])obj6, 0, 128));
  31.         result = obj3;
  32.         MessageBox.Show( (string)result);
  33.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement