⚠️ This is the old API and may not work
This work is released under a Creative Commons Attribution-NoDerivatives 4.0 International License.
"OpenPGP" refers to the OpenPGP protocol, in much the same way that HTML refers to the protocol that specifies how to write a web page. "GnuPG", "SequoiaPGP", "OpenPGP.js", and others are implementations of the OpenPGP protocol in the same way that Mozilla Firefox, Google Chromium, and Microsoft Edge refer to software packages that process HTML data.
I've had some fun ruining Python recently, but Python is what I use at work. I prefer to use other languages when I'm doing stuff for fun.
And obfuscation only really makes sense in fun and competition - given a suffeciently determined actor, your code will be reverse engineered. Unless you write it in Malboge.
For this particular experiment, I'll be using Lua 5.3. As I'll probably need to dive into some of the less portable functions to commit our atrocities, I can't guarantee it will run on other popular versions like Luajit or 5.1.
| --- | |
| kind: ConfigMap | |
| apiVersion: v1 | |
| metadata: | |
| name: cni-install-sh | |
| namespace: kube-system | |
| data: | |
| install_cni.sh: | | |
| cd /tmp | |
| wget https://github.com/containernetworking/plugins/releases/download/v0.8.5/cni-plugins-linux-amd64-v0.8.5.tgz |
| Welcome to Jordan's grab-bag of common Binary Ninja Snippets. | |
| These snippets are meant to run with the Binary Ninja Snippets Plugin | |
| (http://github.com/Vector35/snippets) though they can all also be pasted | |
| directly into the python console or turned into stand-alone plugins if needed. | |
| To install the entire collection at once, just install the Snippets plugin via | |
| the plugin manager (CMD/CTL-SHIFT-M), confirm the Snippet Editor works | |
| (Tool/Snippets/Snippet Editor), and unzip this bundle (Download ZIP above) into | |
| your Snippets folder. |
| #!/bin/bash | |
| if [ $# -eq 0 ] | |
| then | |
| echo $'Usage:\n\tcheck-smb-v3.11.sh TARGET_IP_or_CIDR' | |
| exit 1 | |
| fi | |
| echo "Checking if there's SMB v3.11 in" $1 "..." | |
| nmap -p445 --script smb-protocols -Pn -n $1 | grep -P '\d+\.\d+\.\d+\.\d+|^\|.\s+3.11' | tr '\n' ' ' | replace 'Nmap scan report for' '@' | tr "@" "\n" | grep 3.11 | tr '|' ' ' | tr '_' ' ' | grep -oP '\d+\.\d+\.\d+\.\d+' |
| /** | |
| FinalIKを使ったLeapMotion Orion用HandController | |
| (VRIKバージョン) | |
| Author: MiyuMiyu (https://twitter.com/miyumiyuna5) | |
| Source: https://qiita.com/miyumiyu/items/72b965df46a79f3ec523 | |
| Modified by: Emiliana (https://twitter.com/Emiliana_vt) | |
| Modifications: Updated for current SDK version, supports hand position reset on tracking loss, hand mirroring and interpolation. | |
| */ | |
| /* |
| import time | |
| import psutil | |
| import multiprocessing as mp | |
| from multiprocessing import Process | |
| def f(thread, duty, freq, q): | |
| p = psutil.Process() | |
| p.cpu_affinity([thread]) | |
| while True: |
Link: https://docs.papermc.io/paper/anti-xray
Help: https://discord.gg/papermc
Anti-Xray can be configured per world in the paper.yml configuration file. To understand how per world configuration works please read this first. Note that after changing any settings for Anti-Xray you have to restart your server. Executing the /reload command (you should never do this) won't apply the settings to worlds that are already loaded.