Mom Has Zero Vulnerabilities!!! Remediating the Last Four Vulnerabilities on My Mother's Computer
In ths video we'll be remediating the Critical Google Chrome less than 124.0.6367.60 Multiple Vulnerabilities, Microsoft Windows Web Media Extensions Library RCE (May 2021), Microsoft Windows Update Reboot Required and Microsoft OneNote Spoofing(June 2023) vulnerabilities on my mother's machine, but there is a catch. She is 70 years old and the one with hands on keyboard. This video illiustrates the need to be able to communicate instructions clearly to the end user because not all vulnerabilites can be remediated remotely. Good communication skills are a must in Cybersecurity.
Microsoft Windows Web Media Extensions Library RCE (May 2021)
1a. Checking to see if the vulnerabile application is present on the device.
Get-AppxProvisionedPackage -online | Where-Object {$_.PackageName -eq "Microsoft.WebMediaExtensions_1.0.20875.0_neutral_~_8wekyb3d8bbwe"}
OR you can use a wildcard search.
Get-AppxProvisionedPackage -online | Where-Object {$_.PackageName -like "Microsoft.WebMediaExtensions*"}
1b. Uninstalling the application.
Get-AppxProvisionedPackage -online | Where-Object {$_.PackageName -eq "Microsoft.WebMediaExtensions_1.0.20875.0_neutral_~_8wekyb3d8bbwe"} | Remove-AppxProvisionedPackage -Online
OR using a wildcard
Get-AppxProvisionedPackage -online | Where-Object {$_.PackageName -like "Microsoft.WebMediaExtensions*"}| Remove-AppxProvisionedPackage -Online
Microsoft OneNote Spoofing(June 2023)
2a. Checking to see if the vulnerabile application is present on the device.
Get-AppxProvisionedPackage -online | Where-Object {$_.PackageName -like "Microsoft.Office.OneNote*"}
2b. Uninstalling the application.
Get-AppxProvisionedPackage -online | Where-Object {$_.PackageName -like "Microsoft.Office.OneNote*"} | Remove-AppxProvisionedPackage -Online
Join the Cybersecurity Mentorship Program Official Launch!
https://technologyinterpreters.myshopify.com/
Join this channel to get access to perks:
https://www.youtube.com/channel/UC8kz_mvNxikOvChY51C7rQQ/join
Subscribe: https://www.youtube.com/user/TechInterpreterInc?sub_confirmation=1
Social Media:
- Discord: https://discord.gg/fJUnQZSjYh
- Twitter: https://twitter.com/TechTranslators
- Twitch: https://www.twitch.tv/technologyinterpreters
- Instagram: https://www.instagram.com/TechnologyInterpreters
- Facebook: https://www.facebook.com/TechnologyInterpreters