Mysql 계정,데이터베이스,테이블 생성 및 외부접근 허용하기
1. 사용자 계정 만들기insert into user(host, user, password) values('%', '', password(''));flush privileges; 2. 데이터베이스 생성create database DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci; 3. 테이블 생성create table member( no int not null primary key auto_increment, id varchar(12), password varchar(12) , name varchar(10) , reg_date datetime ); 4. 데이터베이스 권한 부여grant all privileges on .* to ''@'%' ident..
더보기
포렌식 메모리 분석(w/Redline)
메모리구조 - 식별 KPCR(Kernel Processor Control Region), KDBG(Kernel Debugger Datablock), KDBG(_KDDEBUGGER_DATA64의 약자) KPCR - 사용하고 있는 CPU의 정보를 담고 있는 구조체 - 구조 분석 EPROCESS, PEB(Process Environment Block), VAD(Virtual Address Descriptor), DLLs, Kernel modules, drivers - 내용 확인 후킹탐지, 시그니처 확인 프로세스분석- Image Name, Full Path, Parent Process, Command Line, Start Time, Security IDs(실행계정) 예) svchost(O), scvhost(X)..
더보기