For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| require 'digest' | |
| # Get SHA256 Hash of a file | |
| puts Digest::SHA256.hexdigest File.read "data.dat" | |
| # Get MD5 Hash of a file | |
| puts Digest::MD5.hexdigest File.read "data.dat" | |
| # Get MD5 Hash of a string | |
| puts Digest::SHA256.hexdigest "Hello World" | |
| # Get SHA256 Hash of a string using update |
| import csv | |
| from time import * | |
| #tr < openurlgource.csv -d '\000' > openurlgourcenonulls.csv ???deletes | |
| #sed 's/\x0/ /g' openurlgource.csv > openurlgourcenonulls.csv | |
| f=open('openurlgourcenonulls.csv', 'rb') | |
| reader = csv.reader(f, delimiter='\t') | |
| writer = csv.writer(open('openurlgource.txt','wb'),delimiter='|') |
| #!/bin/bash | |
| # | |
| # Initialize new virtual server using LXC and set up networking and HTTP proxy | |
| # | |
| # Written by: Deni Bertovic <[email protected]> | |
| # | |
| # Released into Public Domain. You may use, modify and distribute it as you | |
| # see fit. | |
| # | |
| # This script will: |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| ############################################################################### | |
| # Author: @BrockTibert | |
| # Purpose: Collect Historical NHL Skater Stats 1960 - 2011 (in progress) | |
| # Date: February 2011 | |
| # | |
| # Used: R Version 2.12.1, Windows 7 Pro, StatET Plugin for Eclipse | |
| # | |
| # # Copyright (c) 2011, under the Simplified BSD License. | |
| # For more information on FreeBSD see: http://www.opensource.org/licenses/bsd-license.php | |
| # All rights reserved. |
Mr & Mrs Dupond
4 Ddres St
0110 Whangarei
20th August 2013
Dear {names},
Thank you for the opportunity to be involved in the design of your home at Abbey Caves road.
Based in our preliminary discussions on the 25th of last month, I have prepared the following Offer of Service for your consideration. It includes a few notes I have recorded so far, which you may like to amend or add to in order to further define the brief. When you have had the chance to read through this document, and if you agree with the terms outlined, please do sign the last page where indicated on both copies and return one of them to me.
This document has been modified from its [original format][m1], which was written by Ning Shang ([email protected]). It has been updated and reformatted into a [Markdown][m2] document by [Woody Gilk][m3] and [republished][m4].
When working with a remote git repository which is hosted on a third-party storage server, data confidentiality sometimes becomes
| wget http://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run | |
| chmod +x metasploit-latest-linux-x64-installer.run | |
| sudo ./metasploit-latest-linux-x64-installer.run |
| - name: get gridfs host ip from name (required for nginx gridfs module) | |
| shell: 'ping -q -c 1 -t 1 {{ gridfs_host }} | grep PING | sed -e "s/).*//" | sed -e "s/.*(//"' | |
| register: gridfs_ip_command | |
| when: gridfs_ip is not defined | |
| - name: set gridfs ip | |
| set_fact: gridfs_ip={{ gridfs_ip_command.stdout }} | |
| when: gridfs_ip is not defined |