전체 글 (443) 썸네일형 리스트형 kaliLinux - website 취약점 공격연습 (metasplotiable db명 변경) #4 공격연습 테스트를 위해 dbname을 변경한다 [metasploitable 접속하여 아래 명령어를 통해 설정파일 변경하기]sudo nano /var/www/mutillidae/config.inc ...생략$dbname = 'owqsp10';...생략 kaliLinux - website 취약점 공격연습 (피해서버 Metasplotiable Mac에서 생성) #3 윈도우에서는 Metasplotiable 다운받아 VM에 설치하면 된다.맥에서는 안되어서 다른 방법으로 진행해야한다. 순서Metasplotiable 다운로드qemu 설치 (brew로 설치)qemu로 vmdk파일 qcow로 변환하기 (UTM에서 사용할 수 있도록함)UTM 설치 UTM에 Metasplotiable 설치VMworkStation에서 확인하기 1. Metasplotiable 다운로드https://sourceforge.net/projects/metasploitable/ MetasploitableDownload Metasploitable for free. Metasploitable is an intentionally vulnerable Linux virtual machine. This is Metas.. kaliLinux - website 취약점 공격연습 (서버생성) #2 1. 서버 가상화 이미지 셋팅 VM에 바로 설치할 수 있도록 이미지가 제공됨https://sourceforge.net/projects/metasploitable/ MetasploitableDownload Metasploitable for free. Metasploitable is an intentionally vulnerable Linux virtual machine. This is Metasploitable2 (Linux) Metasploitable is an intentionally vulnerable Linux virtual machine. This VM can be used to conduct security training, tesourceforge.net 가상화 VM 설치하기 2.. kaliLinux - website 취약점 공격연습 (셋팅) #1 1. VM 설치2. 칼리리눅스 OS 설치 먼저 가상화가 가능한지 확인한다.안되면컴퓨터마다 바이오스 설정들어가 설정해야함. 검색하면 잘 나온다. 1. VM설치 https://www.vmware.com/products/desktop-hypervisor/workstation-and-fusion Desktop Hypervisor Solutions | VMwareVMware Workstation and VMware Fusion desktop hypervisors are the industry leaders in local virtualization. Learn how VMware’s local virtualization solutions provide an easier way to build, test and.. atmega128 - LED 선택적 제어 #2 LED 4개를 연결하고원하는 포트 두개에만 출력을 하여 4개 중 2개만 LED를 점등해보자 코드#include main(){ DDRA = 0b00001001; PORTA = 0b00001001;} 회로도 실제 구현 모습 atmega128 - LED 켜기 #1 아트메가로 LED를 켜기 전에 LED 켜기 위한 회로의 기본적인 내용을 알아야 한다. 아래 영상이 쉽게 설명 잘 되어 있다. https://www.youtube.com/watch?v=CQlwmrqhSas&t=709s 간단하게 살펴보면LED는 받을 수 있는전류의 양이 정해져있다고 한다. 안전하게 LED를 켜기 위해저항을 추가해줘야한다. 1. LED 키는 소스#include main(){ DDRA = 0x01; PORTA = 0x01;} Data Direction Register A: 입출력을 결정하는 녀석 0x01인 경우 이진수로 나타내면 0b00000001이다. 제일 끝의 포트를 출력으로 잡겠다는 의미이다. 나머지는 모두 입력으로 잡는다. PORTA 또한제일 마지막 PA0 포트를 출력으.. atmega128 - atmel studio 설치 1. USB 연결주의할 점) 연결시 Program 삽입하기 때문에 ISP 모드로 변경해야한다. 2. 드라이버 설치 https://www.silabs.com/developer-tools/usb-to-uart-bridge-vcp-drivers?tab=downloads CP210x USB to UART Bridge VCP Drivers - Silicon LabsThe CP210x USB to UART Bridge Virtual COM Port (VCP) drivers are required for device operation as a Virtual COM Port to facilitate host communication with CP210x products. These devices can also in.. docker - nginx 컨테이너와 로컬 html 마운트하여 실행하기 docker nginx 설치docker pull nginx이미지docker run -d -p 80:80 -v $(pwd)/my-html:/usr/share/nginx/html 이미지아이디docker container 진입하여 conf 파일 확인하기 1.b. html은 ‘/usr/share/nginx/html’로 되어있다.→ 해당 디렉토리는 컨테이너에는 존재하지 않고, 로컬 컨테이너에 마운트되어있다.cd /etc/nginx/conf.d cat default.confdocker exec -it 컨테이너아이디 /bin/bash로컬의 /my-html 디렉토리 안에 html 파일을 넣어보자 test접속하여 확인하기http://localhost:80/ 이전 1 ··· 7 8 9 10 11 12 13 ··· 56 다음