|
|
|
|
|
by clinton_sf
3575 days ago
|
|
> Is there any diagnostic tool out there to determine if you've been infected? From what I can tell, they posted the SHA256 of the offending binary under the IOCs section of that web page. So you should be able to do this in the root of your home directory to detect if such a file exists: # find . -type f -print0 | xargs -0 shasum -a 256 | grep 664e0a048f61a76145b55d1f1a5714606953d69edccec5228017eb546049dc8c |
|