Ubuntu ์ค์
VMware ์ค์
๋จผ์ Vmware๋ฅผ ์ค์ ํด์ผ๊ฒ ์ฃ ?
์ฌ๊ธฐ์ Vmware Workstation์ ์ถ๊ฐํ์๋ฉด ๋๋๋ฐ ์ ๊ฐ ํด๋น ํ์ผ ์ฌ๋ ค๋๋ฆด๊ป์.
VMware_WorkStation.7z
drive.google.com
์ฐธ๊ณ ๋ก ๋ฐ์ด๋ฌ์ค์ธ์ง ์ด๋ป๊ฒ ์๋.. ๋ผ๊ณ ํ์ ๋ค๋ฉด
์๋ค์ ์ก
VirusTotal
Analyse suspicious files and URLs to detect types of malware, automatically share them with the security community
www.virustotal.com
์ฌ๊ธฐ ์ฌ์ดํธ ๋ค์ด๊ฐ์
์ ๊ฐ๋จํ๊ฒ ํ์ธํด ๋ณผ ์ ์์ต๋๋ค.
VirusTotal์ ๋ฌด๋ฃ๋ก ํ์คํ
๋ฐ ๋๋ฌด ์์กดํ์ง๋ ๋ง์์
Ubuntu Settings
Thank you for downloading Ubuntu Desktop | Ubuntu
Ubuntu is an open source software operating system that runs from the desktop, to the cloud, to all your internet connected things.
ubuntu.com
์ค์น ๋ฐ์ผ์ ํ..
์์ ๊ฐ์ด ์ค์ ํ๋ฉด ๋๋๋ฐ Vmware๊ฐ ๋๋ฆฌ๋ฉด..
ํด๋น ํ๋์จ์ด ์ฑ๋ฅ์ ์ฌ๋ฆฌ์๋ฉด ๋ฉ๋๋ค.
๋ญ ๋ ํ์ํ ๊ธฐ๋ฅ์ ์ถ๊ฐํ์๋ฉด ๋๊ฒ ์ฃ ?
Docker Settings
์ ๋ Hacking ๊ด๋ จ ํ๋์ ์ต๊ฐํด์ Kali linux๋ก ํ๊ธฐ์..
๊ฐ๋จํ๊ฒ Docker์ ๋ํ์ฌ๋ง ์์๋ด
์๋ค.
(Ubuntu๋ ๊ธฐ๋ฅ๋ํ๋ ๋ด๋ถ ์ค์ ๋ณผ๋ ๊ฐ๊ฐํ ์ฌ์ฉํ๊ฒ ๋ค์)
1. Install Docker
#!/bin/bash
# update repo
sudo apt-get update
# add GPG key
sudo apt-get install -y curl
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# add Docker repository
sudo apt-get install -y software-properties-common
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
# update the docker repo
sudo apt-get update
# make sure we install Docker from the Docker repo
sudo apt-cache policy docker-ce
# install Docker (the oldest version among the versions that Ubuntu supports)
sudo apt-get install -y docker-ce=5:19.03.9~3-0~ubuntu-focal;
# configure daemon.json
sudo mkdir -p /etc/docker
cat <<EOF | sudo tee /etc/docker/daemon.json
{
"exec-opts": ["native.cgroupdriver=systemd"],
"log-driver": "json-file",
"log-opts": {
"max-size": "100m"
},
"storage-driver": "overlay2"
}
EOF
# start docker
sudo systemctl enable docker
sudo systemctl restart docker
sleep 1
# add user to docker
sudo usermod -aG docker $USER
# allow non-root user to access docker.sock just for your convenience :)
# (Caution! This line may be harmful in the real-world!)
sudo chmod 666 /var/run/docker.sock
2. Install docker-compose
apt update -y
apt install -y docker
apt install -y docker-cli
apt install -y docker-compose
Pwn์ ์ฉ Docker Setttings
์์ค์ค์ Docker(pwn ์ ์ฉ)
dystopia050119.tistory.com
์ฐธ๊ณ ์๋ฃ
์ฐธ๊ณ ์ด๋ฏธ์ง