Skip to content

Instantly share code, notes, and snippets.

View ThevenRexOff's full-sized avatar
:shipit:
spaghetti code writer

ThevenRex ThevenRexOff

:shipit:
spaghetti code writer
View GitHub Profile
@ThevenRexOff
ThevenRexOff / charles key
Created July 27, 2024 20:41
[charles proxy key] an activation key #key #activation
// Charles Proxy License
// Registration code for any version of Charles, who would want to use a cracked version?
// Charles 4.5.5 is currently the latest version and is available.
Registered Name: https://zhile.io
License Key: 48891cf209c6d32bf4
Author: Neo Peng
@ThevenRexOff
ThevenRexOff / reverse-engineering-webpack-apps.md
Created July 27, 2024 16:53 — forked from 0xdevalias/reverse-engineering-webpack-apps.md
Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps
@0xdevalias
0xdevalias / fingerprinting-minified-javascript-libraries-ast-fingerprinting-source-code-similarity-etc.md
Last active April 24, 2025 08:08
Some notes and tools on fingerprinting minified JavaScript libraries, AST fingerprinting, source code similarity, etc

Fingerprinting Minified JavaScript Libraries / AST Fingerprinting / Source Code Similarity / Etc

Some notes and tools on fingerprinting minified JavaScript libraries, AST fingerprinting, source code similarity, etc.

Table of Contents

@ThevenRexOff
ThevenRexOff / _deobfuscating-unminifying-obfuscated-web-app-code.md
Created March 12, 2024 18:23 — forked from 0xdevalias/_deobfuscating-unminifying-obfuscated-web-app-code.md
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@ThevenRexOff
ThevenRexOff / bypassing-cloudflare-akamai-etc.md
Created February 8, 2024 22:00 — forked from 0xdevalias/bypassing-cloudflare-akamai-etc.md
Some notes/resources for bypassing anti-bot/scraping features on Cloudflare, Akamai, etc.

Bypassing Cloudflare, Akamai, etc

Some notes/resources for bypassing anti-bot/scraping features on Cloudflare, Akamai, etc.

var $jscomp = $jscomp || {};
$jscomp.scope = {};
$jscomp.arrayIteratorImpl = function (h) {
var n = 0;
return function () {
return n < h.length ? { done: false, value: h[n++] } : { done: true };
};
};
$jscomp.arrayIterator = function (h) {
return { next: $jscomp.arrayIteratorImpl(h) };
@0xdevalias
0xdevalias / reverse-engineering-golang.md
Last active April 23, 2025 15:01
Some notes, tools, and techniques for reverse engineering Golang binaries
@leafypout
leafypout / encrypt.js
Created July 17, 2023 08:22
Adyen 4.5.0 encryption
/*
* Adyen 4.5.0 encryption by github.com/levi-nz
*
* This code is a rough implementation and can be improved in some places.
* Read comments throughout the code for more information.
*/
const jose = require('node-jose');
// Parse the key from the string found in securedFields.html ("10001|...")
@0xdevalias
0xdevalias / bypassing-cloudflare-akamai-etc.md
Last active March 28, 2025 06:41
Some notes/resources for bypassing anti-bot/scraping features on Cloudflare, Akamai, etc.
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active April 26, 2025 02:08
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code