Project/APM웹서버
게시판 만들기 ( DB설정 )
Albin
2021. 11. 4. 00:53
Union SQL Injection, Error Based SQL Injection 을 공부하기 위해 게시판을 만들기로 했다.
일단 디비/테이블 설정은 다음과 같이 했다.
create table boardList (
number int unsigned not null primary key auto_increment,
title varcha(150) not null,
content text not null,
id varchar(20) not null,
pw varchar(20) not null,
date timestemp,
hit int unsigned not null default 0
);