Some Idea, Project and Programming Notes

  • Home
  • About

security

Virtual Function Table Attack

July 21, 2016IsonProjects Leave a comment

Virtual function table (A.K.A vtable) is the key to manage virtual function which is a key mechanism to support polymorphism in C++ language. VTable is used to support dynamic dispatch or runtime method binding in C++. At the same time it is a popular target of malicious programmers to execute their malicious behavior on the system. Attacker exploits … Continued

System Securitysecurity, system

Categories