Skip to content

Instantly share code, notes, and snippets.

View abrahamjuliot's full-sized avatar
Focusing

Abraham abrahamjuliot

Focusing
View GitHub Profile
@nicoandmee
nicoandmee / monitorExecution.js
Created November 9, 2019 13:54
inject js to examine detection strategies
const fingerprintingDetection = (function () {
const detectFingerprinting = function () {
function getCallerFile() {
let originalFunc = Error.prepareStackTrace;
let callerfile;
try {
const err = new Error();
let currentfile;