{"id":17687747,"url":"https://github.com/hyukisback/simple-.net-loader","last_synced_at":"2025-10-08T20:01:54.263Z","repository":{"id":110753597,"uuid":"445186348","full_name":"HyukIsBack/Simple-.NET-Loader","owner":"HyukIsBack","description":"well-known as crypter or stub","archived":false,"fork":false,"pushed_at":"2022-01-22T06:18:02.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T15:34:59.495Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HyukIsBack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-06T13:52:21.000Z","updated_at":"2024-08-12T20:19:31.000Z","dependencies_parsed_at":"2024-03-08T21:15:42.192Z","dependency_job_id":null,"html_url":"https://github.com/HyukIsBack/Simple-.NET-Loader","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HyukIsBack%2FSimple-.NET-Loader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HyukIsBack%2FSimple-.NET-Loader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HyukIsBack%2FSimple-.NET-Loader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HyukIsBack%2FSimple-.NET-Loader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HyukIsBack","download_url":"https://codeload.github.com/HyukIsBack/Simple-.NET-Loader/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250250986,"owners_count":21399735,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-24T11:08:07.062Z","updated_at":"2025-10-08T20:01:49.224Z","avatar_url":"https://github.com/HyukIsBack.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple .NET Loader\n well-known as crypter or stub\n\n# Encrypt Code\n```C#\npublic static string Encrypt(string textToEncrypt, string key)\n        {\n            RijndaelManaged RijndaelCipher = new RijndaelManaged();\n            byte[] PlainText = Encoding.Unicode.GetBytes(textToEncrypt);\n            byte[] Salt = Encoding.ASCII.GetBytes(key.Length.ToString());\n            PasswordDeriveBytes SecretKey = new PasswordDeriveBytes(key, Salt);\n            ICryptoTransform Encryptor = RijndaelCipher.CreateEncryptor(SecretKey.GetBytes(32), SecretKey.GetBytes(16));\n            MemoryStream memoryStream = new MemoryStream();\n            CryptoStream cryptoStream = new CryptoStream(memoryStream, Encryptor, CryptoStreamMode.Write);\n            cryptoStream.Write(PlainText, 0, PlainText.Length);\n            cryptoStream.FlushFinalBlock();\n            byte[] CipherBytes = memoryStream.ToArray();\n            memoryStream.Close();\n            cryptoStream.Close();\n            return Convert.ToBase64String(CipherBytes);\n        }\n```\n\nFor educational\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyukisback%2Fsimple-.net-loader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyukisback%2Fsimple-.net-loader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyukisback%2Fsimple-.net-loader/lists"}