-i
- ignore errors
-c
- continue
-t
- use video title as file name
--extract-audio
- extract audio track
# Gawk version | |
# Remote | |
grep -v "rem_address" /proc/net/tcp | awk '{x=strtonum("0x"substr($3,index($3,":")-2,2)); for (i=5; i>0; i-=2) x = x"."strtonum("0x"substr($3,i,2))}{print x":"strtonum("0x"substr($3,index($3,":")+1,4))}' | |
# Local | |
grep -v "rem_address" /proc/net/tcp | awk '{x=strtonum("0x"substr($2,index($2,":")-2,2)); for (i=5; i>0; i-=2) x = x"."strtonum("0x"substr($2,i,2))}{print x":"strtonum("0x"substr($2,index($2,":")+1,4))}' | |
# No Gawk | |
# Local | |
grep -v "rem_address" /proc/net/tcp | awk 'function hextodec(str,ret,n,i,k,c){ |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# | |
# (c) 2020 Bernd Busse | |
# | |
"""Implementation of AES as used by https://aesencryption.net.""" | |
import base64 | |
import sys |
ec2-54-152-134-146.compute-1.amazonaws.com.
# http://crackmes.de/users/geyslan/crackme.02.32/ | |
import random | |
random.seed() | |
password = '' | |
secret = '\xf7\xf8\xf1\xf4\xf1\xf8\xb3\xfc\xfc' | |
for i in range(len(secret)): | |
candidates = '' |
perl -MPOSIX -MIO::Socket -We ' | |
my $s = IO::Socket::INET->new( | |
Proto => "udp", | |
LocalAddr => "0.0.0.0:162" | |
); | |
while ( $s->recv( $_, 65535 ) ) { | |
print strftime( "%F %T", localtime ), " ", $s->peerhost(), " $_\n"; | |
}' |
# Add to .bashrc | |
# You're welcome | |
function soocat { | |
socat tcp-l:${2},reuseaddr,fork EXEC:${1} | |
} |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of