Skip to content

Instantly share code, notes, and snippets.

View johnl's full-sized avatar

John Leach johnl

View GitHub Profile
@johnl
johnl / brightbox cloud example
Last active October 7, 2015 07:38
puppet-git-receiver cloud-config install script
$ brightbox-servers create --user-data="#include https://gist.githubusercontent.com/johnl/3129203/raw/d4b591546f1987803771bbc8c303c62cbca93538/puppet-git-receiver-install" img-9h5cv
Creating a nano (typ-4nssg) server with image Ubuntu Precise 12.04 LTS server (img-9h5cv) with 0.10k of user data
id status type zone created_on image_id cloud_ip_ids name
-----------------------------------------------------------------------------
srv-3te8u creating nano gb1-a 2012-07-17 img-9h5cv
-----------------------------------------------------------------------------
$ git init
@johnl
johnl / naxi-0.46-nginx-1.2.2-compile-fix.patch
Created July 27, 2012 11:28
naxsi 0.46 nginx 1.2.2 compile fix
diff --git a/naxsi/naxsi_src/naxsi_runtime.c b/naxsi/naxsi_src/naxsi_runtime.c
index 1d32f78..7ae0e4f 100644
--- a/naxsi/naxsi_src/naxsi_runtime.c
+++ b/naxsi/naxsi_src/naxsi_runtime.c
@@ -116,7 +116,12 @@ ngx_http_process_basic_rule_buffer(ngx_str_t *str,
tmp_idx = 0;
len = str->len;
while
-#if defined nginx_version && (nginx_version > 1001011)
+#if defined nginx_version && (nginx_version >= 1002002)
@johnl
johnl / cowstat.rb
Created November 27, 2012 19:49
Display info about ram shared between Linux processes
#!/usr/bin/env ruby
require 'ostruct'
class LinuxProcess < OpenStruct
def initialize(args)
super
read_status!
end
@johnl
johnl / gist:4489723
Created January 9, 2013 01:12
Apache rewrite config to block xml request bodies. Simple way to block attacks targetting the recent Rails XML/yaml security bug (CVE-2013-0156). Updating or patching your rails app is preferred though: https://groups.google.com/forum/?fromgroups=#!topic/rubyonrails-security/t1WFuuQyavI
RewriteEngine On
RewriteCond %{REQUEST_METHOD} !GET|HEAD
RewriteCond %{SCRIPT_FILENAME} \.xml$ [OR]
RewriteCond %{HTTP:Content-Type} xml
RewriteRule . - [forbidden,last]
@johnl
johnl / enc.sh
Last active December 15, 2015 13:59
puppet enc hang bug report
#!/bin/sh
# sleep 1
echo -e "classes:\n"
@johnl
johnl / screenshot.sh
Created June 11, 2013 11:17
high speed screenshot and upload utility
#!/bin/bash
#
# Copyright 2013 John Leach <[email protected]>
#
# Distributed under terms of the MIT license
#
# Takes a screeshot using scrot and uploads it via scp and sticks the
# url on the clipboard as quickly as possible.
#
# For speed, it cheats and puts the url on the clipboard *before*
require 'openssl'
require 'socket'
ssl_context = OpenSSL::SSL::SSLContext.new
ssl_context.verify_mode = OpenSSL::SSL::VERIFY_PEER
ssl_context.cert_store = OpenSSL::X509::Store.new
ssl_context.cert_store.set_default_paths if File.exists? OpenSSL::Config::DEFAULT_CONFIG_FILE
socket = TCPSocket.new('api.gb1.brightbox.com', 443)
ssl_socket = OpenSSL::SSL::SSLSocket.new(socket, ssl_context)
class MyArray < Array
end
a = MyArray.new
puts a.class
b = a.compact
puts b.class
@johnl
johnl / gist:5947461
Created July 8, 2013 09:29
mysql general log example
mysql> select * from general_log;
+---------------------+---------------------------+-----------+-----------+--------------+-------------------------------------+
| event_time | user_host | thread_id | server_id | command_type | argument |
+---------------------+---------------------------+-----------+-----------+--------------+-------------------------------------+
| 2013-07-08 10:27:30 | root[root] @ localhost [] | 37 | 0 | Query | create table databasea (id integer) |
| 2013-07-08 10:27:35 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (1) |
| 2013-07-08 10:27:36 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (2) |
| 2013-07-08 10:27:37 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (3) |
| 2013-07-08 10:27:38 | root[root] @ localhost [] | 37 | 0 | Query
@johnl
johnl / gist:6592391
Created September 17, 2013 10:06
ruby shellwords library examples
irb(main):001:0> require 'shellwords'
=> true
irb(main):002:0> 'once upon "a time" there was\ a\ giant'.shellsplit
=> ["once", "upon", "a time", "there", "was a giant"]
irb(main):003:0> puts "one upon a time there was a giant & 'her dog' `hack`".shellescape
one\ upon\ a\ time\ there\ was\ a\ giant\ \&\ \'her\ dog\'\ \`hack\`
irb(main):004:0> ["ls", "/home/john/secret stuff/"].shelljoin