├── .gitignore ├── Client ├── HiddenDesktop.h ├── Utils.h ├── hiddenDesktop.cpp ├── hiddenDesktop.vcxproj ├── hiddenDesktop.vcxproj.filters └── hiddenDesktop.vcxproj.user ├── HVNC.sln ├── README.md ├── Server ├── Common.h ├── ControlWindow.cpp ├── ControlWindow.h ├── Main.cpp ├── Server.cpp ├── Server.h ├── Server.vcxproj ├── Server.vcxproj.filters └── Server.vcxproj.user └── anti-hvnc └── HiddenDesktopViewer_Bin.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/.gitignore -------------------------------------------------------------------------------- /Client/HiddenDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Client/HiddenDesktop.h -------------------------------------------------------------------------------- /Client/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Client/Utils.h -------------------------------------------------------------------------------- /Client/hiddenDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Client/hiddenDesktop.cpp -------------------------------------------------------------------------------- /Client/hiddenDesktop.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Client/hiddenDesktop.vcxproj -------------------------------------------------------------------------------- /Client/hiddenDesktop.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Client/hiddenDesktop.vcxproj.filters -------------------------------------------------------------------------------- /Client/hiddenDesktop.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Client/hiddenDesktop.vcxproj.user -------------------------------------------------------------------------------- /HVNC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/HVNC.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/README.md -------------------------------------------------------------------------------- /Server/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/Common.h -------------------------------------------------------------------------------- /Server/ControlWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/ControlWindow.cpp -------------------------------------------------------------------------------- /Server/ControlWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/ControlWindow.h -------------------------------------------------------------------------------- /Server/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/Main.cpp -------------------------------------------------------------------------------- /Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/Server.cpp -------------------------------------------------------------------------------- /Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/Server.h -------------------------------------------------------------------------------- /Server/Server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/Server.vcxproj -------------------------------------------------------------------------------- /Server/Server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/Server.vcxproj.filters -------------------------------------------------------------------------------- /Server/Server.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/Server/Server.vcxproj.user -------------------------------------------------------------------------------- /anti-hvnc/HiddenDesktopViewer_Bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeffry38/HiddenVNC/HEAD/anti-hvnc/HiddenDesktopViewer_Bin.zip --------------------------------------------------------------------------------