Compromised versions of the popular GitHub Desktop app and GitHub Atom app

BrendanQuinn_J1
edited January 31 in Rapid Response
According to this article from Ars Technica, a number of compromised versions of the GitHub Desktop App and the GitHub Atom app will stop working on Thursday, February 2, 2023. Use these queries to see which devices have these versions of the app installed so you can remediate and prevent disruption of work.

GitHub Atom
FIND Application WITH displayName ~= ('Atom.app') AS x 
THAT INSTALLED AS r (Device|Host) AS y 
WHERE r.version = ('1.63.1' OR '1.63.0')
RETURN 
x.displayName AS GitHub_Desktop_App,
r.version AS Compromised_Version,
r._class AS Is, 
y.displayName AS On, 
y.email AS Owned_By

GitHub Desktop
FIND Application WITH displayName ~= ('GitHub' OR 'Github') AS x 
THAT INSTALLED AS r (Device|Host) AS y 
WHERE r.version = ('3.1.2' OR '3.1.1' OR '3.1.0' OR '3.0.8' OR '3.0.7' OR '3.0.6' OR '3.0.5' OR '3.0.4' OR '3.0.2')
RETURN 
x.displayName AS GitHub_Desktop_App,
r.version AS Compromised_Version,
r._class AS Is, 
y.displayName AS On, 
y.email AS Owned_By

This Month's Leaders