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
curl 'http://jstash.bazar/media/all.js?3813' -H 'Referer: http://jstash.bazar/fund-wallet?source=btc&csrf=ZPWohasuAySeFEobb4wP63-NQOyjBj8o&csrf=ZPWohasuAySeFEobb4wP63-NQOyjBj8o&' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36' --compressed --insecure | |
curl 'http://jstash.bazar/media/all.js?3813' -H 'Referer: http://jstash.bazar/fund-wallet?source=btc&csrf=ZPWohasuAySeFEobb4wP63-NQOyjBj8o&csrf=ZPWohasuAySeFEobb4wP63-NQOyjBj8o&' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36' --compressed --insecure | |
curl 'http://jstash.bazar/filters?name=state_cc&csrf=vCnWHrCFmWzlwNWTsvTofxy4qoxR_-f8&json=1' -H 'Cookie: ss=pgqjg~ag1bm7ordugd24o10264fbqr7mdsavl8; csrf=vCnWHrCFmWzlwNWTsvTofxy4qoxR_-f8; ht=0a63b97813ae09f0' -H 'Accept-Encoding: gzip, deflate' -H 'Accept-Language: en-US,en;q=0.9' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKi |
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
function isArray(e) { | |
try { | |
return toString.apply(e) == "[object Array]" | |
} catch (t) {} | |
} | |
function random(e) { | |
return Math.floor(Math.random() * (e + 1)) | |
} | |
function csrf(e) { | |
var t = document.cookie.match(/(^|;)\s*csrf=([^;]+)/); |
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
const xmpp = require('simple-xmpp'); | |
const jid = '[email protected]'; | |
const pwd = 'SMART_PWD'; | |
const server = 'jabb3r.de'; | |
const port = 5222; | |
/** | |
* |
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
var RSA = new function() { | |
function e() { | |
function n(e) { | |
for (var n = null, a = 0; "number" == typeof i[a]; ) | |
a += 1; | |
i[a] = 0, | |
this.hasNext = this.hasMoreElements = function() { | |
return i[a] < r ? !0 : ("number" == typeof i[a] && (i[a] = null), | |
!1) | |
} |
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
(function(window) { | |
window.MDIGITAL = window.MDIGITAL || {}; | |
} | |
)(window); | |
window.KAMPYLE_CONSTANT = { | |
PLACEHOLDERS: { | |
URL_PREFIX: 'https://resources.digital-cloud-citi.medallia.com/', | |
USERSNAP_CDN_URL: '//screencaptue-cdn.kampyle.com/', | |
USERSNAP_HOST_PREFIX: '//screencapture.kampyle.com/', | |
USERSNAP_CDN_V2_URL: '//screencapturev2-cdn.kampyle.com/', |
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
var InstalledFontDetector=function(){var e,g,f,c,b,a;b="48px";a="i ll wwww";e=document.getElementsByTagName("body")[0];c=document.createElement("br");g=document.createElement("span");g.style.fontSize=b;g.innerHTML=a;f=document.createElement("span");f.style.fontSize=b;f.innerHTML=a;function d(i){g.style.fontFamily='"'+i+'", monospace';f.style.fontFamily='"'+i+'", sans-serif';e.appendChild(g);e.appendChild(c);e.appendChild(f);var h=(g.offsetWidth===f.offsetWidth&&g.offsetHeight===f.offsetHeight);e.removeChild(f);e.removeChild(c);e.removeChild(g);return h}this.detect=d};function fnBrowserDevicePrintVersion(){return"2.0.0"}function fnZeroPad(b,a){var c=""+b;while(c.length<a){c="0"+c}return c}function fnBrowserCurrentTimeStamp(){try{return(new Date()).toJSON()}catch(a){try{var b=new Date();return fnZeroPad(b.getUTCFullYear(),4)+"-"+fnZeroPad(b.getUTCMonth(),2)+"-"+fnZeroPad(b.getUTCDate(),2)+"T"+fnZeroPad(b.getUTCHours(),2)+":"+fnZeroPad(b.getUTCMinutes(),2)+":"+fnZeroPad(b.getUTCSeconds(),2)+"."+fnZeroPad(b.getU |
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
const fingerprintingDetection = (function () { | |
const detectFingerprinting = function () { | |
function getCallerFile() { | |
let originalFunc = Error.prepareStackTrace; | |
let callerfile; | |
try { | |
const err = new Error(); | |
let currentfile; |
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
// Numbers | |
[...Array(5).keys()]; | |
=> [0, 1, 2, 3, 4] | |
// Character iteration | |
String.fromCharCode(...[...Array('D'.charCodeAt(0) - 'A'.charCodeAt(0) + 1).keys()].map(i => i + 'A'.charCodeAt(0))); | |
=> "ABCD" | |
// muh iteratos | |
for (const x of Array(5).keys()) { |
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
() => { | |
function hookPrototypeMethods(prefix, object) { | |
// TODO: also hook getters | |
if (!object) return; | |
const originals = {}; | |
const prototype = Object.getPrototypeOf(object); | |
Object | |
.getOwnPropertyNames(prototype) | |
.filter((n) => { | |
try { |
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
#!/usr/bin/env sh | |
REPO="$1" | |
[ -z "$REPO" ] && exit 1 | |
DIR=$(mktemp -d) | |
git clone --depth 1 "$REPO" "$DIR" | |
"$EDITOR" "$DIR" | |
rm -rf "$DIR" |