This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Java.perform(function () { | |
const ArrayList = Java.use("java.util.ArrayList"); | |
const TrustManager = Java.use("com.android.org.conscrypt.TrustManagerImpl"); | |
TrustManager.checkTrustedRecursive.implementation = function () { | |
console.log("Bypassing Cert Pinning"); | |
return ArrayList.$new(); | |
} | |
}, 0); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Java.perform(function () { | |
const ArrayList = Java.use("java.util.ArrayList"); | |
const TrustManager = Java.use("com.android.org.conscrypt.TrustManagerImpl"); | |
TrustManager.checkTrustedRecursive.implementation = function () { | |
console.log("Bypassing Cert Pinning"); | |
return ArrayList.$new(); | |
} | |
}, 0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:10 | |
# Install Chromium. | |
RUN \ | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \ | |
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \ | |
apt-get update && \ | |
apt-get install -y google-chrome-stable && \ | |
rm -rf /var/lib/apt/lists/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copy and paste the code below on your browser console | |
* It will log the stable changes and how long it took to become stable | |
*/ | |
let currentStatus = undefined; | |
let root = $('app-root'); // Change this selector to the component that you'll be watching (Usually the root component) | |
let startTime = new Date(); | |
let stabilityChecker = setInterval(() => { | |
let newStatus = window.getAngularTestability(root).isStable(); | |
if (currentStatus !== newStatus) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
currentStatus = undefined; | |
root = $('app-root'); | |
setInterval(() => { | |
newStatus = window.getAngularTestability(root).isStable(); | |
if(currentStatus !== newStatus){ | |
currentStatus = newStatus; | |
console.log(`Stable status changed to => ${currentStatus}`); | |
} | |
}, 100); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.isEnabled = false; // App State | |
this.currentElement = null; | |
this.lockedElement = null; | |
function createRect(lineColor) { | |
const hoverElement = { | |
left: document.createElement('div'), | |
leftContinuous: document.createElement('div'), | |
right: document.createElement('div'), | |
rightContinuous: document.createElement('div'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2017-07-03T14:20:25.240Z","extensionVersion":"v2.8.2"} |