├── .gitattributes ├── .gitignore ├── BypassUAC.sln ├── BypassUAC ├── BypassUAC.vcxproj ├── BypassUAC.vcxproj.filters ├── apphelp.h ├── carberp.c ├── carberp.h ├── cmdline.c ├── cmdline.h ├── compress.c ├── compress.h ├── consts.h ├── fubuki32.h ├── fubuki32comp.h ├── fubuki64.h ├── fubuki64comp.h ├── global.h ├── gootkit.c ├── gootkit.h ├── hibiki32.h ├── hibiki32comp.h ├── hibiki64.h ├── hibiki64comp.h ├── hybrids.c ├── hybrids.h ├── inazuma32.h ├── inject.c ├── inject.h ├── kongou32.h ├── kongou32comp.h ├── kongou64.h ├── kongou64comp.h ├── main.c ├── makecab.c ├── makecab.h ├── pitou.c ├── pitou.h ├── simda.c ├── simda.h ├── sup.c └── sup.h ├── README.md └── Shared ├── _strcat.c ├── _strcmp.c ├── _strcmpi.c ├── _strcpy.c ├── _strend.c ├── _strlen.c ├── _strncmp.c ├── _strncmpi.c ├── _strncpy.c ├── minirtl.h ├── ntos.h ├── rtltypes.h ├── strtoul.c └── ultostr.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/.gitignore -------------------------------------------------------------------------------- /BypassUAC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC.sln -------------------------------------------------------------------------------- /BypassUAC/BypassUAC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/BypassUAC.vcxproj -------------------------------------------------------------------------------- /BypassUAC/BypassUAC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/BypassUAC.vcxproj.filters -------------------------------------------------------------------------------- /BypassUAC/apphelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/apphelp.h -------------------------------------------------------------------------------- /BypassUAC/carberp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/carberp.c -------------------------------------------------------------------------------- /BypassUAC/carberp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/carberp.h -------------------------------------------------------------------------------- /BypassUAC/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/cmdline.c -------------------------------------------------------------------------------- /BypassUAC/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/cmdline.h -------------------------------------------------------------------------------- /BypassUAC/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/compress.c -------------------------------------------------------------------------------- /BypassUAC/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/compress.h -------------------------------------------------------------------------------- /BypassUAC/consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/consts.h -------------------------------------------------------------------------------- /BypassUAC/fubuki32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/fubuki32.h -------------------------------------------------------------------------------- /BypassUAC/fubuki32comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/fubuki32comp.h -------------------------------------------------------------------------------- /BypassUAC/fubuki64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/fubuki64.h -------------------------------------------------------------------------------- /BypassUAC/fubuki64comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/fubuki64comp.h -------------------------------------------------------------------------------- /BypassUAC/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/global.h -------------------------------------------------------------------------------- /BypassUAC/gootkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/gootkit.c -------------------------------------------------------------------------------- /BypassUAC/gootkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/gootkit.h -------------------------------------------------------------------------------- /BypassUAC/hibiki32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/hibiki32.h -------------------------------------------------------------------------------- /BypassUAC/hibiki32comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/hibiki32comp.h -------------------------------------------------------------------------------- /BypassUAC/hibiki64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/hibiki64.h -------------------------------------------------------------------------------- /BypassUAC/hibiki64comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/hibiki64comp.h -------------------------------------------------------------------------------- /BypassUAC/hybrids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/hybrids.c -------------------------------------------------------------------------------- /BypassUAC/hybrids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/hybrids.h -------------------------------------------------------------------------------- /BypassUAC/inazuma32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/inazuma32.h -------------------------------------------------------------------------------- /BypassUAC/inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/inject.c -------------------------------------------------------------------------------- /BypassUAC/inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/inject.h -------------------------------------------------------------------------------- /BypassUAC/kongou32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/kongou32.h -------------------------------------------------------------------------------- /BypassUAC/kongou32comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/kongou32comp.h -------------------------------------------------------------------------------- /BypassUAC/kongou64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/kongou64.h -------------------------------------------------------------------------------- /BypassUAC/kongou64comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/kongou64comp.h -------------------------------------------------------------------------------- /BypassUAC/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/main.c -------------------------------------------------------------------------------- /BypassUAC/makecab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/makecab.c -------------------------------------------------------------------------------- /BypassUAC/makecab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/makecab.h -------------------------------------------------------------------------------- /BypassUAC/pitou.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/pitou.c -------------------------------------------------------------------------------- /BypassUAC/pitou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/pitou.h -------------------------------------------------------------------------------- /BypassUAC/simda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/simda.c -------------------------------------------------------------------------------- /BypassUAC/simda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/simda.h -------------------------------------------------------------------------------- /BypassUAC/sup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/sup.c -------------------------------------------------------------------------------- /BypassUAC/sup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/BypassUAC/sup.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/README.md -------------------------------------------------------------------------------- /Shared/_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strcat.c -------------------------------------------------------------------------------- /Shared/_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strcmp.c -------------------------------------------------------------------------------- /Shared/_strcmpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strcmpi.c -------------------------------------------------------------------------------- /Shared/_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strcpy.c -------------------------------------------------------------------------------- /Shared/_strend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strend.c -------------------------------------------------------------------------------- /Shared/_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strlen.c -------------------------------------------------------------------------------- /Shared/_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strncmp.c -------------------------------------------------------------------------------- /Shared/_strncmpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strncmpi.c -------------------------------------------------------------------------------- /Shared/_strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/_strncpy.c -------------------------------------------------------------------------------- /Shared/minirtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/minirtl.h -------------------------------------------------------------------------------- /Shared/ntos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/ntos.h -------------------------------------------------------------------------------- /Shared/rtltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/rtltypes.h -------------------------------------------------------------------------------- /Shared/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/strtoul.c -------------------------------------------------------------------------------- /Shared/ultostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegslva/BypassUAC/HEAD/Shared/ultostr.c --------------------------------------------------------------------------------