Skip to content

Instantly share code, notes, and snippets.

View nicolasjulian's full-sized avatar
🏠
Working from home

Nicolas Julian nicolasjulian

🏠
Working from home
View GitHub Profile
sudo apt-get remove docker docker-engine docker.io containerd runc
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
@nicolasjulian
nicolasjulian / backuper.sh
Created January 19, 2020 17:20
Container Volume Backuper
#!/bin/bash
backup(){
location=`sudo docker inspect $1|grep _data|awk -F '"' '{print $4}'`
sudo mkdir -p /root/all-backup/$1/
sudo cp $location /root/all-backup/$1/ -R
}
read -p "Masukan List ID Container :" list_container
IFS=$'\r\n' GLOBIGNORE='*' command eval 'id_container=($(cat $list_container))'
for (( i = 0; i < "${#id_container[@]}"; i++ )); do
container="${id_container[$i]}"
@nicolasjulian
nicolasjulian / all.txt
Created April 26, 2019 08:02 — forked from jhaddix/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎