├── README.md ├── Utils ├── Header.h ├── Utils.vcxproj ├── Utils.vcxproj.filters └── Utils.vcxproj.user ├── cve-2020-1034.sln ├── exploit_part_1 ├── Main.cpp ├── exploit_part_1.vcxproj ├── exploit_part_1.vcxproj.filters └── exploit_part_1.vcxproj.user ├── exploit_part_2 ├── Main.cpp ├── exploit_part_2.vcxproj ├── exploit_part_2.vcxproj.filters └── exploit_part_2.vcxproj.user └── pool_address_leak ├── Main.cpp ├── pool_address_leak.vcxproj ├── pool_address_leak.vcxproj.filters └── pool_address_leak.vcxproj.user /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/README.md -------------------------------------------------------------------------------- /Utils/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/Utils/Header.h -------------------------------------------------------------------------------- /Utils/Utils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/Utils/Utils.vcxproj -------------------------------------------------------------------------------- /Utils/Utils.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/Utils/Utils.vcxproj.filters -------------------------------------------------------------------------------- /Utils/Utils.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/Utils/Utils.vcxproj.user -------------------------------------------------------------------------------- /cve-2020-1034.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/cve-2020-1034.sln -------------------------------------------------------------------------------- /exploit_part_1/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/exploit_part_1/Main.cpp -------------------------------------------------------------------------------- /exploit_part_1/exploit_part_1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/exploit_part_1/exploit_part_1.vcxproj -------------------------------------------------------------------------------- /exploit_part_1/exploit_part_1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/exploit_part_1/exploit_part_1.vcxproj.filters -------------------------------------------------------------------------------- /exploit_part_1/exploit_part_1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/exploit_part_1/exploit_part_1.vcxproj.user -------------------------------------------------------------------------------- /exploit_part_2/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/exploit_part_2/Main.cpp -------------------------------------------------------------------------------- /exploit_part_2/exploit_part_2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/exploit_part_2/exploit_part_2.vcxproj -------------------------------------------------------------------------------- /exploit_part_2/exploit_part_2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/exploit_part_2/exploit_part_2.vcxproj.filters -------------------------------------------------------------------------------- /exploit_part_2/exploit_part_2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/exploit_part_2/exploit_part_2.vcxproj.user -------------------------------------------------------------------------------- /pool_address_leak/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/pool_address_leak/Main.cpp -------------------------------------------------------------------------------- /pool_address_leak/pool_address_leak.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/pool_address_leak/pool_address_leak.vcxproj -------------------------------------------------------------------------------- /pool_address_leak/pool_address_leak.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/pool_address_leak/pool_address_leak.vcxproj.filters -------------------------------------------------------------------------------- /pool_address_leak/pool_address_leak.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardenshafir/CVE-2020-1034/HEAD/pool_address_leak/pool_address_leak.vcxproj.user --------------------------------------------------------------------------------