I hereby claim:
- I am thatfunkymunki on github.
- I am munki (https://keybase.io/munki) on keybase.
- I have a public key ASBncPAKH-Ym1ir2Ob2i5tZZJRIijlpBSB671TIlzstOago
To claim this, I am signing this object:
| terraform { | |
| required_providers { | |
| libvirt = { | |
| source = "dmacvicar/libvirt" | |
| } | |
| macaddress = { | |
| source = "ivoronin/macaddress" | |
| } | |
| } | |
| } |
| terraform { | |
| required_providers { | |
| libvirt = { | |
| source = "dmacvicar/libvirt" | |
| } | |
| macaddress = { | |
| source = "ivoronin/macaddress" | |
| version = "0.3.2" | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| // Run in the JavaScript console of the hterm browser window | |
| // Clear all existing settings - you probably don't want to do this. | |
| // Preferences are now stored in "chrome.storage.sync" instead of | |
| // "window.localStorage" so if you clear your preferences the changes | |
| // will be propagated to other devices. | |
| //term_.prefs_.storage.clear(); | |
| var htermProfiles = [ |
| use strict; | |
| use Irssi; | |
| use LWP::UserAgent; | |
| our $VERSION = '1.0'; | |
| our %IRSSI = ( | |
| authors => 'munki', | |
| contact => '[email protected]', | |
| name=> 'troll-as-a-service', | |
| description=> 'spits out a string from my webapp', | |
| license=>'MIT', |
| #!/bin/perl | |
| use strict; | |
| use Irssi; | |
| use Irssi::Irc; | |
| use vars qw($VERSION %IRSSI); | |
| $VERSION= '1.0'; | |
| %IRSSI = ( | |
| authors => 'munki props to vap0r and acidvegas', |
| term_.prefs_.set('enable-bold', true); | |
| term_.prefs_.set('enable-blink',false); | |
| term_.prefs_.set('background-color', "#002b36"); | |
| term_.prefs_.set('foreground-color', "#839496"); | |
| term_.prefs_.set('color-palette-overrides', [ | |
| '#073642', | |
| '#dc322f', | |
| '#859900', |
| -------------------------------------------------------------------------------- | |
| Command: ettercap -Tq -i eth0 -M arp:remote -P umsg_test /192.168.1.100/ | |
| Massif arguments: (none) | |
| ms_print arguments: massif.out.5312 | |
| -------------------------------------------------------------------------------- | |
| MB | |
| 47.40^ # | |
| | @@# |
| #include <ec.h> /* required for global variables */ | |
| #include <ec_plugins.h> /* required for plugin ops */ | |
| #include <ec_hook.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| int plugin_load(void *); |
| #!/usr/bin/env python | |
| import json | |
| from websocket import create_connection | |
| import websocket | |
| MYSQL_SPECIAL_CHARS= [ | |
| ("\\","\\\\"), | |
| ("\0","\\0"), | |
| ("\n","\\n"), | |
| ("\r","\\r"), | |
| ("'","\\'"), |