├── FileSyncConfigTemp_hardlink ├── Logfile.PML ├── OneDrivehardlink_poc │ ├── OneDrivehardlink_poc.sln │ ├── hardlink_poc │ │ ├── CommonUtils.cpp │ │ ├── CommonUtils.h │ │ ├── FileOpLock.cpp │ │ ├── FileOpLock.h │ │ ├── Hardlink.cpp │ │ ├── NativeSymlink.cpp │ │ ├── ReparsePoint.cpp │ │ ├── ReparsePoint.h │ │ ├── ScopedHandle.cpp │ │ ├── ScopedHandle.h │ │ ├── hardlink_poc.vcxproj │ │ ├── hardlink_poc.vcxproj.filters │ │ ├── hardlink_poc.vcxproj.user │ │ ├── main.cpp │ │ ├── ntimports.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── typed_buffer.h │ │ └── x64 │ │ │ └── Debug │ │ │ ├── CommonUtils.obj │ │ │ ├── FileOpLock.obj │ │ │ ├── Hardlink.obj │ │ │ ├── NativeSymlink.obj │ │ │ ├── ReparsePoint.obj │ │ │ ├── ScopedHandle.obj │ │ │ ├── hardlink_poc.Build.CppClean.log │ │ │ ├── hardlink_poc.log │ │ │ ├── hardlink_poc.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── hardlink_poc.lastbuildstate │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ │ ├── hardlink_poc.vcxproj.FileListAbsolute.txt │ │ │ ├── main.obj │ │ │ ├── stdafx.obj │ │ │ ├── vc142.idb │ │ │ └── vc142.pdb │ └── x64 │ │ └── Debug │ │ ├── hardlink_poc.exe │ │ ├── hardlink_poc.ilk │ │ └── hardlink_poc.pdb ├── aria-debug-11608.log └── report.txt ├── FileSyncHelper_hardlink ├── poc │ ├── CreateHardlink.exe │ └── run.bat └── report.txt ├── OneDriveFileSyncConfig_symlink ├── Logfile.PML ├── poc │ ├── CreateSymlink.exe │ └── run.bat └── report.txt ├── OneDriveSetup_hardlink ├── poc │ ├── CreateHardlink.exe │ └── run.bat └── report.txt ├── OneDriveSetup_hardlink_v2 ├── poc │ ├── CreateHardlink.exe │ └── run.bat └── report.txt ├── OneDriveStandaloneUpdater_hardlink ├── poc │ ├── CreateHardlink.exe │ └── run.bat └── report.txt ├── WERReport-CVE-2020-0753 ├── CreateMountPoint.exe ├── CreateSymlink.exe ├── GET.ps1 ├── JunctionAndSetOplock.ps1 ├── Logfile.PML ├── POC.md ├── SetOpLock.exe ├── SwitchJunction.ps1 ├── Trigger.ps1 ├── WerAlpc.exe ├── WerAlpc │ ├── WerAlpc.sln │ ├── WerAlpc │ │ ├── ALPC.h │ │ ├── Debug │ │ │ ├── WerAlpc.Build.CppClean.log │ │ │ ├── WerAlpc.log │ │ │ ├── WerAlpc.obj │ │ │ ├── WerAlpc.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── WerAlpc.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ ├── WerAlpc.vcxproj.FileListAbsolute.txt │ │ │ ├── vc142.idb │ │ │ └── vc142.pdb │ │ ├── UserModeDefs.h │ │ ├── WerAlpc.cpp │ │ ├── WerAlpc.vcxproj │ │ ├── WerAlpc.vcxproj.filters │ │ ├── WerAlpc.vcxproj.user │ │ ├── ntbasic.h │ │ ├── ntdefs.h │ │ ├── ntlpcapi.cpp │ │ ├── ntlpcapi.h │ │ └── x64 │ │ │ ├── Debug │ │ │ ├── WerAlpc.Build.CppClean.log │ │ │ ├── WerAlpc.log │ │ │ ├── WerAlpc.obj │ │ │ ├── WerAlpc.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── WerAlpc.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ ├── WerAlpc.vcxproj.FileListAbsolute.txt │ │ │ ├── vc142.idb │ │ │ └── vc142.pdb │ │ │ └── Release │ │ │ ├── WerAlpc.Build.CppClean.log │ │ │ ├── WerAlpc.log │ │ │ ├── WerAlpc.obj │ │ │ ├── WerAlpc.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── WerAlpc.lastbuildstate │ │ │ ├── WerAlpc.write.1u.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ │ ├── WerAlpc.vcxproj.FileListAbsolute.txt │ │ │ └── vc142.pdb │ └── x64 │ │ └── Release │ │ ├── WerAlpc.exe │ │ ├── WerAlpc.iobj │ │ ├── WerAlpc.ipdb │ │ └── WerAlpc.pdb └── wer.dll ├── WERReport-CVE-2020-0754 ├── Appendix.docx └── WERRaceCondition.docx └── readme.md /FileSyncConfigTemp_hardlink/Logfile.PML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/Logfile.PML -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/OneDrivehardlink_poc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/OneDrivehardlink_poc.sln -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/CommonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/CommonUtils.cpp -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/CommonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/CommonUtils.h -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/FileOpLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/FileOpLock.cpp -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/FileOpLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/FileOpLock.h -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/Hardlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/Hardlink.cpp -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/NativeSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/NativeSymlink.cpp -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ReparsePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ReparsePoint.cpp -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ReparsePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ReparsePoint.h -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ScopedHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ScopedHandle.cpp -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ScopedHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ScopedHandle.h -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/hardlink_poc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/hardlink_poc.vcxproj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/hardlink_poc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/hardlink_poc.vcxproj.filters -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/hardlink_poc.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/hardlink_poc.vcxproj.user -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/main.cpp -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ntimports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/ntimports.h -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/stdafx.cpp -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/stdafx.h -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/targetver.h -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/typed_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/typed_buffer.h -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/CommonUtils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/CommonUtils.obj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/FileOpLock.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/FileOpLock.obj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/Hardlink.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/Hardlink.obj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/NativeSymlink.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/NativeSymlink.obj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/ReparsePoint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/ReparsePoint.obj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/ScopedHandle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/ScopedHandle.obj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.Build.CppClean.log -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.log -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/hardlink_poc.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/hardlink_poc.lastbuildstate -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/hardlink_poc.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/main.obj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/stdafx.obj -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/hardlink_poc/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/x64/Debug/hardlink_poc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/x64/Debug/hardlink_poc.exe -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/x64/Debug/hardlink_poc.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/x64/Debug/hardlink_poc.ilk -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/x64/Debug/hardlink_poc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/OneDrivehardlink_poc/x64/Debug/hardlink_poc.pdb -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/aria-debug-11608.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/aria-debug-11608.log -------------------------------------------------------------------------------- /FileSyncConfigTemp_hardlink/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncConfigTemp_hardlink/report.txt -------------------------------------------------------------------------------- /FileSyncHelper_hardlink/poc/CreateHardlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncHelper_hardlink/poc/CreateHardlink.exe -------------------------------------------------------------------------------- /FileSyncHelper_hardlink/poc/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncHelper_hardlink/poc/run.bat -------------------------------------------------------------------------------- /FileSyncHelper_hardlink/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/FileSyncHelper_hardlink/report.txt -------------------------------------------------------------------------------- /OneDriveFileSyncConfig_symlink/Logfile.PML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveFileSyncConfig_symlink/Logfile.PML -------------------------------------------------------------------------------- /OneDriveFileSyncConfig_symlink/poc/CreateSymlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveFileSyncConfig_symlink/poc/CreateSymlink.exe -------------------------------------------------------------------------------- /OneDriveFileSyncConfig_symlink/poc/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveFileSyncConfig_symlink/poc/run.bat -------------------------------------------------------------------------------- /OneDriveFileSyncConfig_symlink/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveFileSyncConfig_symlink/report.txt -------------------------------------------------------------------------------- /OneDriveSetup_hardlink/poc/CreateHardlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveSetup_hardlink/poc/CreateHardlink.exe -------------------------------------------------------------------------------- /OneDriveSetup_hardlink/poc/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveSetup_hardlink/poc/run.bat -------------------------------------------------------------------------------- /OneDriveSetup_hardlink/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveSetup_hardlink/report.txt -------------------------------------------------------------------------------- /OneDriveSetup_hardlink_v2/poc/CreateHardlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveSetup_hardlink_v2/poc/CreateHardlink.exe -------------------------------------------------------------------------------- /OneDriveSetup_hardlink_v2/poc/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveSetup_hardlink_v2/poc/run.bat -------------------------------------------------------------------------------- /OneDriveSetup_hardlink_v2/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveSetup_hardlink_v2/report.txt -------------------------------------------------------------------------------- /OneDriveStandaloneUpdater_hardlink/poc/CreateHardlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveStandaloneUpdater_hardlink/poc/CreateHardlink.exe -------------------------------------------------------------------------------- /OneDriveStandaloneUpdater_hardlink/poc/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveStandaloneUpdater_hardlink/poc/run.bat -------------------------------------------------------------------------------- /OneDriveStandaloneUpdater_hardlink/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/OneDriveStandaloneUpdater_hardlink/report.txt -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/CreateMountPoint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/CreateMountPoint.exe -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/CreateSymlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/CreateSymlink.exe -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/GET.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/GET.ps1 -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/JunctionAndSetOplock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/JunctionAndSetOplock.ps1 -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/Logfile.PML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/Logfile.PML -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/POC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/POC.md -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/SetOpLock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/SetOpLock.exe -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/SwitchJunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/SwitchJunction.ps1 -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/Trigger.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/Trigger.ps1 -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc.exe -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc.sln -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/ALPC.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.Build.CppClean.log -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.log -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.obj -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/WerAlpc.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/WerAlpc.lastbuildstate -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/WerAlpc.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/vc142.idb -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/Debug/vc142.pdb -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/UserModeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/UserModeDefs.h -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/WerAlpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/WerAlpc.cpp -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/WerAlpc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/WerAlpc.vcxproj -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/WerAlpc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/WerAlpc.vcxproj.filters -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/WerAlpc.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/WerAlpc.vcxproj.user -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/ntbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/ntbasic.h -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/ntdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/ntdefs.h -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/ntlpcapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/ntlpcapi.cpp -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/ntlpcapi.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.Build.CppClean.log -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.log -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.obj -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/WerAlpc.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/WerAlpc.lastbuildstate -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/WerAlpc.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.Build.CppClean.log -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.log -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.obj -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/WerAlpc.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/WerAlpc.lastbuildstate -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/WerAlpc.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/WerAlpc.write.1u.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/WerAlpc.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/WerAlpc/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/x64/Release/WerAlpc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/x64/Release/WerAlpc.exe -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/x64/Release/WerAlpc.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/x64/Release/WerAlpc.iobj -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/x64/Release/WerAlpc.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/x64/Release/WerAlpc.ipdb -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/WerAlpc/x64/Release/WerAlpc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/WerAlpc/x64/Release/WerAlpc.pdb -------------------------------------------------------------------------------- /WERReport-CVE-2020-0753/wer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0753/wer.dll -------------------------------------------------------------------------------- /WERReport-CVE-2020-0754/Appendix.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0754/Appendix.docx -------------------------------------------------------------------------------- /WERReport-CVE-2020-0754/WERRaceCondition.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/WERReport-CVE-2020-0754/WERRaceCondition.docx -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afang5472/CVE-2020-0753-and-CVE-2020-0754/HEAD/readme.md --------------------------------------------------------------------------------