version 1.1.3

This commit is contained in:
ed 2018-08-22 00:38:35 +02:00
parent b034fa62f4
commit 29dc32f351
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ most to least recommended
| bash | [mostly internals](clients/bash.sh) |
| netcat | `nc r0c.int 531` |
you can even `exec 147<>/dev/tcp/r0c.int/531;cat<&147 &while IFS= read -rn1 x;do [[ "x$x" == "x" ]] && x=$'\n'; printf '%s' "$x">&147;done` (disconnect using `exec 147<&-; killall cat #sorry`)
you can even `exec 147<>/dev/tcp/r0c.int/531;cat<&147&while IFS= read -rn1 x;do [ -z "$x" ]&&x=$'\n';printf %s "$x">&147;done` (disconnect using `exec 147<&-; killall cat #sorry`)
## firewall rules

View File

@ -1,5 +1,5 @@
VERSION = (1,1,2)
BUILD_DT = (2018,3,21)
VERSION = (1,1,3)
BUILD_DT = (2018,8,21)
S_VERSION = '.'.join(map(str, VERSION))
S_BUILD_DT = '{0:04d}-{1:02d}-{2:02d}'.format(*BUILD_DT)