Linux - Remove frontpage extensions
If you still have Frontpage extensions installed, you really need to have a re-think on how you manage your security.
Frontpage causes big vulnerabilities on linux, and shouldn't be used, it shouldn't even be installed.
Run these commands from SSH:
rpm -qa | grep frontpage
(If frontpage is installed, something will be returned, just as an example, lets just say FrontPage was returned)
To remove them, type this command:
rpm -e frontpage
Remember to change "frontpage" above with whatever was returned from your first command.
|