├── .gitattributes ├── .gitignore ├── README.md ├── ReflectiveDll.sln ├── ReflectiveDll ├── ApiAddUser.h ├── ReflectiveDll.vcxproj ├── ReflectiveDll.vcxproj.filters ├── Rinject.h ├── Rloader.h ├── Rlodaer.cpp └── dllmain.cpp ├── cna ├── AddUser.cna ├── ReflectiveDll.x64.dll └── bin │ ├── DirectoryAddUser.exe │ └── SelfBuildAPIAddUser.exe ├── image.png └── image1.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/README.md -------------------------------------------------------------------------------- /ReflectiveDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/ReflectiveDll.sln -------------------------------------------------------------------------------- /ReflectiveDll/ApiAddUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/ReflectiveDll/ApiAddUser.h -------------------------------------------------------------------------------- /ReflectiveDll/ReflectiveDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/ReflectiveDll/ReflectiveDll.vcxproj -------------------------------------------------------------------------------- /ReflectiveDll/ReflectiveDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/ReflectiveDll/ReflectiveDll.vcxproj.filters -------------------------------------------------------------------------------- /ReflectiveDll/Rinject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/ReflectiveDll/Rinject.h -------------------------------------------------------------------------------- /ReflectiveDll/Rloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/ReflectiveDll/Rloader.h -------------------------------------------------------------------------------- /ReflectiveDll/Rlodaer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/ReflectiveDll/Rlodaer.cpp -------------------------------------------------------------------------------- /ReflectiveDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/ReflectiveDll/dllmain.cpp -------------------------------------------------------------------------------- /cna/AddUser.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/cna/AddUser.cna -------------------------------------------------------------------------------- /cna/ReflectiveDll.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/cna/ReflectiveDll.x64.dll -------------------------------------------------------------------------------- /cna/bin/DirectoryAddUser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/cna/bin/DirectoryAddUser.exe -------------------------------------------------------------------------------- /cna/bin/SelfBuildAPIAddUser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/cna/bin/SelfBuildAPIAddUser.exe -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/image.png -------------------------------------------------------------------------------- /image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crisprss/BypassUserAdd/HEAD/image1.png --------------------------------------------------------------------------------