├── .gitignore ├── LICENSE ├── README.md └── SharpRAT ├── Client ├── Client.csproj ├── Client.sln ├── Client │ ├── CommandHandler.cs │ ├── FileManager.cs │ ├── ScreenViewer.cs │ ├── SocketClient.cs │ └── WindowsHelper.cs ├── Program.cs ├── UI │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ └── RequestUI.cs ├── User │ └── Config.cs └── app.manifest └── Server ├── .editorconfig ├── Program.cs ├── Properties ├── Resources.Designer.cs └── Resources.resx ├── Resources └── SharpRAT_Icon.png ├── Server.csproj ├── Server.sln ├── Server ├── Client.cs └── SocketServer.cs ├── SharpRAT_Icon.ico ├── UI ├── FileManager.Designer.cs ├── FileManager.cs ├── FileManager.resx ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── MessageboxCreator.Designer.cs ├── MessageboxCreator.cs ├── MessageboxCreator.resx ├── RequestUI.cs ├── ScreenViewer.Designer.cs ├── ScreenViewer.cs ├── ScreenViewer.resx ├── Settings.Designer.cs ├── Settings.cs ├── Settings.resx └── WinIcons.cs └── User ├── Config.cs ├── File.cs └── Log.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/README.md -------------------------------------------------------------------------------- /SharpRAT/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/Client.csproj -------------------------------------------------------------------------------- /SharpRAT/Client/Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/Client.sln -------------------------------------------------------------------------------- /SharpRAT/Client/Client/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/Client/CommandHandler.cs -------------------------------------------------------------------------------- /SharpRAT/Client/Client/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/Client/FileManager.cs -------------------------------------------------------------------------------- /SharpRAT/Client/Client/ScreenViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/Client/ScreenViewer.cs -------------------------------------------------------------------------------- /SharpRAT/Client/Client/SocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/Client/SocketClient.cs -------------------------------------------------------------------------------- /SharpRAT/Client/Client/WindowsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/Client/WindowsHelper.cs -------------------------------------------------------------------------------- /SharpRAT/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/Program.cs -------------------------------------------------------------------------------- /SharpRAT/Client/UI/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/UI/Main.Designer.cs -------------------------------------------------------------------------------- /SharpRAT/Client/UI/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/UI/Main.cs -------------------------------------------------------------------------------- /SharpRAT/Client/UI/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/UI/Main.resx -------------------------------------------------------------------------------- /SharpRAT/Client/UI/RequestUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/UI/RequestUI.cs -------------------------------------------------------------------------------- /SharpRAT/Client/User/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/User/Config.cs -------------------------------------------------------------------------------- /SharpRAT/Client/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Client/app.manifest -------------------------------------------------------------------------------- /SharpRAT/Server/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/.editorconfig -------------------------------------------------------------------------------- /SharpRAT/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/Program.cs -------------------------------------------------------------------------------- /SharpRAT/Server/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SharpRAT/Server/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/Properties/Resources.resx -------------------------------------------------------------------------------- /SharpRAT/Server/Resources/SharpRAT_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/Resources/SharpRAT_Icon.png -------------------------------------------------------------------------------- /SharpRAT/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/Server.csproj -------------------------------------------------------------------------------- /SharpRAT/Server/Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/Server.sln -------------------------------------------------------------------------------- /SharpRAT/Server/Server/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/Server/Client.cs -------------------------------------------------------------------------------- /SharpRAT/Server/Server/SocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/Server/SocketServer.cs -------------------------------------------------------------------------------- /SharpRAT/Server/SharpRAT_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/SharpRAT_Icon.ico -------------------------------------------------------------------------------- /SharpRAT/Server/UI/FileManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/FileManager.Designer.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/FileManager.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/FileManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/FileManager.resx -------------------------------------------------------------------------------- /SharpRAT/Server/UI/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/Main.Designer.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/Main.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/Main.resx -------------------------------------------------------------------------------- /SharpRAT/Server/UI/MessageboxCreator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/MessageboxCreator.Designer.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/MessageboxCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/MessageboxCreator.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/MessageboxCreator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/MessageboxCreator.resx -------------------------------------------------------------------------------- /SharpRAT/Server/UI/RequestUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/RequestUI.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/ScreenViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/ScreenViewer.Designer.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/ScreenViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/ScreenViewer.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/ScreenViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/ScreenViewer.resx -------------------------------------------------------------------------------- /SharpRAT/Server/UI/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/Settings.Designer.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/Settings.cs -------------------------------------------------------------------------------- /SharpRAT/Server/UI/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/Settings.resx -------------------------------------------------------------------------------- /SharpRAT/Server/UI/WinIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/UI/WinIcons.cs -------------------------------------------------------------------------------- /SharpRAT/Server/User/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/User/Config.cs -------------------------------------------------------------------------------- /SharpRAT/Server/User/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/User/File.cs -------------------------------------------------------------------------------- /SharpRAT/Server/User/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJX/SharpRAT/HEAD/SharpRAT/Server/User/Log.cs --------------------------------------------------------------------------------