├── .gitattributes ├── .gitignore ├── CVE-2021-21551.sln ├── CVE-2021-21551 ├── CVE-2021-21551.cpp ├── CVE-2021-21551.vcxproj ├── CVE-2021-21551.vcxproj.filters ├── DellBiosUtil.cpp ├── DellBiosUtil.h ├── base.cpp ├── base.h ├── resolve.cpp ├── resolve.h └── typesndefs.h ├── Images ├── Capture.PNG └── Capture2.PNG └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/.gitignore -------------------------------------------------------------------------------- /CVE-2021-21551.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551.sln -------------------------------------------------------------------------------- /CVE-2021-21551/CVE-2021-21551.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/CVE-2021-21551.cpp -------------------------------------------------------------------------------- /CVE-2021-21551/CVE-2021-21551.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/CVE-2021-21551.vcxproj -------------------------------------------------------------------------------- /CVE-2021-21551/CVE-2021-21551.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/CVE-2021-21551.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2021-21551/DellBiosUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/DellBiosUtil.cpp -------------------------------------------------------------------------------- /CVE-2021-21551/DellBiosUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/DellBiosUtil.h -------------------------------------------------------------------------------- /CVE-2021-21551/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/base.cpp -------------------------------------------------------------------------------- /CVE-2021-21551/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/base.h -------------------------------------------------------------------------------- /CVE-2021-21551/resolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/resolve.cpp -------------------------------------------------------------------------------- /CVE-2021-21551/resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/resolve.h -------------------------------------------------------------------------------- /CVE-2021-21551/typesndefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/CVE-2021-21551/typesndefs.h -------------------------------------------------------------------------------- /Images/Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/Images/Capture.PNG -------------------------------------------------------------------------------- /Images/Capture2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/Images/Capture2.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch3rn0byl/CVE-2021-21551/HEAD/README.md --------------------------------------------------------------------------------