├── .gitignore ├── .gitmodules ├── 3rdparty ├── Anti-Detection │ ├── Anti-Detection.pri │ ├── Anti-dbg-rce.h │ ├── AntiDebug.cpp │ ├── AntiDebug.h │ ├── anti_debugger.h │ ├── anti_virtualmachine.h │ ├── detect_debugger.asm │ ├── detect_virtualmachine.asm │ ├── vm_detection.cpp │ └── vm_detection.h ├── QHexEdit.pri ├── SocksLib.pri ├── SocksLib │ ├── SocksConnection.cpp │ ├── SocksConnection.h │ ├── SocksLib-client.pri │ ├── SocksLib-server.pri │ ├── SocksLib.pro │ ├── SocksLib_global.h │ ├── SocksServer.cpp │ ├── SocksServer.h │ ├── SocksSession.cpp │ ├── SocksSession.h │ ├── SocksSessionManager.cpp │ ├── SocksSessionManager.h │ ├── decorators │ │ ├── QIODeviceDecorator.cpp │ │ ├── QIODeviceDecorator.h │ │ ├── QTcpSocketDecorator.cpp │ │ ├── QTcpSocketDecorator.h │ │ ├── ThrottlingDecorator.cpp │ │ └── ThrottlingDecorator.h │ ├── pairsocket.cpp │ ├── pairsocket.h │ ├── protocol │ │ ├── Socks4ReplyMessage.cpp │ │ ├── Socks4ReplyMessage.h │ │ ├── Socks4RequestMessage.cpp │ │ ├── Socks4RequestMessage.h │ │ ├── Socks5GreetingMessage.cpp │ │ ├── Socks5GreetingMessage.h │ │ ├── Socks5MethodSelectionMessage.cpp │ │ ├── Socks5MethodSelectionMessage.h │ │ ├── Socks5ReplyMessage.cpp │ │ ├── Socks5ReplyMessage.h │ │ ├── Socks5RequestMessage.cpp │ │ ├── Socks5RequestMessage.h │ │ ├── Socks5UDPRequestMessage.cpp │ │ ├── Socks5UDPRequestMessage.h │ │ ├── SocksProtocolMessage.cpp │ │ ├── SocksProtocolMessage.h │ │ ├── SocksReplyMessage4a.cpp │ │ └── SocksReplyMessage4a.h │ ├── proxyserver.cpp │ ├── proxyserver.h │ ├── sockshub.cpp │ ├── sockshub.h │ └── states │ │ ├── InitialState.cpp │ │ ├── InitialState.h │ │ ├── Socks4ConnectState.cpp │ │ ├── Socks4ConnectState.h │ │ ├── Socks4ConnectedState.cpp │ │ ├── Socks4ConnectedState.h │ │ ├── Socks4InitialState.cpp │ │ ├── Socks4InitialState.h │ │ ├── Socks5AuthState.cpp │ │ ├── Socks5AuthState.h │ │ ├── Socks5AuthenticatedState.cpp │ │ ├── Socks5AuthenticatedState.h │ │ ├── Socks5ConnectState.cpp │ │ ├── Socks5ConnectState.h │ │ ├── Socks5ConnectedState.cpp │ │ ├── Socks5ConnectedState.h │ │ ├── Socks5UDPAssociateState.cpp │ │ ├── Socks5UDPAssociateState.h │ │ ├── Socks5UDPAssociatedState.cpp │ │ ├── Socks5UDPAssociatedState.h │ │ ├── SocksState.cpp │ │ └── SocksState.h ├── al-khaser.pri ├── include │ ├── Config.h │ └── VLCQtCore ├── lz4.pri └── screen_capture_lite.pri ├── README.md ├── client ├── browserspy │ ├── abstractbrowser.cpp │ ├── abstractbrowser.h │ ├── browserhelper.cpp │ ├── browserhelper.h │ ├── browserspy.cpp │ ├── browserspy.h │ ├── browserspy.pri │ ├── chrome.cpp │ ├── chrome.h │ ├── firefox.cpp │ ├── firefox.h │ ├── ie.cpp │ ├── ie.h │ └── ie_windows.h ├── client.cpp ├── client.h ├── client.pro ├── configreader.cpp ├── configreader.h ├── desktoplockdialog.cpp ├── desktoplockdialog.h ├── desktoplockdialog.ui ├── filedownloader.cpp ├── filedownloader.h ├── inputmanager.cpp ├── inputmanager.h ├── keylogger.cpp ├── keylogger.h ├── keylogger_linux.cpp ├── keylogger_windows.cpp ├── keys.cpp ├── keys.h ├── main.cpp ├── messagebox.cpp ├── messagebox.h ├── nativeutils.cpp ├── nativeutils.h ├── platforms │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── res │ │ │ └── values │ │ │ └── libs.xml │ ├── client-android.pri │ ├── client-linux.pri │ └── client-windows.pri ├── rawcopy.cpp ├── rawcopy.h ├── regkey.cpp ├── regkey.h ├── remotecli.cpp ├── remotecli.h ├── screencaster.cpp ├── screencaster.h ├── test.cpp ├── webcam.cpp ├── webcam.h ├── webcamimagesurface.cpp ├── webcamimagesurface.h ├── win32keys.h └── x11keys.h ├── common ├── Optional.h ├── abstractclient.cpp ├── abstractclient.h ├── abstractfilesystem.cpp ├── abstractfilesystem.h ├── abstractregistry.cpp ├── abstractregistry.h ├── abstractremotecli.cpp ├── abstractremotecli.h ├── abstractwebcammanager.cpp ├── abstractwebcammanager.h ├── audiohub.cpp ├── audiohub.h ├── common.pri ├── consts.h ├── features.cpp ├── features.h ├── file.cpp ├── file.h ├── objectcache.cpp ├── objectcache.h ├── pathplaceholder.cpp ├── pathplaceholder.h ├── taskmanager.cpp ├── taskmanager.h ├── variantwrapper.cpp └── variantwrapper.h ├── config.h ├── config.pri ├── installer ├── .gitignore ├── automate.bat ├── config-online.xml ├── config.xml ├── copy_exe.bat ├── create_installers ├── create_installers.bat ├── create_online_installers ├── create_online_installers.bat ├── files.json ├── files.txt ├── init_repo.bat ├── package_data.json └── template_packages │ ├── ir.tooska.rat.clientmaker.linux │ ├── data │ │ └── builder │ │ │ └── linux │ │ │ └── .gitkeep │ └── meta │ │ └── package.xml │ ├── ir.tooska.rat.clientmaker.macos │ ├── data │ │ └── builder │ │ │ └── macos │ │ │ └── .gitkeep │ └── meta │ │ └── package.xml │ ├── ir.tooska.rat.clientmaker.windows │ ├── data │ │ └── builder │ │ │ └── windows │ │ │ └── .gitkeep │ └── meta │ │ └── package.xml │ ├── ir.tooska.rat.clientmaker │ ├── data │ │ └── .gitkeep │ └── meta │ │ └── package.xml │ ├── ir.tooska.rat.qt │ ├── data │ │ └── .gitkeep │ └── meta │ │ └── package.xml │ ├── ir.tooska.rat.server │ ├── data │ │ └── .gitkeep │ └── meta │ │ └── package.xml │ └── ir.tooska.rat │ ├── data │ └── .gitkeep │ └── meta │ └── package.xml ├── opts └── windows │ └── config.opt ├── rat-screenshot.png ├── rat.pro ├── server ├── ClientMakerWizardStates.scxml ├── appsettings.cpp ├── appsettings.h ├── clientbuildwizard.cpp ├── clientbuildwizard.h ├── clientbuildwizard.ui ├── core │ ├── clientsmodel.cpp │ ├── clientsmodel.h │ ├── controllerbase.cpp │ ├── controllerbase.h │ ├── filetransferthread.cpp │ ├── filetransferthread.h │ ├── screenreciver.cpp │ ├── screenreciver.h │ ├── variantlistmodel.cpp │ ├── variantlistmodel.h │ ├── variantwrappermodel.cpp │ └── variantwrappermodel.h ├── dialogs │ ├── antidebuggerdialog.cpp │ ├── antidebuggerdialog.h │ ├── antidebuggerdialog.ui │ ├── browseropentabsdialog.cpp │ ├── browseropentabsdialog.h │ ├── browseropentabsdialog.ui │ ├── browserpasswords.cpp │ ├── browserpasswords.h │ ├── browserpasswords.ui │ ├── commandlineinterfacedialog.cpp │ ├── commandlineinterfacedialog.h │ ├── commandlineinterfacedialog.ui │ ├── createclientdialog.cpp │ ├── createclientdialog.h │ ├── createclientdialog.ui │ ├── downloadandexecdialog.cpp │ ├── downloadandexecdialog.h │ ├── downloadandexecdialog.ui │ ├── filemanagerdialog.cpp │ ├── filemanagerdialog.h │ ├── filemanagerdialog.ui │ ├── filetransferdialog.cpp │ ├── filetransferdialog.h │ ├── filetransferdialog.ui │ ├── filetransferprogressdialog.cpp │ ├── filetransferprogressdialog.h │ ├── filetransferprogressdialog.ui │ ├── keyloggerdialog.cpp │ ├── keyloggerdialog.h │ ├── keyloggerdialog.ui │ ├── messageboxdialog.cpp │ ├── messageboxdialog.h │ ├── messageboxdialog.ui │ ├── micspydialog.cpp │ ├── micspydialog.h │ ├── micspydialog.ui │ ├── registrydialog.cpp │ ├── registrydialog.h │ ├── registrydialog.ui │ ├── remotedesktoppropertiesdialog.cpp │ ├── remotedesktoppropertiesdialog.h │ ├── remotedesktoppropertiesdialog.ui │ ├── screenshotdialog.cpp │ ├── screenshotdialog.h │ ├── screenshotdialog.ui │ ├── socksproxydialog.cpp │ ├── socksproxydialog.h │ ├── socksproxydialog.ui │ ├── startupmanagerdialog.cpp │ ├── startupmanagerdialog.h │ ├── startupmanagerdialog.ui │ ├── systeminfodialog.cpp │ ├── systeminfodialog.h │ ├── systeminfodialog.ui │ ├── taskmanagerdialog.cpp │ ├── taskmanagerdialog.h │ ├── taskmanagerdialog.ui │ ├── visitwebsitedialog.cpp │ ├── visitwebsitedialog.h │ ├── visitwebsitedialog.ui │ ├── vncdialog.cpp │ ├── vncdialog.h │ ├── vncdialog.ui │ ├── webcamviewdialog.cpp │ ├── webcamviewdialog.h │ └── webcamviewdialog.ui ├── global.cpp ├── global.h ├── krdc-qtonly.pri ├── krdc_debug.h ├── lanAzX.json ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── remoteview.cpp ├── remoteview.h ├── res │ ├── Iran.png │ ├── United_States_of_America.png │ ├── exts │ │ ├── _blank.png │ │ ├── _page.png │ │ ├── aac.png │ │ ├── ai.png │ │ ├── aiff.png │ │ ├── avi.png │ │ ├── bmp.png │ │ ├── c.png │ │ ├── cpp.png │ │ ├── css.png │ │ ├── csv.png │ │ ├── dat.png │ │ ├── dmg.png │ │ ├── doc.png │ │ ├── dotx.png │ │ ├── dwg.png │ │ ├── dxf.png │ │ ├── eps.png │ │ ├── exe.png │ │ ├── flv.png │ │ ├── gif.png │ │ ├── h.png │ │ ├── hpp.png │ │ ├── html.png │ │ ├── ics.png │ │ ├── iso.png │ │ ├── java.png │ │ ├── jpg.png │ │ ├── js.png │ │ ├── key.png │ │ ├── less.png │ │ ├── mid.png │ │ ├── mp3.png │ │ ├── mp4.png │ │ ├── mpg.png │ │ ├── odf.png │ │ ├── ods.png │ │ ├── odt.png │ │ ├── otp.png │ │ ├── ots.png │ │ ├── ott.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── png.png │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── py.png │ │ ├── qt.png │ │ ├── rar.png │ │ ├── rb.png │ │ ├── rtf.png │ │ ├── sass.png │ │ ├── scss.png │ │ ├── sql.png │ │ ├── tga.png │ │ ├── tgz.png │ │ ├── tiff.png │ │ ├── txt.png │ │ ├── wav.png │ │ ├── xls.png │ │ ├── xlsx.png │ │ ├── xml.png │ │ ├── yml.png │ │ └── zip.png │ ├── files.json │ ├── folder.png │ ├── html │ │ └── index.htm │ ├── icons │ │ ├── Internet_Security_entrance_exit_log_out_arrow.png │ │ ├── applications-system.png │ │ ├── button_blue_play.png │ │ ├── button_blue_repeat.png │ │ ├── camera-photo.png │ │ ├── cut.png │ │ ├── delete.png │ │ ├── diagram.png │ │ ├── edit-copy.png │ │ ├── edit-paste.png │ │ ├── filter.png │ │ ├── go-bottom.png │ │ ├── go-home.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── icons.qrc │ │ ├── info_blue.png │ │ ├── input-keyboard.png │ │ ├── internet-web-browser.png │ │ ├── lock-open.png │ │ ├── lock.png │ │ ├── messagebox.png │ │ ├── my-computer.png │ │ ├── network-offline.png │ │ ├── network-transmit.png │ │ ├── network-wired.png │ │ ├── paul.png │ │ ├── power_blue.png │ │ ├── preferences-desktop-remote-desktop.png │ │ ├── preferences-system-network-proxy.png │ │ ├── preferences-system-session.png │ │ ├── preferences-system.png │ │ ├── rat.png │ │ ├── recreate │ │ ├── registry.png │ │ ├── system-file-manager.png │ │ ├── task-manager.png │ │ ├── transfer.png │ │ ├── up.png │ │ ├── user-home.png │ │ ├── utilities-system-monitor.png │ │ ├── utilities-terminal.png │ │ ├── video-display.png │ │ └── view-refresh.png │ ├── linux.png │ ├── res.qrc │ ├── themes │ │ ├── dark.css │ │ ├── dark_style.css │ │ ├── default.css │ │ ├── dracula.css │ │ ├── fusion.css │ │ ├── material-blue.css │ │ ├── modern.css │ │ └── web.css │ └── windows.png ├── server.pro ├── settingsdialog.cpp ├── settingsdialog.h ├── settingsdialog.ui ├── translations │ ├── rat_en.qm │ ├── rat_en.ts │ ├── rat_fa.qm │ └── rat_fa.ts ├── ui │ ├── consolewidget.cpp │ ├── consolewidget.h │ ├── registryvalueeditordialog.cpp │ ├── registryvalueeditordialog.h │ └── registryvalueeditordialog.ui ├── webserver.cpp └── webserver.h ├── tests ├── AndroidAssets │ ├── .gitignore │ ├── AndroidAssets.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── AudioBroadcaster │ ├── AudioBroadcaster.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── BrowserPasswords │ ├── BrowserPasswords.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── CreateWindow │ ├── CreateWindow.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── window.cpp │ └── window.h ├── DownloadAndExec │ ├── DownloadAndExec.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── MessageBox │ ├── MessageBox.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── RawCopy │ ├── .gitignore │ ├── RawCopy.pro │ ├── main.cpp │ ├── rawcopy.cpp │ └── rawcopy.h ├── Registry │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── registry.cpp │ ├── registry.h │ ├── regkey.cpp │ ├── regkey.h │ └── untitled1.pro ├── ScreenCapture │ ├── ScreenCapture.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── input_manager │ ├── input_manager.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── tests.pro ├── tools ├── ClientMaker │ ├── .gitignore │ ├── Client │ │ ├── Client.csproj │ │ ├── ConsoleProgress.cs │ │ ├── Data.cs │ │ ├── DataMemberAttribute.cs │ │ ├── Global.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Unzip.cs │ ├── ClientMaker.sln │ └── ClientMaker │ │ ├── ArgsParser.cs │ │ ├── Builder.cs │ │ ├── ClientMaker.csproj │ │ ├── Data.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── FileOptionPos │ ├── FileOptionPos.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── JsonMaker │ ├── .gitignore │ ├── JsonMaker.pro │ └── main.cpp ├── OutputFilesList │ ├── OutputFilesList.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── RepoMaker │ ├── RepoMaker.pro │ ├── Script.js │ ├── dialog.cpp │ ├── dialog.h │ ├── dialog.ui │ ├── main.cpp │ └── res.qrc └── tools.pro └── vars.pri /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/Anti-Detection.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/Anti-Detection.pri -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/Anti-dbg-rce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/Anti-dbg-rce.h -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/AntiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/AntiDebug.cpp -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/AntiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/AntiDebug.h -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/anti_debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/anti_debugger.h -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/anti_virtualmachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/anti_virtualmachine.h -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/detect_debugger.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/detect_debugger.asm -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/detect_virtualmachine.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/detect_virtualmachine.asm -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/vm_detection.cpp: -------------------------------------------------------------------------------- 1 | #include "vm_detection.h" 2 | -------------------------------------------------------------------------------- /3rdparty/Anti-Detection/vm_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/Anti-Detection/vm_detection.h -------------------------------------------------------------------------------- /3rdparty/QHexEdit.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/QHexEdit.pri -------------------------------------------------------------------------------- /3rdparty/SocksLib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib.pri -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksConnection.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksConnection.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksLib-client.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksLib-client.pri -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksLib-server.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksLib-server.pri -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksLib.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksLib.pro -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksLib_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksLib_global.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksServer.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksServer.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksSession.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksSession.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksSessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksSessionManager.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/SocksSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/SocksSessionManager.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/decorators/QIODeviceDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/decorators/QIODeviceDecorator.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/decorators/QIODeviceDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/decorators/QIODeviceDecorator.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/decorators/QTcpSocketDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/decorators/QTcpSocketDecorator.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/decorators/QTcpSocketDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/decorators/QTcpSocketDecorator.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/decorators/ThrottlingDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/decorators/ThrottlingDecorator.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/decorators/ThrottlingDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/decorators/ThrottlingDecorator.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/pairsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/pairsocket.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/pairsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/pairsocket.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks4ReplyMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks4ReplyMessage.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks4ReplyMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks4ReplyMessage.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks4RequestMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks4RequestMessage.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks4RequestMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks4RequestMessage.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5GreetingMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5GreetingMessage.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5GreetingMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5GreetingMessage.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5MethodSelectionMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5MethodSelectionMessage.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5MethodSelectionMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5MethodSelectionMessage.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5ReplyMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5ReplyMessage.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5ReplyMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5ReplyMessage.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5RequestMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5RequestMessage.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5RequestMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5RequestMessage.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5UDPRequestMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5UDPRequestMessage.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/Socks5UDPRequestMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/Socks5UDPRequestMessage.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/SocksProtocolMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/SocksProtocolMessage.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/SocksProtocolMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/SocksProtocolMessage.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/SocksReplyMessage4a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/SocksReplyMessage4a.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/protocol/SocksReplyMessage4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/protocol/SocksReplyMessage4a.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/proxyserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/proxyserver.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/proxyserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/proxyserver.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/sockshub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/sockshub.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/sockshub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/sockshub.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/InitialState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/InitialState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/InitialState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/InitialState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks4ConnectState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks4ConnectState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks4ConnectState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks4ConnectState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks4ConnectedState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks4ConnectedState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks4ConnectedState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks4ConnectedState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks4InitialState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks4InitialState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks4InitialState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks4InitialState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5AuthState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5AuthState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5AuthState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5AuthState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5AuthenticatedState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5AuthenticatedState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5AuthenticatedState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5AuthenticatedState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5ConnectState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5ConnectState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5ConnectState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5ConnectState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5ConnectedState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5ConnectedState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5ConnectedState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5ConnectedState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5UDPAssociateState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5UDPAssociateState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5UDPAssociateState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5UDPAssociateState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5UDPAssociatedState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5UDPAssociatedState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/Socks5UDPAssociatedState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/Socks5UDPAssociatedState.h -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/SocksState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/SocksState.cpp -------------------------------------------------------------------------------- /3rdparty/SocksLib/states/SocksState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/SocksLib/states/SocksState.h -------------------------------------------------------------------------------- /3rdparty/al-khaser.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/al-khaser.pri -------------------------------------------------------------------------------- /3rdparty/include/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/include/Config.h -------------------------------------------------------------------------------- /3rdparty/include/VLCQtCore: -------------------------------------------------------------------------------- 1 | /doc/dev/Qt/rat/3rdparty/vlc-qt/src/core -------------------------------------------------------------------------------- /3rdparty/lz4.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/lz4.pri -------------------------------------------------------------------------------- /3rdparty/screen_capture_lite.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/3rdparty/screen_capture_lite.pri -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/README.md -------------------------------------------------------------------------------- /client/browserspy/abstractbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/abstractbrowser.cpp -------------------------------------------------------------------------------- /client/browserspy/abstractbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/abstractbrowser.h -------------------------------------------------------------------------------- /client/browserspy/browserhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/browserhelper.cpp -------------------------------------------------------------------------------- /client/browserspy/browserhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/browserhelper.h -------------------------------------------------------------------------------- /client/browserspy/browserspy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/browserspy.cpp -------------------------------------------------------------------------------- /client/browserspy/browserspy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/browserspy.h -------------------------------------------------------------------------------- /client/browserspy/browserspy.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/browserspy.pri -------------------------------------------------------------------------------- /client/browserspy/chrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/chrome.cpp -------------------------------------------------------------------------------- /client/browserspy/chrome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/chrome.h -------------------------------------------------------------------------------- /client/browserspy/firefox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/firefox.cpp -------------------------------------------------------------------------------- /client/browserspy/firefox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/firefox.h -------------------------------------------------------------------------------- /client/browserspy/ie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/ie.cpp -------------------------------------------------------------------------------- /client/browserspy/ie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/ie.h -------------------------------------------------------------------------------- /client/browserspy/ie_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/browserspy/ie_windows.h -------------------------------------------------------------------------------- /client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/client.cpp -------------------------------------------------------------------------------- /client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/client.h -------------------------------------------------------------------------------- /client/client.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/client.pro -------------------------------------------------------------------------------- /client/configreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/configreader.cpp -------------------------------------------------------------------------------- /client/configreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/configreader.h -------------------------------------------------------------------------------- /client/desktoplockdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/desktoplockdialog.cpp -------------------------------------------------------------------------------- /client/desktoplockdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/desktoplockdialog.h -------------------------------------------------------------------------------- /client/desktoplockdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/desktoplockdialog.ui -------------------------------------------------------------------------------- /client/filedownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/filedownloader.cpp -------------------------------------------------------------------------------- /client/filedownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/filedownloader.h -------------------------------------------------------------------------------- /client/inputmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/inputmanager.cpp -------------------------------------------------------------------------------- /client/inputmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/inputmanager.h -------------------------------------------------------------------------------- /client/keylogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/keylogger.cpp -------------------------------------------------------------------------------- /client/keylogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/keylogger.h -------------------------------------------------------------------------------- /client/keylogger_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/keylogger_linux.cpp -------------------------------------------------------------------------------- /client/keylogger_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/keylogger_windows.cpp -------------------------------------------------------------------------------- /client/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/keys.cpp -------------------------------------------------------------------------------- /client/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/keys.h -------------------------------------------------------------------------------- /client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/main.cpp -------------------------------------------------------------------------------- /client/messagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/messagebox.cpp -------------------------------------------------------------------------------- /client/messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/messagebox.h -------------------------------------------------------------------------------- /client/nativeutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/nativeutils.cpp -------------------------------------------------------------------------------- /client/nativeutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/nativeutils.h -------------------------------------------------------------------------------- /client/platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/android/AndroidManifest.xml -------------------------------------------------------------------------------- /client/platforms/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/android/build.gradle -------------------------------------------------------------------------------- /client/platforms/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /client/platforms/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /client/platforms/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/android/gradlew -------------------------------------------------------------------------------- /client/platforms/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/android/gradlew.bat -------------------------------------------------------------------------------- /client/platforms/android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/android/res/values/libs.xml -------------------------------------------------------------------------------- /client/platforms/client-android.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/client-android.pri -------------------------------------------------------------------------------- /client/platforms/client-linux.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/client-linux.pri -------------------------------------------------------------------------------- /client/platforms/client-windows.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/platforms/client-windows.pri -------------------------------------------------------------------------------- /client/rawcopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/rawcopy.cpp -------------------------------------------------------------------------------- /client/rawcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/rawcopy.h -------------------------------------------------------------------------------- /client/regkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/regkey.cpp -------------------------------------------------------------------------------- /client/regkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/regkey.h -------------------------------------------------------------------------------- /client/remotecli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/remotecli.cpp -------------------------------------------------------------------------------- /client/remotecli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/remotecli.h -------------------------------------------------------------------------------- /client/screencaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/screencaster.cpp -------------------------------------------------------------------------------- /client/screencaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/screencaster.h -------------------------------------------------------------------------------- /client/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/test.cpp -------------------------------------------------------------------------------- /client/webcam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/webcam.cpp -------------------------------------------------------------------------------- /client/webcam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/webcam.h -------------------------------------------------------------------------------- /client/webcamimagesurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/webcamimagesurface.cpp -------------------------------------------------------------------------------- /client/webcamimagesurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/webcamimagesurface.h -------------------------------------------------------------------------------- /client/win32keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/win32keys.h -------------------------------------------------------------------------------- /client/x11keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/client/x11keys.h -------------------------------------------------------------------------------- /common/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/Optional.h -------------------------------------------------------------------------------- /common/abstractclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractclient.cpp -------------------------------------------------------------------------------- /common/abstractclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractclient.h -------------------------------------------------------------------------------- /common/abstractfilesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractfilesystem.cpp -------------------------------------------------------------------------------- /common/abstractfilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractfilesystem.h -------------------------------------------------------------------------------- /common/abstractregistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractregistry.cpp -------------------------------------------------------------------------------- /common/abstractregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractregistry.h -------------------------------------------------------------------------------- /common/abstractremotecli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractremotecli.cpp -------------------------------------------------------------------------------- /common/abstractremotecli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractremotecli.h -------------------------------------------------------------------------------- /common/abstractwebcammanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractwebcammanager.cpp -------------------------------------------------------------------------------- /common/abstractwebcammanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/abstractwebcammanager.h -------------------------------------------------------------------------------- /common/audiohub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/audiohub.cpp -------------------------------------------------------------------------------- /common/audiohub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/audiohub.h -------------------------------------------------------------------------------- /common/common.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/common.pri -------------------------------------------------------------------------------- /common/consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/consts.h -------------------------------------------------------------------------------- /common/features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/features.cpp -------------------------------------------------------------------------------- /common/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/features.h -------------------------------------------------------------------------------- /common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/file.cpp -------------------------------------------------------------------------------- /common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/file.h -------------------------------------------------------------------------------- /common/objectcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/objectcache.cpp -------------------------------------------------------------------------------- /common/objectcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/objectcache.h -------------------------------------------------------------------------------- /common/pathplaceholder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/pathplaceholder.cpp -------------------------------------------------------------------------------- /common/pathplaceholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/pathplaceholder.h -------------------------------------------------------------------------------- /common/taskmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/taskmanager.cpp -------------------------------------------------------------------------------- /common/taskmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/taskmanager.h -------------------------------------------------------------------------------- /common/variantwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/variantwrapper.cpp -------------------------------------------------------------------------------- /common/variantwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/common/variantwrapper.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/config.h -------------------------------------------------------------------------------- /config.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/config.pri -------------------------------------------------------------------------------- /installer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/.gitignore -------------------------------------------------------------------------------- /installer/automate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/automate.bat -------------------------------------------------------------------------------- /installer/config-online.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/config-online.xml -------------------------------------------------------------------------------- /installer/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/config.xml -------------------------------------------------------------------------------- /installer/copy_exe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/copy_exe.bat -------------------------------------------------------------------------------- /installer/create_installers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/create_installers -------------------------------------------------------------------------------- /installer/create_installers.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/create_installers.bat -------------------------------------------------------------------------------- /installer/create_online_installers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/create_online_installers -------------------------------------------------------------------------------- /installer/create_online_installers.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/create_online_installers.bat -------------------------------------------------------------------------------- /installer/files.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /installer/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/files.txt -------------------------------------------------------------------------------- /installer/init_repo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/init_repo.bat -------------------------------------------------------------------------------- /installer/package_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/package_data.json -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.clientmaker.linux/data/builder/linux/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.clientmaker.linux/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/template_packages/ir.tooska.rat.clientmaker.linux/meta/package.xml -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.clientmaker.macos/data/builder/macos/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.clientmaker.macos/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/template_packages/ir.tooska.rat.clientmaker.macos/meta/package.xml -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.clientmaker.windows/data/builder/windows/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.clientmaker.windows/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/template_packages/ir.tooska.rat.clientmaker.windows/meta/package.xml -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.clientmaker/data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.clientmaker/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/template_packages/ir.tooska.rat.clientmaker/meta/package.xml -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.qt/data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.qt/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/template_packages/ir.tooska.rat.qt/meta/package.xml -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.server/data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat.server/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/template_packages/ir.tooska.rat.server/meta/package.xml -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat/data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/template_packages/ir.tooska.rat/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/installer/template_packages/ir.tooska.rat/meta/package.xml -------------------------------------------------------------------------------- /opts/windows/config.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/opts/windows/config.opt -------------------------------------------------------------------------------- /rat-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/rat-screenshot.png -------------------------------------------------------------------------------- /rat.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/rat.pro -------------------------------------------------------------------------------- /server/ClientMakerWizardStates.scxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/ClientMakerWizardStates.scxml -------------------------------------------------------------------------------- /server/appsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/appsettings.cpp -------------------------------------------------------------------------------- /server/appsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/appsettings.h -------------------------------------------------------------------------------- /server/clientbuildwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/clientbuildwizard.cpp -------------------------------------------------------------------------------- /server/clientbuildwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/clientbuildwizard.h -------------------------------------------------------------------------------- /server/clientbuildwizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/clientbuildwizard.ui -------------------------------------------------------------------------------- /server/core/clientsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/clientsmodel.cpp -------------------------------------------------------------------------------- /server/core/clientsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/clientsmodel.h -------------------------------------------------------------------------------- /server/core/controllerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/controllerbase.cpp -------------------------------------------------------------------------------- /server/core/controllerbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/controllerbase.h -------------------------------------------------------------------------------- /server/core/filetransferthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/filetransferthread.cpp -------------------------------------------------------------------------------- /server/core/filetransferthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/filetransferthread.h -------------------------------------------------------------------------------- /server/core/screenreciver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/screenreciver.cpp -------------------------------------------------------------------------------- /server/core/screenreciver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/screenreciver.h -------------------------------------------------------------------------------- /server/core/variantlistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/variantlistmodel.cpp -------------------------------------------------------------------------------- /server/core/variantlistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/variantlistmodel.h -------------------------------------------------------------------------------- /server/core/variantwrappermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/variantwrappermodel.cpp -------------------------------------------------------------------------------- /server/core/variantwrappermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/core/variantwrappermodel.h -------------------------------------------------------------------------------- /server/dialogs/antidebuggerdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/antidebuggerdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/antidebuggerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/antidebuggerdialog.h -------------------------------------------------------------------------------- /server/dialogs/antidebuggerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/antidebuggerdialog.ui -------------------------------------------------------------------------------- /server/dialogs/browseropentabsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/browseropentabsdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/browseropentabsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/browseropentabsdialog.h -------------------------------------------------------------------------------- /server/dialogs/browseropentabsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/browseropentabsdialog.ui -------------------------------------------------------------------------------- /server/dialogs/browserpasswords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/browserpasswords.cpp -------------------------------------------------------------------------------- /server/dialogs/browserpasswords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/browserpasswords.h -------------------------------------------------------------------------------- /server/dialogs/browserpasswords.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/browserpasswords.ui -------------------------------------------------------------------------------- /server/dialogs/commandlineinterfacedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/commandlineinterfacedialog.cpp -------------------------------------------------------------------------------- /server/dialogs/commandlineinterfacedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/commandlineinterfacedialog.h -------------------------------------------------------------------------------- /server/dialogs/commandlineinterfacedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/commandlineinterfacedialog.ui -------------------------------------------------------------------------------- /server/dialogs/createclientdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/createclientdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/createclientdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/createclientdialog.h -------------------------------------------------------------------------------- /server/dialogs/createclientdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/createclientdialog.ui -------------------------------------------------------------------------------- /server/dialogs/downloadandexecdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/downloadandexecdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/downloadandexecdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/downloadandexecdialog.h -------------------------------------------------------------------------------- /server/dialogs/downloadandexecdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/downloadandexecdialog.ui -------------------------------------------------------------------------------- /server/dialogs/filemanagerdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filemanagerdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/filemanagerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filemanagerdialog.h -------------------------------------------------------------------------------- /server/dialogs/filemanagerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filemanagerdialog.ui -------------------------------------------------------------------------------- /server/dialogs/filetransferdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filetransferdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/filetransferdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filetransferdialog.h -------------------------------------------------------------------------------- /server/dialogs/filetransferdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filetransferdialog.ui -------------------------------------------------------------------------------- /server/dialogs/filetransferprogressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filetransferprogressdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/filetransferprogressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filetransferprogressdialog.h -------------------------------------------------------------------------------- /server/dialogs/filetransferprogressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/filetransferprogressdialog.ui -------------------------------------------------------------------------------- /server/dialogs/keyloggerdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/keyloggerdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/keyloggerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/keyloggerdialog.h -------------------------------------------------------------------------------- /server/dialogs/keyloggerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/keyloggerdialog.ui -------------------------------------------------------------------------------- /server/dialogs/messageboxdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/messageboxdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/messageboxdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/messageboxdialog.h -------------------------------------------------------------------------------- /server/dialogs/messageboxdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/messageboxdialog.ui -------------------------------------------------------------------------------- /server/dialogs/micspydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/micspydialog.cpp -------------------------------------------------------------------------------- /server/dialogs/micspydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/micspydialog.h -------------------------------------------------------------------------------- /server/dialogs/micspydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/micspydialog.ui -------------------------------------------------------------------------------- /server/dialogs/registrydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/registrydialog.cpp -------------------------------------------------------------------------------- /server/dialogs/registrydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/registrydialog.h -------------------------------------------------------------------------------- /server/dialogs/registrydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/registrydialog.ui -------------------------------------------------------------------------------- /server/dialogs/remotedesktoppropertiesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/remotedesktoppropertiesdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/remotedesktoppropertiesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/remotedesktoppropertiesdialog.h -------------------------------------------------------------------------------- /server/dialogs/remotedesktoppropertiesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/remotedesktoppropertiesdialog.ui -------------------------------------------------------------------------------- /server/dialogs/screenshotdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/screenshotdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/screenshotdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/screenshotdialog.h -------------------------------------------------------------------------------- /server/dialogs/screenshotdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/screenshotdialog.ui -------------------------------------------------------------------------------- /server/dialogs/socksproxydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/socksproxydialog.cpp -------------------------------------------------------------------------------- /server/dialogs/socksproxydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/socksproxydialog.h -------------------------------------------------------------------------------- /server/dialogs/socksproxydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/socksproxydialog.ui -------------------------------------------------------------------------------- /server/dialogs/startupmanagerdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/startupmanagerdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/startupmanagerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/startupmanagerdialog.h -------------------------------------------------------------------------------- /server/dialogs/startupmanagerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/startupmanagerdialog.ui -------------------------------------------------------------------------------- /server/dialogs/systeminfodialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/systeminfodialog.cpp -------------------------------------------------------------------------------- /server/dialogs/systeminfodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/systeminfodialog.h -------------------------------------------------------------------------------- /server/dialogs/systeminfodialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/systeminfodialog.ui -------------------------------------------------------------------------------- /server/dialogs/taskmanagerdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/taskmanagerdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/taskmanagerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/taskmanagerdialog.h -------------------------------------------------------------------------------- /server/dialogs/taskmanagerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/taskmanagerdialog.ui -------------------------------------------------------------------------------- /server/dialogs/visitwebsitedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/visitwebsitedialog.cpp -------------------------------------------------------------------------------- /server/dialogs/visitwebsitedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/visitwebsitedialog.h -------------------------------------------------------------------------------- /server/dialogs/visitwebsitedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/visitwebsitedialog.ui -------------------------------------------------------------------------------- /server/dialogs/vncdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/vncdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/vncdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/vncdialog.h -------------------------------------------------------------------------------- /server/dialogs/vncdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/vncdialog.ui -------------------------------------------------------------------------------- /server/dialogs/webcamviewdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/webcamviewdialog.cpp -------------------------------------------------------------------------------- /server/dialogs/webcamviewdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/webcamviewdialog.h -------------------------------------------------------------------------------- /server/dialogs/webcamviewdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/dialogs/webcamviewdialog.ui -------------------------------------------------------------------------------- /server/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/global.cpp -------------------------------------------------------------------------------- /server/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/global.h -------------------------------------------------------------------------------- /server/krdc-qtonly.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/krdc-qtonly.pri -------------------------------------------------------------------------------- /server/krdc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/krdc_debug.h -------------------------------------------------------------------------------- /server/lanAzX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/lanAzX.json -------------------------------------------------------------------------------- /server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/main.cpp -------------------------------------------------------------------------------- /server/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/mainwindow.cpp -------------------------------------------------------------------------------- /server/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/mainwindow.h -------------------------------------------------------------------------------- /server/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/mainwindow.ui -------------------------------------------------------------------------------- /server/remoteview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/remoteview.cpp -------------------------------------------------------------------------------- /server/remoteview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/remoteview.h -------------------------------------------------------------------------------- /server/res/Iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/Iran.png -------------------------------------------------------------------------------- /server/res/United_States_of_America.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/United_States_of_America.png -------------------------------------------------------------------------------- /server/res/exts/_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/_blank.png -------------------------------------------------------------------------------- /server/res/exts/_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/_page.png -------------------------------------------------------------------------------- /server/res/exts/aac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/aac.png -------------------------------------------------------------------------------- /server/res/exts/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/ai.png -------------------------------------------------------------------------------- /server/res/exts/aiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/aiff.png -------------------------------------------------------------------------------- /server/res/exts/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/avi.png -------------------------------------------------------------------------------- /server/res/exts/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/bmp.png -------------------------------------------------------------------------------- /server/res/exts/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/c.png -------------------------------------------------------------------------------- /server/res/exts/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/cpp.png -------------------------------------------------------------------------------- /server/res/exts/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/css.png -------------------------------------------------------------------------------- /server/res/exts/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/csv.png -------------------------------------------------------------------------------- /server/res/exts/dat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/dat.png -------------------------------------------------------------------------------- /server/res/exts/dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/dmg.png -------------------------------------------------------------------------------- /server/res/exts/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/doc.png -------------------------------------------------------------------------------- /server/res/exts/dotx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/dotx.png -------------------------------------------------------------------------------- /server/res/exts/dwg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/dwg.png -------------------------------------------------------------------------------- /server/res/exts/dxf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/dxf.png -------------------------------------------------------------------------------- /server/res/exts/eps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/eps.png -------------------------------------------------------------------------------- /server/res/exts/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/exe.png -------------------------------------------------------------------------------- /server/res/exts/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/flv.png -------------------------------------------------------------------------------- /server/res/exts/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/gif.png -------------------------------------------------------------------------------- /server/res/exts/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/h.png -------------------------------------------------------------------------------- /server/res/exts/hpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/hpp.png -------------------------------------------------------------------------------- /server/res/exts/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/html.png -------------------------------------------------------------------------------- /server/res/exts/ics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/ics.png -------------------------------------------------------------------------------- /server/res/exts/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/iso.png -------------------------------------------------------------------------------- /server/res/exts/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/java.png -------------------------------------------------------------------------------- /server/res/exts/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/jpg.png -------------------------------------------------------------------------------- /server/res/exts/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/js.png -------------------------------------------------------------------------------- /server/res/exts/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/key.png -------------------------------------------------------------------------------- /server/res/exts/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/less.png -------------------------------------------------------------------------------- /server/res/exts/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/mid.png -------------------------------------------------------------------------------- /server/res/exts/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/mp3.png -------------------------------------------------------------------------------- /server/res/exts/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/mp4.png -------------------------------------------------------------------------------- /server/res/exts/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/mpg.png -------------------------------------------------------------------------------- /server/res/exts/odf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/odf.png -------------------------------------------------------------------------------- /server/res/exts/ods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/ods.png -------------------------------------------------------------------------------- /server/res/exts/odt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/odt.png -------------------------------------------------------------------------------- /server/res/exts/otp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/otp.png -------------------------------------------------------------------------------- /server/res/exts/ots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/ots.png -------------------------------------------------------------------------------- /server/res/exts/ott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/ott.png -------------------------------------------------------------------------------- /server/res/exts/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/pdf.png -------------------------------------------------------------------------------- /server/res/exts/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/php.png -------------------------------------------------------------------------------- /server/res/exts/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/png.png -------------------------------------------------------------------------------- /server/res/exts/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/ppt.png -------------------------------------------------------------------------------- /server/res/exts/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/psd.png -------------------------------------------------------------------------------- /server/res/exts/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/py.png -------------------------------------------------------------------------------- /server/res/exts/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/qt.png -------------------------------------------------------------------------------- /server/res/exts/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/rar.png -------------------------------------------------------------------------------- /server/res/exts/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/rb.png -------------------------------------------------------------------------------- /server/res/exts/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/rtf.png -------------------------------------------------------------------------------- /server/res/exts/sass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/sass.png -------------------------------------------------------------------------------- /server/res/exts/scss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/scss.png -------------------------------------------------------------------------------- /server/res/exts/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/sql.png -------------------------------------------------------------------------------- /server/res/exts/tga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/tga.png -------------------------------------------------------------------------------- /server/res/exts/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/tgz.png -------------------------------------------------------------------------------- /server/res/exts/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/tiff.png -------------------------------------------------------------------------------- /server/res/exts/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/txt.png -------------------------------------------------------------------------------- /server/res/exts/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/wav.png -------------------------------------------------------------------------------- /server/res/exts/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/xls.png -------------------------------------------------------------------------------- /server/res/exts/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/xlsx.png -------------------------------------------------------------------------------- /server/res/exts/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/xml.png -------------------------------------------------------------------------------- /server/res/exts/yml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/yml.png -------------------------------------------------------------------------------- /server/res/exts/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/exts/zip.png -------------------------------------------------------------------------------- /server/res/files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/files.json -------------------------------------------------------------------------------- /server/res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/folder.png -------------------------------------------------------------------------------- /server/res/html/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/html/index.htm -------------------------------------------------------------------------------- /server/res/icons/Internet_Security_entrance_exit_log_out_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/Internet_Security_entrance_exit_log_out_arrow.png -------------------------------------------------------------------------------- /server/res/icons/applications-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/applications-system.png -------------------------------------------------------------------------------- /server/res/icons/button_blue_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/button_blue_play.png -------------------------------------------------------------------------------- /server/res/icons/button_blue_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/button_blue_repeat.png -------------------------------------------------------------------------------- /server/res/icons/camera-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/camera-photo.png -------------------------------------------------------------------------------- /server/res/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/cut.png -------------------------------------------------------------------------------- /server/res/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/delete.png -------------------------------------------------------------------------------- /server/res/icons/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/diagram.png -------------------------------------------------------------------------------- /server/res/icons/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/edit-copy.png -------------------------------------------------------------------------------- /server/res/icons/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/edit-paste.png -------------------------------------------------------------------------------- /server/res/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/filter.png -------------------------------------------------------------------------------- /server/res/icons/go-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/go-bottom.png -------------------------------------------------------------------------------- /server/res/icons/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/go-home.png -------------------------------------------------------------------------------- /server/res/icons/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/go-next.png -------------------------------------------------------------------------------- /server/res/icons/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/go-previous.png -------------------------------------------------------------------------------- /server/res/icons/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/icons.qrc -------------------------------------------------------------------------------- /server/res/icons/info_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/info_blue.png -------------------------------------------------------------------------------- /server/res/icons/input-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/input-keyboard.png -------------------------------------------------------------------------------- /server/res/icons/internet-web-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/internet-web-browser.png -------------------------------------------------------------------------------- /server/res/icons/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/lock-open.png -------------------------------------------------------------------------------- /server/res/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/lock.png -------------------------------------------------------------------------------- /server/res/icons/messagebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/messagebox.png -------------------------------------------------------------------------------- /server/res/icons/my-computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/my-computer.png -------------------------------------------------------------------------------- /server/res/icons/network-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/network-offline.png -------------------------------------------------------------------------------- /server/res/icons/network-transmit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/network-transmit.png -------------------------------------------------------------------------------- /server/res/icons/network-wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/network-wired.png -------------------------------------------------------------------------------- /server/res/icons/paul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/paul.png -------------------------------------------------------------------------------- /server/res/icons/power_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/power_blue.png -------------------------------------------------------------------------------- /server/res/icons/preferences-desktop-remote-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/preferences-desktop-remote-desktop.png -------------------------------------------------------------------------------- /server/res/icons/preferences-system-network-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/preferences-system-network-proxy.png -------------------------------------------------------------------------------- /server/res/icons/preferences-system-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/preferences-system-session.png -------------------------------------------------------------------------------- /server/res/icons/preferences-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/preferences-system.png -------------------------------------------------------------------------------- /server/res/icons/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/rat.png -------------------------------------------------------------------------------- /server/res/icons/recreate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/recreate -------------------------------------------------------------------------------- /server/res/icons/registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/registry.png -------------------------------------------------------------------------------- /server/res/icons/system-file-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/system-file-manager.png -------------------------------------------------------------------------------- /server/res/icons/task-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/task-manager.png -------------------------------------------------------------------------------- /server/res/icons/transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/transfer.png -------------------------------------------------------------------------------- /server/res/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/up.png -------------------------------------------------------------------------------- /server/res/icons/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/user-home.png -------------------------------------------------------------------------------- /server/res/icons/utilities-system-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/utilities-system-monitor.png -------------------------------------------------------------------------------- /server/res/icons/utilities-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/utilities-terminal.png -------------------------------------------------------------------------------- /server/res/icons/video-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/video-display.png -------------------------------------------------------------------------------- /server/res/icons/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/icons/view-refresh.png -------------------------------------------------------------------------------- /server/res/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/linux.png -------------------------------------------------------------------------------- /server/res/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/res.qrc -------------------------------------------------------------------------------- /server/res/themes/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/themes/dark.css -------------------------------------------------------------------------------- /server/res/themes/dark_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/themes/dark_style.css -------------------------------------------------------------------------------- /server/res/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/themes/default.css -------------------------------------------------------------------------------- /server/res/themes/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/themes/dracula.css -------------------------------------------------------------------------------- /server/res/themes/fusion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/themes/fusion.css -------------------------------------------------------------------------------- /server/res/themes/material-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/themes/material-blue.css -------------------------------------------------------------------------------- /server/res/themes/modern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/themes/modern.css -------------------------------------------------------------------------------- /server/res/themes/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/themes/web.css -------------------------------------------------------------------------------- /server/res/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/res/windows.png -------------------------------------------------------------------------------- /server/server.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/server.pro -------------------------------------------------------------------------------- /server/settingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/settingsdialog.cpp -------------------------------------------------------------------------------- /server/settingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/settingsdialog.h -------------------------------------------------------------------------------- /server/settingsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/settingsdialog.ui -------------------------------------------------------------------------------- /server/translations/rat_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/translations/rat_en.qm -------------------------------------------------------------------------------- /server/translations/rat_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/translations/rat_en.ts -------------------------------------------------------------------------------- /server/translations/rat_fa.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/translations/rat_fa.qm -------------------------------------------------------------------------------- /server/translations/rat_fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/translations/rat_fa.ts -------------------------------------------------------------------------------- /server/ui/consolewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/ui/consolewidget.cpp -------------------------------------------------------------------------------- /server/ui/consolewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/ui/consolewidget.h -------------------------------------------------------------------------------- /server/ui/registryvalueeditordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/ui/registryvalueeditordialog.cpp -------------------------------------------------------------------------------- /server/ui/registryvalueeditordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/ui/registryvalueeditordialog.h -------------------------------------------------------------------------------- /server/ui/registryvalueeditordialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/ui/registryvalueeditordialog.ui -------------------------------------------------------------------------------- /server/webserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/webserver.cpp -------------------------------------------------------------------------------- /server/webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/server/webserver.h -------------------------------------------------------------------------------- /tests/AndroidAssets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AndroidAssets/.gitignore -------------------------------------------------------------------------------- /tests/AndroidAssets/AndroidAssets.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AndroidAssets/AndroidAssets.pro -------------------------------------------------------------------------------- /tests/AndroidAssets/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AndroidAssets/main.cpp -------------------------------------------------------------------------------- /tests/AndroidAssets/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AndroidAssets/mainwindow.cpp -------------------------------------------------------------------------------- /tests/AndroidAssets/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AndroidAssets/mainwindow.h -------------------------------------------------------------------------------- /tests/AndroidAssets/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AndroidAssets/mainwindow.ui -------------------------------------------------------------------------------- /tests/AudioBroadcaster/AudioBroadcaster.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AudioBroadcaster/AudioBroadcaster.pro -------------------------------------------------------------------------------- /tests/AudioBroadcaster/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AudioBroadcaster/main.cpp -------------------------------------------------------------------------------- /tests/AudioBroadcaster/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AudioBroadcaster/mainwindow.cpp -------------------------------------------------------------------------------- /tests/AudioBroadcaster/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AudioBroadcaster/mainwindow.h -------------------------------------------------------------------------------- /tests/AudioBroadcaster/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/AudioBroadcaster/mainwindow.ui -------------------------------------------------------------------------------- /tests/BrowserPasswords/BrowserPasswords.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/BrowserPasswords/BrowserPasswords.pro -------------------------------------------------------------------------------- /tests/BrowserPasswords/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/BrowserPasswords/main.cpp -------------------------------------------------------------------------------- /tests/BrowserPasswords/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/BrowserPasswords/mainwindow.cpp -------------------------------------------------------------------------------- /tests/BrowserPasswords/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/BrowserPasswords/mainwindow.h -------------------------------------------------------------------------------- /tests/BrowserPasswords/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/BrowserPasswords/mainwindow.ui -------------------------------------------------------------------------------- /tests/CreateWindow/CreateWindow.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/CreateWindow/CreateWindow.pro -------------------------------------------------------------------------------- /tests/CreateWindow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/CreateWindow/main.cpp -------------------------------------------------------------------------------- /tests/CreateWindow/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/CreateWindow/mainwindow.cpp -------------------------------------------------------------------------------- /tests/CreateWindow/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/CreateWindow/mainwindow.h -------------------------------------------------------------------------------- /tests/CreateWindow/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/CreateWindow/mainwindow.ui -------------------------------------------------------------------------------- /tests/CreateWindow/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/CreateWindow/window.cpp -------------------------------------------------------------------------------- /tests/CreateWindow/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/CreateWindow/window.h -------------------------------------------------------------------------------- /tests/DownloadAndExec/DownloadAndExec.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/DownloadAndExec/DownloadAndExec.pro -------------------------------------------------------------------------------- /tests/DownloadAndExec/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/DownloadAndExec/main.cpp -------------------------------------------------------------------------------- /tests/DownloadAndExec/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/DownloadAndExec/mainwindow.cpp -------------------------------------------------------------------------------- /tests/DownloadAndExec/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/DownloadAndExec/mainwindow.h -------------------------------------------------------------------------------- /tests/DownloadAndExec/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/DownloadAndExec/mainwindow.ui -------------------------------------------------------------------------------- /tests/MessageBox/MessageBox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/MessageBox/MessageBox.pro -------------------------------------------------------------------------------- /tests/MessageBox/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/MessageBox/main.cpp -------------------------------------------------------------------------------- /tests/MessageBox/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/MessageBox/mainwindow.cpp -------------------------------------------------------------------------------- /tests/MessageBox/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/MessageBox/mainwindow.h -------------------------------------------------------------------------------- /tests/MessageBox/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/MessageBox/mainwindow.ui -------------------------------------------------------------------------------- /tests/RawCopy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/RawCopy/.gitignore -------------------------------------------------------------------------------- /tests/RawCopy/RawCopy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/RawCopy/RawCopy.pro -------------------------------------------------------------------------------- /tests/RawCopy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/RawCopy/main.cpp -------------------------------------------------------------------------------- /tests/RawCopy/rawcopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/RawCopy/rawcopy.cpp -------------------------------------------------------------------------------- /tests/RawCopy/rawcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/RawCopy/rawcopy.h -------------------------------------------------------------------------------- /tests/Registry/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/main.cpp -------------------------------------------------------------------------------- /tests/Registry/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/mainwindow.cpp -------------------------------------------------------------------------------- /tests/Registry/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/mainwindow.h -------------------------------------------------------------------------------- /tests/Registry/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/mainwindow.ui -------------------------------------------------------------------------------- /tests/Registry/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/registry.cpp -------------------------------------------------------------------------------- /tests/Registry/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/registry.h -------------------------------------------------------------------------------- /tests/Registry/regkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/regkey.cpp -------------------------------------------------------------------------------- /tests/Registry/regkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/regkey.h -------------------------------------------------------------------------------- /tests/Registry/untitled1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/Registry/untitled1.pro -------------------------------------------------------------------------------- /tests/ScreenCapture/ScreenCapture.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/ScreenCapture/ScreenCapture.pro -------------------------------------------------------------------------------- /tests/ScreenCapture/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/ScreenCapture/main.cpp -------------------------------------------------------------------------------- /tests/ScreenCapture/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/ScreenCapture/mainwindow.cpp -------------------------------------------------------------------------------- /tests/ScreenCapture/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/ScreenCapture/mainwindow.h -------------------------------------------------------------------------------- /tests/ScreenCapture/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/ScreenCapture/mainwindow.ui -------------------------------------------------------------------------------- /tests/input_manager/input_manager.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/input_manager/input_manager.pro -------------------------------------------------------------------------------- /tests/input_manager/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/input_manager/main.cpp -------------------------------------------------------------------------------- /tests/input_manager/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/input_manager/mainwindow.cpp -------------------------------------------------------------------------------- /tests/input_manager/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/input_manager/mainwindow.h -------------------------------------------------------------------------------- /tests/input_manager/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/input_manager/mainwindow.ui -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tests/tests.pro -------------------------------------------------------------------------------- /tools/ClientMaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/.gitignore -------------------------------------------------------------------------------- /tools/ClientMaker/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/Client/Client.csproj -------------------------------------------------------------------------------- /tools/ClientMaker/Client/ConsoleProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/Client/ConsoleProgress.cs -------------------------------------------------------------------------------- /tools/ClientMaker/Client/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/Client/Data.cs -------------------------------------------------------------------------------- /tools/ClientMaker/Client/DataMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/Client/DataMemberAttribute.cs -------------------------------------------------------------------------------- /tools/ClientMaker/Client/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/Client/Global.cs -------------------------------------------------------------------------------- /tools/ClientMaker/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/Client/Program.cs -------------------------------------------------------------------------------- /tools/ClientMaker/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/ClientMaker/Client/Unzip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/Client/Unzip.cs -------------------------------------------------------------------------------- /tools/ClientMaker/ClientMaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/ClientMaker.sln -------------------------------------------------------------------------------- /tools/ClientMaker/ClientMaker/ArgsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/ClientMaker/ArgsParser.cs -------------------------------------------------------------------------------- /tools/ClientMaker/ClientMaker/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/ClientMaker/Builder.cs -------------------------------------------------------------------------------- /tools/ClientMaker/ClientMaker/ClientMaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/ClientMaker/ClientMaker.csproj -------------------------------------------------------------------------------- /tools/ClientMaker/ClientMaker/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/ClientMaker/Data.cs -------------------------------------------------------------------------------- /tools/ClientMaker/ClientMaker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/ClientMaker/Program.cs -------------------------------------------------------------------------------- /tools/ClientMaker/ClientMaker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/ClientMaker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/ClientMaker/ClientMaker/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/ClientMaker/ClientMaker/packages.config -------------------------------------------------------------------------------- /tools/FileOptionPos/FileOptionPos.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/FileOptionPos/FileOptionPos.pro -------------------------------------------------------------------------------- /tools/FileOptionPos/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/FileOptionPos/main.cpp -------------------------------------------------------------------------------- /tools/FileOptionPos/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/FileOptionPos/mainwindow.cpp -------------------------------------------------------------------------------- /tools/FileOptionPos/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/FileOptionPos/mainwindow.h -------------------------------------------------------------------------------- /tools/FileOptionPos/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/FileOptionPos/mainwindow.ui -------------------------------------------------------------------------------- /tools/JsonMaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/JsonMaker/.gitignore -------------------------------------------------------------------------------- /tools/JsonMaker/JsonMaker.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/JsonMaker/JsonMaker.pro -------------------------------------------------------------------------------- /tools/JsonMaker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/JsonMaker/main.cpp -------------------------------------------------------------------------------- /tools/OutputFilesList/OutputFilesList.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/OutputFilesList/OutputFilesList.pro -------------------------------------------------------------------------------- /tools/OutputFilesList/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/OutputFilesList/main.cpp -------------------------------------------------------------------------------- /tools/OutputFilesList/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/OutputFilesList/mainwindow.cpp -------------------------------------------------------------------------------- /tools/OutputFilesList/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/OutputFilesList/mainwindow.h -------------------------------------------------------------------------------- /tools/OutputFilesList/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/OutputFilesList/mainwindow.ui -------------------------------------------------------------------------------- /tools/RepoMaker/RepoMaker.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/RepoMaker/RepoMaker.pro -------------------------------------------------------------------------------- /tools/RepoMaker/Script.js: -------------------------------------------------------------------------------- 1 | copy_file $server out/ 2 | -------------------------------------------------------------------------------- /tools/RepoMaker/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/RepoMaker/dialog.cpp -------------------------------------------------------------------------------- /tools/RepoMaker/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/RepoMaker/dialog.h -------------------------------------------------------------------------------- /tools/RepoMaker/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/RepoMaker/dialog.ui -------------------------------------------------------------------------------- /tools/RepoMaker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/RepoMaker/main.cpp -------------------------------------------------------------------------------- /tools/RepoMaker/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/RepoMaker/res.qrc -------------------------------------------------------------------------------- /tools/tools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/tools/tools.pro -------------------------------------------------------------------------------- /vars.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedMasafi/qt-rat/HEAD/vars.pri --------------------------------------------------------------------------------