├── .gitattributes ├── .gitignore ├── AsyncRAT-C# ├── AsyncRAT-Sharp.sln ├── Client │ ├── Algorithm │ │ ├── Aes256.cs │ │ └── Sha256.cs │ ├── Client.csproj │ ├── Connection │ │ └── ClientSocket.cs │ ├── Handle Packet │ │ └── Packet.cs │ ├── Helper │ │ ├── Anti_Analysis.cs │ │ ├── CheckMiner.cs │ │ ├── HwidGen.cs │ │ ├── IdSender.cs │ │ ├── Methods.cs │ │ ├── MutexControl.cs │ │ ├── NativeMethods.cs │ │ ├── ProcessCritical.cs │ │ └── SetRegistry.cs │ ├── ILMerge.props │ ├── ILMergeOrder.txt │ ├── Install │ │ └── NormalStartup.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.cs │ ├── app.config │ ├── app.manifest │ └── packages.config ├── MessagePack │ ├── MessagePack │ │ ├── BytesTools.cs │ │ ├── MsgPack.cs │ │ ├── MsgPackType.cs │ │ ├── ReadTools.cs │ │ ├── WriteTools.cs │ │ └── Zip.cs │ ├── MessagePackLib.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Plugin │ ├── Chat │ │ ├── Chat.sln │ │ └── Chat │ │ │ ├── Chat.csproj │ │ │ ├── Connection.cs │ │ │ ├── FormChat.Designer.cs │ │ │ ├── FormChat.cs │ │ │ ├── FormChat.resx │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ ├── Extra │ │ ├── Extra.sln │ │ └── Extra │ │ │ ├── Connection.cs │ │ │ ├── Extra.csproj │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Handler │ │ │ ├── HandleBlankScreen.cs │ │ │ ├── HandleDisableDefender.cs │ │ │ └── Wallpaper.cs │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ ├── FileManager │ │ ├── FileManager.sln │ │ └── FileManager │ │ │ ├── Connection.cs │ │ │ ├── FileManager.csproj │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Handler │ │ │ └── FileManager.cs │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── TempSocket.cs │ │ │ └── packages.config │ ├── FileSearcher │ │ ├── FileSearcher.sln │ │ └── FileSearcher │ │ │ ├── Connection.cs │ │ │ ├── FileSearcher.csproj │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ ├── LimeLogger │ │ ├── LimeLogger.sln │ │ └── LimeLogger │ │ │ ├── Connection.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── LimeLogger.csproj │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ ├── Miscellaneous │ │ ├── Miscellaneous.sln │ │ └── Miscellaneous │ │ │ ├── Connection.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Handler │ │ │ ├── HandleBotKiller.cs │ │ │ ├── HandleDos.cs │ │ │ ├── HandleLimeUSB.cs │ │ │ ├── HandleShell.cs │ │ │ ├── HandleTorrent.cs │ │ │ └── HandlerExecuteDotNetCode.cs │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── IconLib.dll │ │ │ ├── Miscellaneous.csproj │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ └── packages.config │ ├── Options │ │ ├── Options.sln │ │ └── Options │ │ │ ├── Connection.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Handler │ │ │ ├── HandlePcOptions.cs │ │ │ ├── HandleReportWindow.cs │ │ │ ├── HandleThumbnails.cs │ │ │ ├── HandleUAC.cs │ │ │ └── HandleUninstall.cs │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── Methods.cs │ │ │ ├── Options.csproj │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ ├── ProcessManager │ │ ├── ProcessManager.sln │ │ └── ProcessManager │ │ │ ├── Connection.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── ProcessManager.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ ├── Recovery │ │ ├── Recovery.sln │ │ └── Recovery │ │ │ ├── Browsers │ │ │ ├── Chromium │ │ │ │ ├── Account.cs │ │ │ │ ├── AesGcm.cs │ │ │ │ ├── BCrypt.cs │ │ │ │ ├── Chromium.cs │ │ │ │ └── ChromiumCookies.cs │ │ │ ├── CredentialModel.cs │ │ │ ├── Firefox │ │ │ │ ├── Cookies │ │ │ │ │ └── FFCookiesGrabber.cs │ │ │ │ ├── FFDecryptor.cs │ │ │ │ ├── Firefox.cs │ │ │ │ └── FirefoxPassReader.cs │ │ │ ├── IPassReader.cs │ │ │ └── SQLiteHandler.cs │ │ │ ├── Connection.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Recovery.csproj │ │ │ └── packages.config │ ├── RemoteCamera │ │ ├── RemoteCamera.sln │ │ └── RemoteCamera │ │ │ ├── AForge │ │ │ ├── Video.DirectShow │ │ │ │ ├── CameraControlProperty.cs │ │ │ │ ├── FilterInfo.cs │ │ │ │ ├── FilterInfoCollection.cs │ │ │ │ ├── Internals │ │ │ │ │ ├── IAMCameraControl.cs │ │ │ │ │ ├── IAMCrossbar.cs │ │ │ │ │ ├── IAMStreamConfig.cs │ │ │ │ │ ├── IAMVideoControl.cs │ │ │ │ │ ├── IBaseFilter.cs │ │ │ │ │ ├── ICaptureGraphBuilder2.cs │ │ │ │ │ ├── ICreateDevEnum.cs │ │ │ │ │ ├── IEnumFilters.cs │ │ │ │ │ ├── IEnumPins.cs │ │ │ │ │ ├── IFilterGraph.cs │ │ │ │ │ ├── IFilterGraph2.cs │ │ │ │ │ ├── IGraphBuilder.cs │ │ │ │ │ ├── IMediaControl.cs │ │ │ │ │ ├── IMediaEventEx.cs │ │ │ │ │ ├── IPin.cs │ │ │ │ │ ├── IPropertyBag.cs │ │ │ │ │ ├── IReferenceClock.cs │ │ │ │ │ ├── ISampleGrabber.cs │ │ │ │ │ ├── ISampleGrabberCB.cs │ │ │ │ │ ├── ISpecifyPropertyPages.cs │ │ │ │ │ ├── Structures.cs │ │ │ │ │ ├── Uuids.cs │ │ │ │ │ └── Win32.cs │ │ │ │ ├── PhysicalConnectorType.cs │ │ │ │ ├── Uuids.cs │ │ │ │ ├── VideoCapabilities.cs │ │ │ │ ├── VideoCaptureDevice.cs │ │ │ │ └── VideoInput.cs │ │ │ └── Video │ │ │ │ ├── IVideoSource.cs │ │ │ │ └── VideoEvents.cs │ │ │ ├── Connection.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── RemoteCamera.csproj │ │ │ └── packages.config │ ├── RemoteDesktop │ │ ├── RemoteDesktop.sln │ │ └── RemoteDesktop │ │ │ ├── Connection.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── RemoteDesktop.csproj │ │ │ ├── StreamLibrary │ │ │ ├── Enums.cs │ │ │ ├── IUnsafeCodec.cs │ │ │ ├── IVideoCodec.cs │ │ │ ├── UnsafeCodecs │ │ │ │ └── UnsafeStreamCodec.cs │ │ │ └── src │ │ │ │ ├── JpgCompression.cs │ │ │ │ ├── LzwCompression.cs │ │ │ │ └── NativeMethods.cs │ │ │ └── packages.config │ ├── SendFile │ │ ├── SendFile.sln │ │ └── SendFile │ │ │ ├── Connection.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Handler │ │ │ ├── HandleMiner.cs │ │ │ ├── HandleSendTo.cs │ │ │ └── HandleUninstall.cs │ │ │ ├── ILMerge.props │ │ │ ├── ILMergeOrder.txt │ │ │ ├── Methods.cs │ │ │ ├── Packet.cs │ │ │ ├── Plugin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SendFile.csproj │ │ │ └── packages.config │ └── SendMemory │ │ ├── SendMemory.sln │ │ └── SendMemory │ │ ├── Connection.cs │ │ ├── Handler │ │ ├── HandleMiner.cs │ │ └── HandleSendTo.cs │ │ ├── ILMerge.props │ │ ├── ILMergeOrder.txt │ │ ├── Packet.cs │ │ ├── Plugin.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SendMemory.csproj │ │ ├── SendToMemory.cs │ │ └── packages.config ├── ReadMe.txt └── Server │ ├── Algorithm │ ├── Aes256.cs │ ├── GetHash.cs │ ├── Sha256.cs │ └── Zip.cs │ ├── App.config │ ├── Connection │ ├── Clients.cs │ └── Listener.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Forms │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── FormAbout.Designer.cs │ ├── FormAbout.cs │ ├── FormAbout.resx │ ├── FormBlockClients.Designer.cs │ ├── FormBlockClients.cs │ ├── FormBlockClients.resx │ ├── FormBuilder.Designer.cs │ ├── FormBuilder.cs │ ├── FormBuilder.resx │ ├── FormCertificate.Designer.cs │ ├── FormCertificate.cs │ ├── FormCertificate.resx │ ├── FormChat.Designer.cs │ ├── FormChat.cs │ ├── FormChat.resx │ ├── FormDOS.Designer.cs │ ├── FormDOS.cs │ ├── FormDOS.resx │ ├── FormDotNetEditor.Designer.cs │ ├── FormDotNetEditor.cs │ ├── FormDotNetEditor.resx │ ├── FormDownloadFile.Designer.cs │ ├── FormDownloadFile.cs │ ├── FormDownloadFile.resx │ ├── FormFileManager.Designer.cs │ ├── FormFileManager.cs │ ├── FormFileManager.resx │ ├── FormFileSearcher.Designer.cs │ ├── FormFileSearcher.cs │ ├── FormFileSearcher.resx │ ├── FormKeylogger.Designer.cs │ ├── FormKeylogger.cs │ ├── FormKeylogger.resx │ ├── FormMiner.Designer.cs │ ├── FormMiner.cs │ ├── FormMiner.resx │ ├── FormPassword.Designer.cs │ ├── FormPassword.cs │ ├── FormPassword.resx │ ├── FormPorts.Designer.cs │ ├── FormPorts.cs │ ├── FormPorts.resx │ ├── FormProcessManager.Designer.cs │ ├── FormProcessManager.cs │ ├── FormProcessManager.resx │ ├── FormRemoteDesktop.Designer.cs │ ├── FormRemoteDesktop.cs │ ├── FormRemoteDesktop.resx │ ├── FormSendFileToMemory.Designer.cs │ ├── FormSendFileToMemory.cs │ ├── FormSendFileToMemory.resx │ ├── FormShell.Designer.cs │ ├── FormShell.cs │ ├── FormShell.resx │ ├── FormTorrent.Designer.cs │ ├── FormTorrent.cs │ ├── FormTorrent.resx │ ├── FormWebcam.Designer.cs │ ├── FormWebcam.cs │ └── FormWebcam.resx │ ├── Handle Packet │ ├── HandleChat.cs │ ├── HandleDos.cs │ ├── HandleFileManager.cs │ ├── HandleKeylogger.cs │ ├── HandleListView.cs │ ├── HandleLogs.cs │ ├── HandleMiner.cs │ ├── HandlePing.cs │ ├── HandleProcessManager.cs │ ├── HandleRecovery.cs │ ├── HandleRemoteDesktop.cs │ ├── HandleReportWindow.cs │ ├── HandleShell.cs │ ├── HandleThumbnails.cs │ ├── HandleWebcam.cs │ ├── HandlerFileSearcher.cs │ └── Packet.cs │ ├── Helper │ ├── AsyncTask.cs │ ├── CreateCertificate.cs │ ├── IconInjector.cs │ ├── ListViewColumnSorter.cs │ ├── ListviewDoubleBuffer.cs │ ├── Methods.cs │ └── ReferenceLoader.cs │ ├── MessagePack │ ├── BytesTools.cs │ ├── MsgPack.cs │ ├── MsgPackType.cs │ ├── ReadTools.cs │ └── WriteTools.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── RenamingObfuscation │ ├── Classes │ │ ├── Base64.cs │ │ ├── ClassesRenaming.cs │ │ ├── DecryptionHelper.cs │ │ ├── FieldsRenaming.cs │ │ ├── InjectHelper.cs │ │ ├── MethodsRenaming.cs │ │ ├── NamespacesRenaming.cs │ │ ├── PropertiesRenaming.cs │ │ └── Utils.cs │ ├── EncryptString.cs │ ├── Interfaces │ │ ├── ICrypto.cs │ │ └── IRenaming.cs │ └── ModuleDefMD.cs │ ├── Resources │ ├── 7z.dll │ ├── 7z.exe │ ├── Fixer.bat │ ├── IconExtractor.dll │ ├── Miscellaneous.png │ ├── arrow_down.png │ ├── arrow_up.png │ ├── blank-screen.png │ ├── botkiller.png │ ├── builder.png │ ├── cGeoIp.dll │ ├── chat.png │ ├── client.png │ ├── coding.png │ ├── ddos.png │ ├── disabled.png │ ├── extra.png │ ├── filemanager.png │ ├── iconfinder_32_171485 (1).png │ ├── info.png │ ├── key.png │ ├── keyboard-on.png │ ├── keyboard.png │ ├── logger.png │ ├── monitoring-system.png │ ├── mouse.png │ ├── mouse_enable.png │ ├── msgbox.png │ ├── netstat.png │ ├── pc.png │ ├── play-button.png │ ├── process.png │ ├── remotedesktop.png │ ├── report.png │ ├── save-image.png │ ├── save-image2.png │ ├── server.png │ ├── settings.png │ ├── shell.png │ ├── stop (1).png │ ├── system.png │ ├── tomem.png │ ├── tomem1.png │ ├── u-torrent-logo.png │ ├── uac.png │ ├── usb.png │ ├── visit.png │ ├── webcam.png │ ├── xmr.png │ └── xmrig.bin │ ├── Server.csproj │ ├── Settings.cs │ ├── StreamLibrary │ ├── Enums.cs │ ├── IUnsafeCodec.cs │ ├── IVideoCodec.cs │ ├── JpgCompression.cs │ ├── NativeMethods.cs │ ├── UnsafeCodecs │ │ └── UnsafeStreamCodec.cs │ ├── UnsafeStreamCodec.cs │ └── src │ │ ├── JpgCompression.cs │ │ ├── LzwCompression.cs │ │ └── NativeMethods.cs │ ├── app.manifest │ ├── async_icon.ico │ └── packages.config ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/.gitignore -------------------------------------------------------------------------------- /AsyncRAT-C#/AsyncRAT-Sharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/AsyncRAT-Sharp.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Algorithm/Aes256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Algorithm/Aes256.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Algorithm/Sha256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Algorithm/Sha256.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Client.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Connection/ClientSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Connection/ClientSocket.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Handle Packet/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Handle Packet/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/Anti_Analysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/Anti_Analysis.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/CheckMiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/CheckMiner.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/HwidGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/HwidGen.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/IdSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/IdSender.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/Methods.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/MutexControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/MutexControl.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/NativeMethods.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/ProcessCritical.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/ProcessCritical.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Helper/SetRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Helper/SetRegistry.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Install/NormalStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Install/NormalStartup.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Program.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/Settings.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/app.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/app.manifest -------------------------------------------------------------------------------- /AsyncRAT-C#/Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Client/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/MessagePack/MessagePack/BytesTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/MessagePack/MessagePack/BytesTools.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/MessagePack/MessagePack/MsgPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/MessagePack/MessagePack/MsgPack.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/MessagePack/MessagePack/MsgPackType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/MessagePack/MessagePack/MsgPackType.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/MessagePack/MessagePack/ReadTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/MessagePack/MessagePack/ReadTools.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/MessagePack/MessagePack/WriteTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/MessagePack/MessagePack/WriteTools.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/MessagePack/MessagePack/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/MessagePack/MessagePack/Zip.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/MessagePack/MessagePackLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/MessagePack/MessagePackLib.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/MessagePack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/MessagePack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/Chat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/Chat.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/FormChat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/FormChat.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/FormChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/FormChat.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/FormChat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/FormChat.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Chat/Chat/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Chat/Chat/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/Extra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/Extra.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/Handler/HandleBlankScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/Handler/HandleBlankScreen.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/Handler/HandleDisableDefender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/Handler/HandleDisableDefender.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/Handler/Wallpaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/Handler/Wallpaper.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Extra/Extra/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Extra/Extra/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/FileManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/FileManager.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/Handler/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/Handler/FileManager.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/TempSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/TempSocket.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileManager/FileManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileManager/FileManager/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/FileSearcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/FileSearcher.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/FileSearcher/FileSearcher/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/LimeLogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/LimeLogger.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/LimeLogger/LimeLogger/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleBotKiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleBotKiller.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleDos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleDos.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleLimeUSB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleLimeUSB.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleShell.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleTorrent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandleTorrent.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandlerExecuteDotNetCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Handler/HandlerExecuteDotNetCode.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/IconLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/IconLib.dll -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Miscellaneous.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Miscellaneous.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/Properties/Resources.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Miscellaneous/Miscellaneous/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Handler/HandlePcOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Handler/HandlePcOptions.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Handler/HandleReportWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Handler/HandleReportWindow.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Handler/HandleThumbnails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Handler/HandleThumbnails.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Handler/HandleUAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Handler/HandleUAC.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Handler/HandleUninstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Handler/HandleUninstall.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Methods.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Options.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Options.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Options/Options/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Options/Options/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/ProcessManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/ProcessManager.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/ProcessManager/ProcessManager/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/Account.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/AesGcm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/AesGcm.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/BCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/BCrypt.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/Chromium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/Chromium.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/ChromiumCookies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Chromium/ChromiumCookies.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/CredentialModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/CredentialModel.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Firefox/Cookies/FFCookiesGrabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Firefox/Cookies/FFCookiesGrabber.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Firefox/FFDecryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Firefox/FFDecryptor.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Firefox/Firefox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Firefox/Firefox.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Firefox/FirefoxPassReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/Firefox/FirefoxPassReader.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/IPassReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/IPassReader.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/SQLiteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Browsers/SQLiteHandler.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/Recovery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/Recovery.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/Recovery/Recovery/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/Recovery/Recovery/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/CameraControlProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/CameraControlProperty.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/FilterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/FilterInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/FilterInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/FilterInfoCollection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IAMCameraControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IAMCameraControl.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IAMCrossbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IAMCrossbar.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IAMStreamConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IAMStreamConfig.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IAMVideoControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IAMVideoControl.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IBaseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IBaseFilter.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ICaptureGraphBuilder2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ICaptureGraphBuilder2.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ICreateDevEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ICreateDevEnum.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IEnumFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IEnumFilters.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IEnumPins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IEnumPins.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IFilterGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IFilterGraph.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IFilterGraph2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IFilterGraph2.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IGraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IGraphBuilder.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IMediaControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IMediaControl.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IMediaEventEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IMediaEventEx.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IPin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IPropertyBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IPropertyBag.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IReferenceClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/IReferenceClock.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ISampleGrabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ISampleGrabber.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ISampleGrabberCB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ISampleGrabberCB.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ISpecifyPropertyPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/ISpecifyPropertyPages.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/Structures.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/Uuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/Uuids.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Internals/Win32.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/PhysicalConnectorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/PhysicalConnectorType.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Uuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/Uuids.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/VideoCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/VideoCapabilities.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/VideoCaptureDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/VideoCaptureDevice.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/VideoInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video.DirectShow/VideoInput.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video/IVideoSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video/IVideoSource.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video/VideoEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/AForge/Video/VideoEvents.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/RemoteCamera.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/RemoteCamera.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteCamera/RemoteCamera/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/RemoteDesktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/RemoteDesktop.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/Enums.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/IUnsafeCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/IUnsafeCodec.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/IVideoCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/IVideoCodec.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/UnsafeCodecs/UnsafeStreamCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/UnsafeCodecs/UnsafeStreamCodec.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/src/JpgCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/src/JpgCompression.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/src/LzwCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/src/LzwCompression.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/src/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/StreamLibrary/src/NativeMethods.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/RemoteDesktop/RemoteDesktop/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/Handler/HandleMiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/Handler/HandleMiner.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/Handler/HandleSendTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/Handler/HandleSendTo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/Handler/HandleUninstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/Handler/HandleUninstall.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/Methods.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/SendFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/SendFile.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendFile/SendFile/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendFile/SendFile/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory.sln -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/Connection.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/Handler/HandleMiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/Handler/HandleMiner.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/Handler/HandleSendTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/Handler/HandleSendTo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/ILMerge.props -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/ILMergeOrder.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/Plugin.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/SendMemory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/SendMemory.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/SendToMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/SendToMemory.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Plugin/SendMemory/SendMemory/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Plugin/SendMemory/SendMemory/packages.config -------------------------------------------------------------------------------- /AsyncRAT-C#/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/ReadMe.txt -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Algorithm/Aes256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Algorithm/Aes256.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Algorithm/GetHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Algorithm/GetHash.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Algorithm/Sha256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Algorithm/Sha256.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Algorithm/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Algorithm/Zip.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/App.config -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Connection/Clients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Connection/Clients.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Connection/Listener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Connection/Listener.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/FodyWeavers.xml -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/FodyWeavers.xsd -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/Form1.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/Form1.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/Form1.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormAbout.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormAbout.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormAbout.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormBlockClients.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormBlockClients.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormBlockClients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormBlockClients.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormBlockClients.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormBlockClients.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormBuilder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormBuilder.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormBuilder.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormBuilder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormBuilder.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormCertificate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormCertificate.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormCertificate.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormCertificate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormCertificate.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormChat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormChat.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormChat.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormChat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormChat.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDOS.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDOS.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDOS.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDOS.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDOS.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDotNetEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDotNetEditor.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDotNetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDotNetEditor.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDotNetEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDotNetEditor.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDownloadFile.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDownloadFile.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDownloadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDownloadFile.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormDownloadFile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormDownloadFile.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormFileManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormFileManager.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormFileManager.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormFileManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormFileManager.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormFileSearcher.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormFileSearcher.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormFileSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormFileSearcher.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormFileSearcher.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormFileSearcher.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormKeylogger.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormKeylogger.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormKeylogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormKeylogger.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormKeylogger.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormKeylogger.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormMiner.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormMiner.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormMiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormMiner.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormMiner.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormMiner.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormPassword.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormPassword.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormPassword.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormPassword.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormPassword.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormPorts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormPorts.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormPorts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormPorts.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormPorts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormPorts.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormProcessManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormProcessManager.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormProcessManager.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormProcessManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormProcessManager.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormRemoteDesktop.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormRemoteDesktop.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormRemoteDesktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormRemoteDesktop.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormRemoteDesktop.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormRemoteDesktop.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormSendFileToMemory.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormSendFileToMemory.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormSendFileToMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormSendFileToMemory.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormSendFileToMemory.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormSendFileToMemory.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormShell.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormShell.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormShell.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormShell.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormShell.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormTorrent.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormTorrent.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormTorrent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormTorrent.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormTorrent.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormTorrent.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormWebcam.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormWebcam.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormWebcam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormWebcam.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Forms/FormWebcam.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Forms/FormWebcam.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleChat.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleDos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleDos.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleFileManager.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleKeylogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleKeylogger.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleListView.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleLogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleLogs.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleMiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleMiner.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandlePing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandlePing.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleProcessManager.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleRecovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleRecovery.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleRemoteDesktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleRemoteDesktop.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleReportWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleReportWindow.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleShell.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleThumbnails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleThumbnails.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandleWebcam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandleWebcam.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/HandlerFileSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/HandlerFileSearcher.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Handle Packet/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Handle Packet/Packet.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Helper/AsyncTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Helper/AsyncTask.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Helper/CreateCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Helper/CreateCertificate.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Helper/IconInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Helper/IconInjector.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Helper/ListViewColumnSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Helper/ListViewColumnSorter.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Helper/ListviewDoubleBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Helper/ListviewDoubleBuffer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Helper/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Helper/Methods.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Helper/ReferenceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Helper/ReferenceLoader.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/MessagePack/BytesTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/MessagePack/BytesTools.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/MessagePack/MsgPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/MessagePack/MsgPack.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/MessagePack/MsgPackType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/MessagePack/MsgPackType.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/MessagePack/ReadTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/MessagePack/ReadTools.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/MessagePack/WriteTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/MessagePack/WriteTools.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Program.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Properties/Resources.resx -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Properties/Settings.settings -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/Base64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/Base64.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/ClassesRenaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/ClassesRenaming.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/DecryptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/DecryptionHelper.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/FieldsRenaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/FieldsRenaming.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/InjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/InjectHelper.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/MethodsRenaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/MethodsRenaming.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/NamespacesRenaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/NamespacesRenaming.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/PropertiesRenaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/PropertiesRenaming.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Classes/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Classes/Utils.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/EncryptString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/EncryptString.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Interfaces/ICrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Interfaces/ICrypto.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/Interfaces/IRenaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/Interfaces/IRenaming.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/RenamingObfuscation/ModuleDefMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/RenamingObfuscation/ModuleDefMD.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/7z.dll -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/7z.exe -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/Fixer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/Fixer.bat -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/IconExtractor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/IconExtractor.dll -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/Miscellaneous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/Miscellaneous.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/arrow_down.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/arrow_up.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/blank-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/blank-screen.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/botkiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/botkiller.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/builder.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/cGeoIp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/cGeoIp.dll -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/chat.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/client.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/coding.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/ddos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/ddos.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/disabled.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/extra.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/filemanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/filemanager.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/iconfinder_32_171485 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/iconfinder_32_171485 (1).png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/info.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/key.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/keyboard-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/keyboard-on.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/keyboard.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/logger.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/monitoring-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/monitoring-system.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/mouse.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/mouse_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/mouse_enable.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/msgbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/msgbox.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/netstat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/netstat.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/pc.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/play-button.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/process.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/remotedesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/remotedesktop.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/report.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/save-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/save-image.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/save-image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/save-image2.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/server.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/settings.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/shell.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/stop (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/stop (1).png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/system.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/tomem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/tomem.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/tomem1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/tomem1.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/u-torrent-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/u-torrent-logo.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/uac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/uac.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/usb.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/visit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/visit.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/webcam.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/xmr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/xmr.png -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Resources/xmrig.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Resources/xmrig.bin -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Server.csproj -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/Settings.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/Enums.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/IUnsafeCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/IUnsafeCodec.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/IVideoCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/IVideoCodec.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/JpgCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/JpgCompression.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/NativeMethods.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/UnsafeCodecs/UnsafeStreamCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/UnsafeCodecs/UnsafeStreamCodec.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/UnsafeStreamCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/UnsafeStreamCodec.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/src/JpgCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/src/JpgCompression.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/src/LzwCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/src/LzwCompression.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/StreamLibrary/src/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/StreamLibrary/src/NativeMethods.cs -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/app.manifest -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/async_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/async_icon.ico -------------------------------------------------------------------------------- /AsyncRAT-C#/Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/AsyncRAT-C#/Server/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/AsyncRAT-C-Sharp/HEAD/README.md --------------------------------------------------------------------------------