I hereby claim:
- I am matt- on github.
- I am mattaustin (https://keybase.io/mattaustin) on keybase.
- I have a public key whose fingerprint is 786C 4715 840B FD51 B2F4 F1A3 5E96 6468 3EB5 F20B
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| { | |
| name: 'test plugin', | |
| description: 'This is a test plugin' | |
| } |
| Token Key: theTicketsAreNowDiamonds | |
| Client: htmlshark | |
| Client Revision: 20110906 | |
| Rev Token: imOnAHorse |
| <script> | |
| alert(1); | |
| </script> |
| var net = require('net'); | |
| var host = 'apache.org'; | |
| var max = 300; | |
| var connections = Array(); | |
| var count = 0; | |
| var ip = ''; | |
| var dns = require('dns'); |
| #!/usr/bin/env ruby | |
| require 'net/telnet' | |
| require 'curses' | |
| require 'optparse' | |
| options = {} | |
| options[:port] = 11211 | |
| options[:host] = 'localhost' | |
| OptionParser.new do |opts| | |
| opts.banner = "Usage: mem.rb [options]" |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Google Chrome "Local File Disclosure" via HTML5 Link Download with DND Upload POC</title> | |
| <style> | |
| html, body { | |
| height: 100%; |
I hereby claim:
To claim this, I am signing this object:
| var startRender = function() { | |
| "use strict"; | |
| startRender = function () {}; | |
| /*eslint strict:0*/ | |
| var isSuspectedBot = false; | |
| if (!Function.prototype.bind) { | |
| isSuspectedBot = true; | |
| Function.prototype.bind = function (object) { //eslint-disable-line no-extend-native | |
| var self = this, | |
| slice = Array.prototype.slice, |
| var Module = require('module'); | |
| var old_wrap_zero = Module.wrapper[0]; | |
| // some code to inject into a module load. | |
| var code = '\n(' + (function (){ | |
| process.NativeModule = require('native_module'); | |
| }) + ')();\n'; | |
| Module.wrapper[0] += code; |