Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code.
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
| ARG NODE_VERSION='16.13.1-alpine' | |
| # base | |
| FROM node:${NODE_VERSION} as base | |
| ENV HUSKY_SKIP_INSTALL 1 | |
| ENV DISABLE_OPENCOLLECTIVE 1 | |
| ENV SUPPRESS_SUPPORT 1 | |
| ENV NODE_ENV CI |
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
| Ніка | |
| Адріана | |
| Адріан | |
| Тіна | |
| Аліна | |
| Ангеліна | |
| Алінка | |
| Ліна | |
| Аліса | |
| Алла |
Install Android App Termux from APKPure or AppStore. If the app exists, just delete and re-install it to get the latest version, The APK can be downloaded from https://apkpure.com/termux/com.termux/ Install the APK using by running
adb install ~/Downloads/Termux_v0.73_apkpure.com.apk
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 Discord = require("discord.js"); | |
| const client = new Discord.Client(); | |
| const config = require("./config.json"); // config from file | |
| /* example config.json: | |
| { | |
| "token": "abcdefghijklmnopqrstuvwxyz", // user or bot token, | |
| "listenTo": ["167423382697148416", "353615025589714946", "210321071511961600"], // list of channel OR guild id's |
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
| // Trie.js - super simple JS implementation | |
| // https://en.wikipedia.org/wiki/Trie | |
| // ----------------------------------------- | |
| // we start with the TrieNode | |
| function TrieNode(key) { | |
| // the "key" value will be the character in sequence | |
| this.key = key; | |