madvitch1437 madvitch1437 09-02-2024 Computers and Technology contestada Name the vulnerability for the following code:void safe(){cout << "Safe function\n";}void dangerous(){cout << "Password: 'Rosebud'\n";}void doNothing(){char text[256];void(*p)() = safe;cin >> text;p();}