├── .gitignore ├── CompMgmtLauncher_DLL_UACBypass.sln ├── CompMgmtLauncher_DLL_UACBypass ├── CompMgmtLauncher_DLL_UACBypass.cpp ├── CompMgmtLauncher_DLL_UACBypass.rc ├── CompMgmtLauncher_DLL_UACBypass.vcxproj ├── CompMgmtLauncher_DLL_UACBypass.vcxproj.filters ├── Flutterfox2.ico ├── resource.h └── secur32_org.dll ├── CompMgmtLauncher_DLL_sideload_autoelevated.png ├── README.md ├── Secur32 ├── Secur32.cpp ├── Secur32.rc ├── Secur32.vcxproj ├── Secur32.vcxproj.filters ├── framework.h ├── pch.cpp ├── pch.h └── resource.h └── Sharepoint.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/.gitignore -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_UACBypass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_UACBypass.sln -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_UACBypass/CompMgmtLauncher_DLL_UACBypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_UACBypass/CompMgmtLauncher_DLL_UACBypass.cpp -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_UACBypass/CompMgmtLauncher_DLL_UACBypass.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_UACBypass/CompMgmtLauncher_DLL_UACBypass.rc -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_UACBypass/CompMgmtLauncher_DLL_UACBypass.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_UACBypass/CompMgmtLauncher_DLL_UACBypass.vcxproj -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_UACBypass/CompMgmtLauncher_DLL_UACBypass.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_UACBypass/CompMgmtLauncher_DLL_UACBypass.vcxproj.filters -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_UACBypass/Flutterfox2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_UACBypass/Flutterfox2.ico -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_UACBypass/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_UACBypass/resource.h -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_UACBypass/secur32_org.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_UACBypass/secur32_org.dll -------------------------------------------------------------------------------- /CompMgmtLauncher_DLL_sideload_autoelevated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/CompMgmtLauncher_DLL_sideload_autoelevated.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/README.md -------------------------------------------------------------------------------- /Secur32/Secur32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Secur32/Secur32.cpp -------------------------------------------------------------------------------- /Secur32/Secur32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Secur32/Secur32.rc -------------------------------------------------------------------------------- /Secur32/Secur32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Secur32/Secur32.vcxproj -------------------------------------------------------------------------------- /Secur32/Secur32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Secur32/Secur32.vcxproj.filters -------------------------------------------------------------------------------- /Secur32/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Secur32/framework.h -------------------------------------------------------------------------------- /Secur32/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Secur32/pch.cpp -------------------------------------------------------------------------------- /Secur32/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Secur32/pch.h -------------------------------------------------------------------------------- /Secur32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Secur32/resource.h -------------------------------------------------------------------------------- /Sharepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerhouse-opensource/CompMgmtLauncher_DLL_UACBypass/HEAD/Sharepoint.png --------------------------------------------------------------------------------