I hereby claim:
- I am nicholasadamou on github.
- I am nicholasadamou (https://keybase.io/nicholasadamou) on keybase.
- I have a public key ASDQrOfcbdE2QVq8EB9m3cneXGsZ7ZWT0i6pVojzDmNh_go
To claim this, I am signing this object:
scoop update && scoop update * && cup all -y && npm-windows-upgrade.cmd |
#!/bin/bash | |
get_os() { | |
local os="" | |
local kernelName="" | |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
kernelName="$(uname -s)" |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// Choose either "stable" for receiving highly polished, | |
// or "canary" for less polished but more frequent updates | |
updateChannel: 'stable', |
#!/bin/bash | |
# Docker configurations | |
# see: https://nickjanetakis.com/blog/setting-up-docker-for-windows-and-wsl-to-work-flawlessly | |
export DOCKER_HOST=tcp://0.0.0.0:2375 # Configure WSL to Connect to Docker for Windows | |
sudo mount --bind /mnt/c /c # Automatically set up the bind mount |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
trap "exit 1" TERM | |
export TOP_PID=$$ | |
verify_os() { | |
kernel="$(uname -s)" | |
if [ "$kernel" != "Linux" ]; then | |
echo "System must be running Linux." |
#!/bin/bash | |
sudo apt-get update \ | |
&& sudo apt-get upgrade -y \ | |
&& sudo apt-get dist-upgrade -y \ | |
&& sudo apt autoremove -y |
#!/bin/bash | |
#see: https://albeec13.github.io/2017/09/26/raspberry-pi-zero-w-simultaneous-ap-and-managed-mode-wifi/ | |
x="/etc/udev/rules.d/70-persistent-net.rules" | |
cat < "$x" <<- EOL | |
SUBSYSTEM=="ieee80211", ACTION=="add|change", ATTR{macaddress}=="b8:27:eb:ff:ff:ff", KERNEL=="phy0", \ | |
RUN+="/sbin/iw phy phy0 interface add ap0 type __ap", \ | |
RUN+="/bin/ip link set ap0 address b8:27:eb:ff:ff:ff" | |
EOL |
Here's a short shell script to quickly update hak5 software for bashbunny, wifi-pineapple, etc.
curl https://gist.github.com/nicholasadamou/cf10162d83856c2f344a825eb44ee10f/raw/f92b890c353a286d34b6fa1fdacf422accd9a6cd/update.sh | bash
or
alias h5u="curl https://gist.github.com/nicholasadamou/cf10162d83856c2f344a825eb44ee10f/raw/f92b890c353a286d34b6fa1fdacf422accd9a6cd/update.sh | bash"
Here's a short shell script to quickly update Kali-Pi drivers.
curl https://gist.github.com/nicholasadamou/561385b9121c35d7434f597e4072957c/raw/515cf36604133959eac10ec9534aa981d7101645/update.sh | bash
or
alias rpu="curl https://gist.github.com/nicholasadamou/561385b9121c35d7434f597e4072957c/raw/515cf36604133959eac10ec9534aa981d7101645/update.sh | bash"