Skip to content

Instantly share code, notes, and snippets.

@atosz33
atosz33 / openssl_commands.md
Created April 3, 2019 11:43 — forked from p3t3r67x0/openssl_commands.md
Some list of openssl commands for check and verify your keys

openssl

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
@atosz33
atosz33 / web-server.awk
Created November 15, 2018 08:47
Gawk web server
#Usage: gawk -f web-server
BEGIN {
RS = ORS = "\r\n"
HttpService = "/inet/tcp/8080/0/0"
Hello = "<HTML><HEAD>" \
"<TITLE>A Famous Greeting</TITLE></HEAD>" \
"<BODY><H1>Hello, world</H1></BODY></HTML>"
Len = length(Hello) + length(ORS)
print "HTTP/1.0 200 OK" |& HttpService