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
@vijinho
vijinho / markdown_escape.php
Last active February 13, 2025 16:12
Return a given string with the text markdown escaped, in PHP
<?php
/**
* Escape markdown text
*
* @param string $text The markdown text to escape
*
* @return string Escaped text
*/
function markdown_escape($text) {
// Define a regex pattern for all special characters in markdown
[ "$UID" -eq 0 ] || exec sudo "$0" "$@"
su
apt install unzip curl ; rm -rf /tmp/acun*
apt install libxdamage1 libgtk-3-0 libasound2 libnss3 libxss1 libx11-xcb1 -y
cd /tmp; rm master.zip -f
curl -L -o master.zip http://github.com/neolead/acunetix-linux/zipball/master/
unzip master.zip
cd `ls|grep neolead` && cat acupatch* > acupatch.tgz
tar -zxvf acupatch.tgz
chmod +x ./acunetix_trial.sh
@siddolo
siddolo / matrix.js
Created September 10, 2021 16:13
Enter the matrix (thechoiceisyours.whatisthematrix.com reverse engineering)
function stringToBytes(t) {
for (var e = [], i = 0; i < t.length; i++) e.push(255 & t.charCodeAt(i));
return e;
}
function bytesToString(t) {
for (var e = [], i = 0; i < t.length; i++) e.push(String.fromCharCode(t[i]));
return e.join('');
}
@0xdevalias
0xdevalias / beeper-custom-theme-styles.md
Last active June 18, 2026 02:25
Custom themes/CSS styling hacks/overrides for Beeper (universal chat app aggregator, built on top of matrix)
@0xdevalias
0xdevalias / chatgpt-reverse-engineering-and-deep-dive-code-exploration.md
Last active May 6, 2026 02:31
Notes on reverse engineering ChatGPT's frontend web app + deep dive explorations of the code
@0xdevalias
0xdevalias / reverse-engineering-webpack-apps.md
Last active June 18, 2026 21:11
Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active June 26, 2026 02:39
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@0xdevalias
0xdevalias / bypassing-cloudflare-akamai-etc.md
Last active June 13, 2026 17:13
Some notes/resources for bypassing anti-bot/scraping features on Cloudflare, Akamai, etc.
@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 / reverse-engineering-golang.md
Last active June 16, 2026 15:10
Some notes, tools, and techniques for reverse engineering Golang binaries