You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are 2 other very disturbing apps getting installed on some Windows Intel and nVidia based PC's.
They are called Tobii and QueenCreek (QC).
Tobii is an integrated eye/face tracking software that uploads an AI hashed fingerprint of your face. It's nearly impossible to remove, and re-installs itself on any windows update, unless technically blocked.
QueenCreek on the other hand, seem to be behaving as a government spyware, that uploads just about everything found on your computer, except the files themselves.
⬆️ This need to be blocked in all levels. Using Windows Firewall (WF.msc or via Firewall.cpl)
Get the IP's used for the above API:
# Resolve-DnsName "api.statistics.ice.tobii.com"
Name Type TTL Section IPAddress
---- ---- --- ------- ---------
api.statistics.ice.tobii.com A 60 Answer 18.154.63.45
api.statistics.ice.tobii.com A 60 Answer 18.154.63.48
api.statistics.ice.tobii.com A 60 Answer 18.154.63.19
api.statistics.ice.tobii.com A 60 Answer 18.154.63.39
Important
It seem that the cloudfront.net servers are dynamically rotating the IP addresses, making it nearly impossible to block based on raw IP address alone.
Some other useful powershell commands fore reference:
Resolve-DnsName "statistics.ice.tobii.com"
Resolve-DnsName "ice.tobii.com"
Resolve-DnsName "tobii.com"
# dig api.statistics.ice.tobii.com
# nslookup api.statistics.ice.tobii.com
# Create a FW rule:
# Be careful as you may block unrelated IP's if you use `/24`.
New-NetFirewallRule -DisplayName "Block Tobii Malware API IP addresses" -Direction Outbound -LocalPort Any -Protocol TCP -Action Block -RemoteAddress 18.66.122.1/24
Another very nasty Intel malware was hogging up my CPU and uploading just about every possible Network setting, including info on every single SW and app installed and a full record of what programs have been running on the CPU. The malware is called QUEENCREEK and is supposed to help you tune your processor... Instead uploading just about everything else about your computer, your network, your connected devices, apart your files themselves!
This one is very tricky, hiding in plain sight! 👺
However, if you leave your PC without using anything, you will suddenly find your CPU fans and CPU usage go up massively as all the collection scripts are being run and then uploaded to their spy DB servers. As soon as you touch anything, mouse or key button, it immediately drops back to normal. If you're lucky to find any associated process, you'll only see yet another svchost.exe and nothing else obvious.
Problem statement
There are 2 other very disturbing apps getting installed on some Windows Intel and nVidia based PC's.
They are called
TobiiandQueenCreek(QC).Tobiiis an integrated eye/face tracking software that uploads an AI hashed fingerprint of your face. It's nearly impossible to remove, and re-installs itself on any windows update, unless technically blocked.QueenCreekon the other hand, seem to be behaving as a government spyware, that uploads just about everything found on your computer, except the files themselves.Scripts and many useful comments to remove/block Tobii can be found here:
https://gist.github.com/jcary741/19cc74c93a499f8c23ad7dd5a04faf86
TobiiSummary:https://api.statistics.ice.tobii.com/uploadSession
WF.mscor viaFirewall.cpl)Get the IP's used for the above API:
# Resolve-DnsName "api.statistics.ice.tobii.com" Name Type TTL Section IPAddress ---- ---- --- ------- --------- api.statistics.ice.tobii.com A 60 Answer 18.154.63.45 api.statistics.ice.tobii.com A 60 Answer 18.154.63.48 api.statistics.ice.tobii.com A 60 Answer 18.154.63.19 api.statistics.ice.tobii.com A 60 Answer 18.154.63.39Important
It seem that the
cloudfront.netservers are dynamically rotating the IP addresses, making it nearly impossible to block based on raw IP address alone.Some other useful powershell commands fore reference:
Check out:
https://www.robtex.com/dns-lookup/tobii.com
and consider checking the similar domains.
QueenCreekSummary:Warning
Another very nasty Intel malware was hogging up my CPU and uploading just about every possible Network setting, including info on every single SW and app installed and a full record of what programs have been running on the CPU. The malware is called
QUEENCREEKand is supposed to help you tune your processor... Instead uploading just about everything else about your computer, your network, your connected devices, apart your files themselves!Upload folders can be found here:
C:\WINDOWS\system32\config\systemprofile\AppData\Local\Intel\SUR\QUEENCREEK\Program folder here:
C:\Program Files\Intel\SUR\QUEENCREEK\x64\Registry Keys here:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\ESRV_SVC_QUEENCREEK\Service is called
ESRV_SVC_QUEENCREEK.Use firewall to block port
49350.Important
This one is very tricky, hiding in plain sight! 👺
However, if you leave your PC without using anything, you will suddenly find your CPU fans and CPU usage go up massively as all the collection scripts are being run and then uploaded to their spy DB servers. As soon as you touch anything, mouse or key button, it immediately drops back to normal. If you're lucky to find any associated process, you'll only see yet another
svchost.exeand nothing else obvious.List of Contacting IPsClick to expand
Proposed solution
Help create scripts to blocking these.
(Sorry I don't have the skills/experience to do this for privacy.sexy.
Alternatives considered
None
Additional information
No response