Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
#!/usr/bin/env bash | |
(set -x; brew -v update;) | |
(set -x; brew -v cleanup;) | |
red=`tput setaf 1` | |
green=`tput setaf 2` | |
reset=`tput sgr0` |
// File: | |
// click.m | |
// | |
// Compile with: | |
// gcc -o click click.m -framework ApplicationServices -framework Foundation | |
// | |
// Usage: | |
// ./click -x pixels -y pixels | |
// At the given coordinates it will click and release. |
'use strict' | |
/** | |
* Insert element into sorted array | |
* @param {number} value | |
* @param {Array} array | |
* @returns {number} - index | |
*/ | |
export function insertIntoSortedArray (value, array) { | |
const index = locationOf(value, array) |
# update the host | |
apt-get update && apt-get upgrade -y # && apt-get dist-upgrade -y && apt-get autoremove --purge -y && apt-get autoclean -y | |
# https://www.stgraber.org/ | |
# install linux containers | |
sudo apt-get install lxc | |
# list all containers and view their current status | |
sudo lxc-ls -f |
#!/usr/bin/env node | |
const fs = require('fs') | |
const path = require('path') | |
const ArgumentParser = require('argparse').ArgumentParser | |
const sourceMap = require('source-map') | |
const parser = new ArgumentParser({ | |
addHelp: true, | |
description: 'Deobfuscate JavaScript code using a source map', |
window.origFetch = window.fetch | |
window.fetch = async function () { | |
const response = await origFetch.apply(this, arguments) | |
const text = response.text.bind(response) | |
const json = response.json.bind(response) | |
response.text = async () => { | |
const res = await text() | |
window.lastRes = res |
window.OrigResponseText = window.Response.prototype.text | |
window.OrigResponseJSON = window.Response.prototype.text | |
window.Response.prototype.text = async function () { | |
const res = await window.OrigResponseText.apply(this, arguments) | |
window.lastText = { | |
url: this.url, | |
res | |
} |