Skip to content

Instantly share code, notes, and snippets.

View NuxRo's full-sized avatar

NuxRo NuxRo

  • Delta Quadrant
View GitHub Profile
@degan
degan / gist:70e8059507d173751294
Last active August 29, 2015 14:16
FREAK Attack server test
see discussion below
@rohityadavcloud
rohityadavcloud / build-systemvm-vmware-ovftool.sh
Created May 12, 2015 16:09
build-systemvm-vmware-ovftool
#!/bin/bash
# usage: bash <script> systemvm64template-4.5-vmware systemvm64template-4.5-vmware.vmdk
function stage_vmx (){
cat << VMXFILE > "${1}.vmx"
.encoding = "UTF-8"
displayname = "${1}"
annotation = "${1}"
guestos = "otherlinux-64"
@msdousti
msdousti / form.php
Created July 3, 2017 09:35
A simple PHP file, returning "204 NO CONTENT" in response to any request
<?php
ob_start();
header("HTTP/1.1 204 NO CONTENT");
header("Cache-Control: no-cache, no-store, must-revalidate"); // HTTP 1.1.
header("Pragma: no-cache"); // HTTP 1.0.
header("Expires: 0"); // Proxies.