29일차
미션
호스트 전용 상태에서 ci4.st.kr로 접속 되도록 할 것
메인PC에 워크벤치 설치해서 접속 되도록 조치 할 것
웹의 태생적 문제
웹은 항상 열려 있다.
데이터베이스와 연결되어 있다.
CSRF공격에 취약하다.
XSS공격에 취약하다.
프레임워크의 방어 능력은 ?
내가 만들어야 하는가?
만들어져 있는가?
잘 사용하는가?
csrf공격차단은?
업로드 공격차단은?
create database shop;
create user ci4@localhost identified by '12345';
grant all on ci4.* to ci4@localhost;
create database web1;
create user web1@localhost identified by '123456';
grant all on web1.* to web1@localhost;
create user web1@'192.168.10.1' identified by '123456';
grant all on web1.* to web1@'192.168.10.1';
create user web1@'%' identified by '123456';
grant all on web1.* to web1@'%';
create database master;
create user master@localhost identified by '123456';
grant all on master.* to master@localhost;
create database jeonjucom;
create user jeonjucom@localhost identified by '123456';
grant all on jeonjucom.* to jeonjucom@localhost;
create database woosuk;
create user woosuk@localhost identified by '123456';
grant all on woosuk.* to woosuk@localhost;
create database gleaming;
create user gleaming@localhost identified by '123456';
grant all on gleaming.* to gleaming@localhost;
Routes에 대해 정확하게 이해할것~~
유효성검사