浏览器随机指纹js代码

const toBlob = HTMLCanvasElement.prototype.toBlob;
const toDataURL = HTMLCanvasElement.prototype.toDataURL;

HTMLCanvasElement.prototype.manipulate = function() {
const {width, height} = this;
const context = this.getContext('2d');
const shift = {
'r': Math.floor(Math.random() * 10) - 5,
'g': Math.floor(Math.random() * 10) - 5,
'b': Math.floor(Math.random() * 10) - 5
};
const matt = context.getImageData(0, 0, width, height);
for (let i = 0; i < height; i += Math.max(1, parseInt(height / 10))) {
for (let j = 0; j < width; j += Math.max(1, parseInt(width / 10))) {
const n = ((i * (width * 4)) + (j * 4));
matt.data[n + 0] = matt.data[n + 0] + shift.r;
matt.data[n + 1] = matt.data[n + 1] + shift.g;
matt.data[n + 2] = matt.data[n + 2] + shift.b;
}
}
context.putImageData(matt, 0, 0);

};

Object.defineProperty(HTMLCanvasElement.prototype, 'toBlob', {
value: function() {

try {
this.manipulate();
}
catch(e) {
console.warn('manipulation failed', e);
}

return toBlob.apply(this, arguments);
}
});
Object.defineProperty(HTMLCanvasElement.prototype, 'toDataURL', {
value: function() {

try {
this.manipulate();
}
catch(e) {
console.warn('manipulation failed', e);
}

return toDataURL.apply(this, arguments);
}
});

 

原文转载自:http://www.zhizhuowz.com/post-602.html

posted @ 2021-01-21 10:59  洪雨  阅读(675)  评论(0编辑  收藏  举报

友情链接

洪雨营销