Jastes 2023. 3. 8. 20:47

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

์„ค์น˜ ๋ฐ›์œผ์‹  ํ›„..

0123

์œ„์™€ ๊ฐ™์ด ์„ค์ •ํ•˜๋ฉด ๋˜๋Š”๋ฐ Vmware๊ฐ€ ๋Š๋ฆฌ๋ฉด..
ํ•ด๋‹น ํ•˜๋“œ์›จ์–ด ์„ฑ๋Šฅ์„ ์˜ฌ๋ฆฌ์‹œ๋ฉด ๋ฉ๋‹ˆ๋‹ค.

01234

๋ญ ๋” ํ•„์š”ํ•œ ๊ธฐ๋Šฅ์€ ์ถ”๊ฐ€ํ•˜์‹œ๋ฉด ๋˜๊ฒ ์ฃ ?


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


์ฐธ๊ณ  ์ž๋ฃŒ

์ฐธ๊ณ  ์ด๋ฏธ์ง€