Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

69 total results found

Keybindings

w3m

Key/s Action ⇧ + H Opens Help with Shortcuts ⇧ + U Opens Url Tab ⇆ Tabs trough Links on site Esc + Tab ⇆ Tabs in reverse order trough Links on site ⇧ + / Search Site N Continue Search forward ⇧ + N Contunues Search in reverse order ⇧ + ...

fail2ban

fail2ban

unban IP Address fail2ban-client unban Show status of all fail2ban jails at once #!/bin/bash JAILS=`fail2ban-client status | grep "Jail list" | sed -E 's/^[^:]+:[ \t]+//' | sed 's/,//g'` for JAIL in $JAILS do fail2ban-client status $JAIL done

youtube-dl

youtube-dl

Installation sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl sudo chmod a+rx /usr/local/bin/youtube-dl Usage Download Playlist Videos youtube-dl -citkf mp4 <url> Download Playlist MP3 youtube-dl -ciw --extract-audio --...

Weechat - Misc

weechat

Join a server /server add BNC my.bouncer.net/6697 -ssl -username=username/network -password=password -autoconnect /save /connect <servername> Get ZNC sha cat ~/.znc/znc.pem | openssl x509 -sha512 -fingerprint -noout | tr -d ':' | tr 'A-Z' 'a-z' | cut -d = -f ...

TORify Weechat

weechat

Enable SASL EXTERNAL Create a new certificate TLS. ref mkdir ~/.weechat/certs cd ~/.weechat/certs openssl req -x509 -new -newkey rsa:4096 -sha256 -days 1000 -nodes -out freenode.pem -keyout freenode.pem Find sha1sum fingerprint. openssl x509 -in freenode.pem ...

Cheatsheet

Tmux

session management tmux ls (or tmux list-sessions) tmux new -s session-name Ctrl-b d Detach from session tmux attach -t [session name] tmux kill-session -t session-name Ctrl-b c Create new window Ctrl-b d Detach current client Ctrl-b l Move to...

fdupes

Less known but useful bash Commands

delete duplicate files without conformation fdupes -r /path/to/folder To manually confirm deletion of duplicated files fdupes -r -d /path/to/folder To automatically delete all copies but the first of each duplicated file (be warned, this actually deletes fil...

wget

wget

Mirror whole Web-Pages via wget wget -mkEpnp -e robots=off --convert-links Download only .mp3 files wget -e robots=off --no-parent -r --accept '*.mp3' wget via TOR torsocks wget --mirror --convert-links --adjust-extension --page-requisites ... Random wait ...

Useful Web Apps

Web-Apps

Ping DNS IP https://network-tools.com/ https://whatsmyip.com/ https://pingability.com/zoneinfo.jsp lil helpers https://www.gliffy.com/ https://www.thematrixer.com/binary.php https://corntab.com/ Online Archives https://archive.is/ https://archive.org/ Search t...

Featured Tech Blogs

Nice Tech Blogs

https://geekgonecrazy.com https://zerokspot.com https://robert.winter.ink https://www.brandonsjournal.com/ https://zerokspot.com/weblog/ https://mikestone.me/ https://gregoryhammond.ca/blog https://100daysofhannah.hannahvollmer.net/ https://www.justinvollmer.c...

Sed

Sed

Quite often when working with text files you’ll need to find and replace strings of text in one or more files. sed is a stream editor. It can perform basic text manipulation on files and input streams such as pipelines. With sed you can search, find and replac...

New Page

Cron

About Cron # Edit this file to introduce tasks to be run by cron. # # Each task to run has to be defined through a single line # indicating with different fields when the task will be run # and what command to run for the task # # To define the time you can ...

install ffmpeg

ffmpeg

apt-get install ffmpeg Convert .wav file to mp3 ffmpeg -i track01.wav -acodec mp3 track01.mp3 You can also specify the bitrate of the MP3 with the -ab flag. ffmpeg -i track01.wav -acodec mp3 -ab 64k track01.mp3 Convert a folder full of .wav into .mp3 for i ...

Install Torsocks

Torsocks

apt-get install torsocks if you haven't already enabled TOR, enable it via systemctl enable --now tor Surf in commandline via Torsocks In my experience the only commandline browser that works together with torsocks is w3m. First install w3m: apt-get install ...

Monitoring

Proxmox

Remember to do Backups!!! install smpd apt-get install snmpd libsnmp-dev add v3 user net-snmp-config --create-snmpv3-user -ro -A authpass -X privpass -a SHA -x AES username add clientserver to observium cd /opt/observium ./add_device.php <ipaddress> ap v3 us...

Join the Matrix

The Matrix

What is the Matrix In my opinion, The Matrix films provide the best metaphor our society has for understanding why organized evil and oppression are allowed to exist, and so I will use it for this purpose. While my interpretation isn't the only possible one, I...

stat

Stat

Get Date of OS Installation stat / | grep "Birth" | sed 's/Birth: //g' | cut -b 2-11

Basics

Git Commands Overview

Creating a new repository mkdir project cd project git init git remote add origin git@github.com:yourlogin/your-repo.git git add . git commit -am “new repository” git push -u origin master Cloning existing repository git clone https://github.com/username/your-...

Three easy steps:

How to set tx power to 30 on Alfa AWSU036H

Here it goes root@kali:~# ifconfig wlan1 down root@kali:~# iw reg set BO root@kali:~# iwconfig wlan1 txpower 30 This is what it looks before wlan1 IEEE 802.11bg ESSID: off/any Mode:Managed Access Point: Not-Associated Tx-Power=20 dBm Retry long limit:7 RTS th...

Aircrack vs. WPA2

Crack WiFi WPA2 via Aircrack-ng

Install Aircrack sudo apt-get install aircrack-ng Search for Wlan Adapters sudo airmon-ng Enable Monitor Mode sudo airmon-ng start wlan0 Kill all previous airmon processes sudo airmon-ng check kill Look out for the wireless monitor device Exec airodump-n...