├── CVE-2017-13130 ├── README.md ├── bmc_patrol_mcmnm_privesc.sh └── screenshots │ └── 00_exploit-demo.gif ├── CVE-2019-19544 ├── README.md ├── ca_dollaru_uxdqmsrv_privesc.sh └── screenshots │ └── ca-dollaru-uxdqmsrv-privesc.gif ├── CVE-2020-0668 ├── CVE-2020-0668 SysTracing Vulnerability Report.pdf └── poc │ ├── CommonUtils │ ├── CommonUtils.cpp │ ├── CommonUtils.h │ ├── CommonUtils.vcxproj │ ├── CommonUtils.vcxproj.filters │ ├── DirectoryObject.cpp │ ├── FileOpLock.cpp │ ├── FileOpLock.h │ ├── FileSymlink.cpp │ ├── FileSymlink.h │ ├── Hardlink.cpp │ ├── NativeSymlink.cpp │ ├── RegistrySymlink.cpp │ ├── ReparsePoint.cpp │ ├── ReparsePoint.h │ ├── ScopedHandle.cpp │ ├── ScopedHandle.h │ ├── ntimports.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── typed_buffer.h │ ├── README.md │ ├── SysTracing │ ├── Exploit.cpp │ ├── Exploit.h │ ├── SysTracing.vcxproj │ ├── SysTracing.vcxproj.filters │ ├── Utils.cpp │ └── Utils.h │ ├── SysTracingExploit │ ├── Resource │ │ ├── WindowsCoreDeviceInfo_x64.dll │ │ └── WindowsCoreDeviceInfo_x86.dll │ ├── SysTracingExploit.cpp │ ├── SysTracingExploit.rc │ ├── SysTracingExploit.vcxproj │ ├── SysTracingExploit.vcxproj.filters │ └── resource.h │ ├── SysTracingPoc.sln │ ├── SysTracingPoc │ ├── SysTracingPoc.cpp │ ├── SysTracingPoc.vcxproj │ ├── SysTracingPoc.vcxproj.filters │ ├── pch.cpp │ └── pch.h │ ├── UsoDllLoader │ ├── BindShell.h │ ├── MiniUsoClient.cpp │ ├── MiniUsoClient.h │ ├── TcpClient.cpp │ ├── TcpClient.h │ ├── UsoDllLoader.cpp │ ├── UsoDllLoader.vcxproj │ └── UsoDllLoader.vcxproj.filters │ └── WindowsCoreDeviceInfo │ ├── BindShell.cpp │ ├── BindShell.h │ ├── WindowsCoreDeviceInfo.cpp │ ├── WindowsCoreDeviceInfo.def │ ├── WindowsCoreDeviceInfo.vcxproj │ └── WindowsCoreDeviceInfo.vcxproj.filters ├── CVE-2020-0753 └── CVE-2020-0753 Windows Error Reporting Arbitrary File Delete.pdf ├── CVE-2020-0787 ├── CVE-2020-0787 Microsoft Windows BITS Arbitrary File Move Local Privilege Escalation.pdf └── poc │ ├── BitsArbitraryFileMove.sln │ ├── BitsArbitraryFileMove │ ├── BitsArbitraryFileMove.cpp │ ├── BitsArbitraryFileMove.h │ ├── BitsArbitraryFileMove.vcxproj │ ├── BitsArbitraryFileMove.vcxproj.filters │ ├── CBitsCom.cpp │ └── CBitsCom.h │ ├── BitsArbitraryFileMoveExploit │ ├── BitsArbitraryFileMoveExploit.cpp │ ├── BitsArbitraryFileMoveExploit.rc │ ├── BitsArbitraryFileMoveExploit.vcxproj │ ├── BitsArbitraryFileMoveExploit.vcxproj.filters │ ├── Resource │ │ ├── WindowsCoreDeviceInfo_x64.dll │ │ └── WindowsCoreDeviceInfo_x86.dll │ └── resource.h │ ├── BitsArbitraryFileMovePoc │ ├── BitsArbitraryFileMovePoc.cpp │ ├── BitsArbitraryFileMovePoc.vcxproj │ └── BitsArbitraryFileMovePoc.vcxproj.filters │ ├── CommonUtils │ ├── CommonUtils.cpp │ ├── CommonUtils.h │ ├── CommonUtils.vcxproj │ ├── CommonUtils.vcxproj.filters │ ├── DirectoryObject.cpp │ ├── FileOpLock.cpp │ ├── FileOpLock.h │ ├── FileSymlink.cpp │ ├── FileSymlink.h │ ├── Hardlink.cpp │ ├── NativeSymlink.cpp │ ├── RegistrySymlink.cpp │ ├── ReparsePoint.cpp │ ├── ReparsePoint.h │ ├── ScopedHandle.cpp │ ├── ScopedHandle.h │ ├── ntimports.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── typed_buffer.h │ ├── README.md │ └── UsoDllLoader │ ├── BindShell.h │ ├── MiniUsoClient.cpp │ ├── MiniUsoClient.h │ ├── TcpClient.cpp │ ├── TcpClient.h │ ├── UsoDllLoader.cpp │ ├── UsoDllLoader.vcxproj │ └── UsoDllLoader.vcxproj.filters ├── CVE-2020-0863 ├── CVE-2020-0863 Microsoft Windows DiagTrack 'UtcApi_DownloadLatestSettings' Arbitrary File Read.pdf └── poc │ ├── CommonUtils │ ├── CommonUtils.cpp │ ├── CommonUtils.h │ ├── CommonUtils.vcxproj │ ├── CommonUtils.vcxproj.filters │ ├── DirectoryObject.cpp │ ├── FileOpLock.cpp │ ├── FileOpLock.h │ ├── FileSymlink.cpp │ ├── FileSymlink.h │ ├── Hardlink.cpp │ ├── NativeSymlink.cpp │ ├── RegistrySymlink.cpp │ ├── ReparsePoint.cpp │ ├── ReparsePoint.h │ ├── ScopedHandle.cpp │ ├── ScopedHandle.h │ ├── ntimports.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── typed_buffer.h │ ├── DiagTrackAribtraryFileRead.sln │ ├── DiagTrackAribtraryFileRead │ ├── DiagTrack1.idl │ ├── DiagTrack1_c.c │ ├── DiagTrack1_h.h │ ├── DiagTrack1_s.c │ ├── DiagTrackAribtraryFileRead.cpp │ ├── DiagTrackAribtraryFileRead.vcxproj │ └── DiagTrackAribtraryFileRead.vcxproj.filters │ └── README.md ├── CVE-2020-1029 └── CVE-2020-1029 Microsoft Windows DiagTrack Arbitrary File Delete.pdf ├── CVE-2020-1170 ├── CVE-2020-1170 Windows Defender Arbitrary Directory Delete.pdf └── DefenderArbitraryFileDelete.ps1 ├── CVE-2020-1194 └── CVE-2020-1194 Windows Tracing Arbitrary Directory Create.pdf ├── CVE-2024-13345 └── README.md └── README.md /CVE-2017-13130/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2017-13130/README.md -------------------------------------------------------------------------------- /CVE-2017-13130/bmc_patrol_mcmnm_privesc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2017-13130/bmc_patrol_mcmnm_privesc.sh -------------------------------------------------------------------------------- /CVE-2017-13130/screenshots/00_exploit-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2017-13130/screenshots/00_exploit-demo.gif -------------------------------------------------------------------------------- /CVE-2019-19544/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2019-19544/README.md -------------------------------------------------------------------------------- /CVE-2019-19544/ca_dollaru_uxdqmsrv_privesc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2019-19544/ca_dollaru_uxdqmsrv_privesc.sh -------------------------------------------------------------------------------- /CVE-2019-19544/screenshots/ca-dollaru-uxdqmsrv-privesc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2019-19544/screenshots/ca-dollaru-uxdqmsrv-privesc.gif -------------------------------------------------------------------------------- /CVE-2020-0668/CVE-2020-0668 SysTracing Vulnerability Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/CVE-2020-0668 SysTracing Vulnerability Report.pdf -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/CommonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/CommonUtils.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/CommonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/CommonUtils.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/CommonUtils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/CommonUtils.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/CommonUtils.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/CommonUtils.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/DirectoryObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/DirectoryObject.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/FileOpLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/FileOpLock.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/FileOpLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/FileOpLock.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/FileSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/FileSymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/FileSymlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/FileSymlink.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/Hardlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/Hardlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/NativeSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/NativeSymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/RegistrySymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/RegistrySymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/ReparsePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/ReparsePoint.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/ReparsePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/ReparsePoint.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/ScopedHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/ScopedHandle.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/ScopedHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/ScopedHandle.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/ntimports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/ntimports.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/stdafx.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/stdafx.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/targetver.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/CommonUtils/typed_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/CommonUtils/typed_buffer.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/README.md -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracing/Exploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracing/Exploit.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracing/Exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracing/Exploit.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracing/SysTracing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracing/SysTracing.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracing/SysTracing.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracing/SysTracing.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracing/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracing/Utils.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracing/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracing/Utils.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingExploit/Resource/WindowsCoreDeviceInfo_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingExploit/Resource/WindowsCoreDeviceInfo_x64.dll -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingExploit/Resource/WindowsCoreDeviceInfo_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingExploit/Resource/WindowsCoreDeviceInfo_x86.dll -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingExploit/SysTracingExploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingExploit/SysTracingExploit.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingExploit/SysTracingExploit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingExploit/SysTracingExploit.rc -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingExploit/SysTracingExploit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingExploit/SysTracingExploit.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingExploit/SysTracingExploit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingExploit/SysTracingExploit.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingExploit/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingExploit/resource.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingPoc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingPoc.sln -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingPoc/SysTracingPoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingPoc/SysTracingPoc.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingPoc/SysTracingPoc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingPoc/SysTracingPoc.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingPoc/SysTracingPoc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingPoc/SysTracingPoc.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingPoc/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingPoc/pch.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/SysTracingPoc/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/SysTracingPoc/pch.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/UsoDllLoader/BindShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/UsoDllLoader/BindShell.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/UsoDllLoader/MiniUsoClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/UsoDllLoader/MiniUsoClient.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/UsoDllLoader/MiniUsoClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/UsoDllLoader/MiniUsoClient.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/UsoDllLoader/TcpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/UsoDllLoader/TcpClient.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/UsoDllLoader/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/UsoDllLoader/TcpClient.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/UsoDllLoader/UsoDllLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/UsoDllLoader/UsoDllLoader.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/UsoDllLoader/UsoDllLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/UsoDllLoader/UsoDllLoader.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0668/poc/UsoDllLoader/UsoDllLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/UsoDllLoader/UsoDllLoader.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0668/poc/WindowsCoreDeviceInfo/BindShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/WindowsCoreDeviceInfo/BindShell.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/WindowsCoreDeviceInfo/BindShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/WindowsCoreDeviceInfo/BindShell.h -------------------------------------------------------------------------------- /CVE-2020-0668/poc/WindowsCoreDeviceInfo/WindowsCoreDeviceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/WindowsCoreDeviceInfo/WindowsCoreDeviceInfo.cpp -------------------------------------------------------------------------------- /CVE-2020-0668/poc/WindowsCoreDeviceInfo/WindowsCoreDeviceInfo.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/WindowsCoreDeviceInfo/WindowsCoreDeviceInfo.def -------------------------------------------------------------------------------- /CVE-2020-0668/poc/WindowsCoreDeviceInfo/WindowsCoreDeviceInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/WindowsCoreDeviceInfo/WindowsCoreDeviceInfo.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0668/poc/WindowsCoreDeviceInfo/WindowsCoreDeviceInfo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0668/poc/WindowsCoreDeviceInfo/WindowsCoreDeviceInfo.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0753/CVE-2020-0753 Windows Error Reporting Arbitrary File Delete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0753/CVE-2020-0753 Windows Error Reporting Arbitrary File Delete.pdf -------------------------------------------------------------------------------- /CVE-2020-0787/CVE-2020-0787 Microsoft Windows BITS Arbitrary File Move Local Privilege Escalation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/CVE-2020-0787 Microsoft Windows BITS Arbitrary File Move Local Privilege Escalation.pdf -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMove.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMove.sln -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMove/BitsArbitraryFileMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMove/BitsArbitraryFileMove.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMove/BitsArbitraryFileMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMove/BitsArbitraryFileMove.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMove/BitsArbitraryFileMove.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMove/BitsArbitraryFileMove.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMove/BitsArbitraryFileMove.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMove/BitsArbitraryFileMove.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMove/CBitsCom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMove/CBitsCom.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMove/CBitsCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMove/CBitsCom.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/BitsArbitraryFileMoveExploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/BitsArbitraryFileMoveExploit.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/BitsArbitraryFileMoveExploit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/BitsArbitraryFileMoveExploit.rc -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/BitsArbitraryFileMoveExploit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/BitsArbitraryFileMoveExploit.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/BitsArbitraryFileMoveExploit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/BitsArbitraryFileMoveExploit.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/Resource/WindowsCoreDeviceInfo_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/Resource/WindowsCoreDeviceInfo_x64.dll -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/Resource/WindowsCoreDeviceInfo_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/Resource/WindowsCoreDeviceInfo_x86.dll -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMoveExploit/resource.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMovePoc/BitsArbitraryFileMovePoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMovePoc/BitsArbitraryFileMovePoc.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMovePoc/BitsArbitraryFileMovePoc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMovePoc/BitsArbitraryFileMovePoc.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0787/poc/BitsArbitraryFileMovePoc/BitsArbitraryFileMovePoc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/BitsArbitraryFileMovePoc/BitsArbitraryFileMovePoc.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/CommonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/CommonUtils.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/CommonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/CommonUtils.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/CommonUtils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/CommonUtils.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/CommonUtils.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/CommonUtils.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/DirectoryObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/DirectoryObject.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/FileOpLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/FileOpLock.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/FileOpLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/FileOpLock.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/FileSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/FileSymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/FileSymlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/FileSymlink.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/Hardlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/Hardlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/NativeSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/NativeSymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/RegistrySymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/RegistrySymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/ReparsePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/ReparsePoint.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/ReparsePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/ReparsePoint.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/ScopedHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/ScopedHandle.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/ScopedHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/ScopedHandle.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/ntimports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/ntimports.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/stdafx.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/stdafx.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/targetver.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/CommonUtils/typed_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/CommonUtils/typed_buffer.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/README.md -------------------------------------------------------------------------------- /CVE-2020-0787/poc/UsoDllLoader/BindShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/UsoDllLoader/BindShell.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/UsoDllLoader/MiniUsoClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/UsoDllLoader/MiniUsoClient.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/UsoDllLoader/MiniUsoClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/UsoDllLoader/MiniUsoClient.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/UsoDllLoader/TcpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/UsoDllLoader/TcpClient.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/UsoDllLoader/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/UsoDllLoader/TcpClient.h -------------------------------------------------------------------------------- /CVE-2020-0787/poc/UsoDllLoader/UsoDllLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/UsoDllLoader/UsoDllLoader.cpp -------------------------------------------------------------------------------- /CVE-2020-0787/poc/UsoDllLoader/UsoDllLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/UsoDllLoader/UsoDllLoader.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0787/poc/UsoDllLoader/UsoDllLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0787/poc/UsoDllLoader/UsoDllLoader.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0863/CVE-2020-0863 Microsoft Windows DiagTrack 'UtcApi_DownloadLatestSettings' Arbitrary File Read.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/CVE-2020-0863 Microsoft Windows DiagTrack 'UtcApi_DownloadLatestSettings' Arbitrary File Read.pdf -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/CommonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/CommonUtils.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/CommonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/CommonUtils.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/CommonUtils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/CommonUtils.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/CommonUtils.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/CommonUtils.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/DirectoryObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/DirectoryObject.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/FileOpLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/FileOpLock.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/FileOpLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/FileOpLock.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/FileSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/FileSymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/FileSymlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/FileSymlink.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/Hardlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/Hardlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/NativeSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/NativeSymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/RegistrySymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/RegistrySymlink.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/ReparsePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/ReparsePoint.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/ReparsePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/ReparsePoint.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/ScopedHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/ScopedHandle.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/ScopedHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/ScopedHandle.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/ntimports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/ntimports.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/stdafx.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/stdafx.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/targetver.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/CommonUtils/typed_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/CommonUtils/typed_buffer.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/DiagTrackAribtraryFileRead.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/DiagTrackAribtraryFileRead.sln -------------------------------------------------------------------------------- /CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrack1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrack1.idl -------------------------------------------------------------------------------- /CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrack1_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrack1_c.c -------------------------------------------------------------------------------- /CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrack1_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrack1_h.h -------------------------------------------------------------------------------- /CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrack1_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrack1_s.c -------------------------------------------------------------------------------- /CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrackAribtraryFileRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrackAribtraryFileRead.cpp -------------------------------------------------------------------------------- /CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrackAribtraryFileRead.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrackAribtraryFileRead.vcxproj -------------------------------------------------------------------------------- /CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrackAribtraryFileRead.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/DiagTrackAribtraryFileRead/DiagTrackAribtraryFileRead.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2020-0863/poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-0863/poc/README.md -------------------------------------------------------------------------------- /CVE-2020-1029/CVE-2020-1029 Microsoft Windows DiagTrack Arbitrary File Delete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-1029/CVE-2020-1029 Microsoft Windows DiagTrack Arbitrary File Delete.pdf -------------------------------------------------------------------------------- /CVE-2020-1170/CVE-2020-1170 Windows Defender Arbitrary Directory Delete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-1170/CVE-2020-1170 Windows Defender Arbitrary Directory Delete.pdf -------------------------------------------------------------------------------- /CVE-2020-1170/DefenderArbitraryFileDelete.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-1170/DefenderArbitraryFileDelete.ps1 -------------------------------------------------------------------------------- /CVE-2020-1194/CVE-2020-1194 Windows Tracing Arbitrary Directory Create.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2020-1194/CVE-2020-1194 Windows Tracing Arbitrary Directory Create.pdf -------------------------------------------------------------------------------- /CVE-2024-13345/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/CVE-2024-13345/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itm4n/CVEs/HEAD/README.md --------------------------------------------------------------------------------