- Do you have an Github account ? If not create one.
- Install required tools
- Latest Git Client
- gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
| Steps to install Metasploit on Windows 10 using the Windows Subsystem for Linux | |
| 1.) Enable Developer Mode | |
| C:\> reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1" | |
| 2.) Enable Windows Subsystem for Linux | |
| C:\> DISM /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux | |
| 3.) Reboot |
| apt-get update | |
| apt-get install -y g++ automake autoconf libtool libltdl-dev gengetopt make cmake libssl-dev | |
| git clone https://github.com/coova/coova-chilli | |
| git checkout 1.4 | |
| ./bootstrap |
| server: | |
| do-not-query-localhost: no | |
| domain-insecure: "0.168.192.in-addr.arpa" | |
| domain-insecure: "example.local" | |
| local-zone: "168.192.in-addr.arpa." nodefault | |
| private-address: 10.0.0.0/8 | |
| private-address: 169.254.0.0/16 | |
| private-address: 172.16.0.0/12 | |
| private-address: 192.168.0.0/16 | |
| private-address: fd00::/8 |
| #!/bin/bash | |
| tput setaf 0 | |
| echo "BLACK FOREGROUND" | |
| tput setaf 1 | |
| echo "RED FOREGROUND" | |
| tput setaf 2 | |
| echo "GREEN FOREGROUND" | |
| tput setaf 3 | |
| echo "YELLOW FOREGROUND" |
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
| #!/bin/sh | |
| # place this file at: /etc/hotplug.d/iface/99-login-fon | |
| # Configurations | |
| FON_USERNAME=email%40domain.com | |
| FON_PASSWORD=123456 | |
| FON_DELAY_UP=3 | |
| COOKIE_JAR_PATH=/tmp/nos-fon-cookie-jar.$INTERFACE | |
| . /lib/functions.sh |
| #!/bin/sh | |
| # Modified version of: | |
| # http://tech.namshi.com/blog/2015/08/02/vmware-fusion-headless/ | |
| # See above for adding `vmrun` to your path. | |
| if [ -z "$vmFile" -a -f *.vmx ] | |
| then | |
| vmFile=`ls *.vmx | head -n 1` | |
| echo "vmFile set to $vmFile." |
| /** | |
| * Declaration | |
| */ | |
| /* | |
| 'tfp_format' really is the central function for all tinyprintf. For each output character | |
| after formatting, the 'putf' callback is called with 2 args: | |
| - an arbitrary void* 'putp' param defined by the user and passed unmodified from 'tfp_format'; | |
| - the character; |
| #!/bin/bash | |
| # Author: http://crunchbang.org/forums/viewtopic.php?id=38748#p414992 | |
| # m4bronto | |
| # Chapter #0:0: start 0.000000, end 1290.013333 | |
| # first _ _ start _ end | |
| while [ $# -gt 0 ]; do | |
| ffmpeg -i "$1" 2> tmp.txt |
| /* | |
| Copyright © 2016 Egtra | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |