Skip to content

Instantly share code, notes, and snippets.

View dol's full-sized avatar

Dominic dol

View GitHub Profile
@dol
dol / index.html
Created March 14, 2016 00:08
NW issue with 'new Image' on 0.12
<!DOCTYPE html>
<html>
<head>
<title>Hello Node Webkit</title>
</head>
<body>
<div id="my"></div>
<script>
var ctx = document.getElementById('my');
var image = new Image();
@dol
dol / .gitignore
Last active November 29, 2016 14:20
Store mitmdump raw requests and responses instead of internal format
/tmp/
FROM httpd
RUN apt-get update && apt-get install -y \
wget \
automake \
build-essential \
ssl-cert \
&& rm -rf /var/lib/apt/lists/*
RUN make-ssl-cert generate-default-snakeoil
@dol
dol / get_script_path.sh
Created December 6, 2019 11:14
Get the path to the script
#!/usr/bin/env bash
function ostype() {
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) machine=Linux;;
Darwin*) machine=Mac;;
CYGWIN*) machine=Cygwin;;
MINGW*) machine=MinGw;;
*) machine="UNKNOWN:${unameOut}"
@dol
dol / csr.php
Last active August 13, 2020 08:20
PHP CSR with subjectAltName
<?php
$keyConfig = [
'private_key_type' => OPENSSL_KEYTYPE_RSA,
'private_key_bits' => 2048,
];
$key = openssl_pkey_new($keyConfig);
$sanDomains = [
'mydomain.tld',
@dol
dol / cert.php
Created July 24, 2017 13:11
Create CSR with subjectAlternativeName and check and copy them to a signed certificate
<?php
require_once __DIR__ . '/vendor/autoload.php';
use X509\CertificationRequest\CertificationRequest;
use X509\CertificationRequest\Attribute\ExtensionRequestValue;
use X509\Certificate\Extension\SubjectAlternativeNameExtension;
use X509\GeneralName\DNSName;
use CryptoUtil\PEM\PEM;
@dol
dol / chunked_encoding.lua
Created December 19, 2022 23:00
Chunked encoding in Lua
function chunked_encoding(socket, data)
local chunk_size = 1024
-- Iterate over the data in chunks of chunk_size
for i = 1, #data, chunk_size do
local chunk = data:sub(i, i + chunk_size - 1)
-- Calculate the length of the chunk in hexadecimal format
local length = string.format("%X\r\n", #chunk)