DB 생성하기
웹 해킹 실습시에 사용할 데이터를 저장할 DB를 만들어준다
C:\Users\418-12>C:\xampp\mysql\bin\mysql.exe -u rootWelcome to the MariaDB monitor. Commands end with ; or \g.Your MariaDB connection id is 2Server version: 10.1.36-MariaDB mariadb.org binary distributionCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MariaDB [(none)]> CREATE DATABASE dvwa;Query OK, 1 row affected (0.00 sec)MariaDB [(none)]> SHOW DATABASES;+--------------------+| Database |+--------------------+| dvwa || information_schema || mysql || performance_schema || phpmyadmin || test |+--------------------+6 rows in set (0.00 sec)MariaDB [(none)]>파일업로드 1번 째 문제 - File Upload 확장자 검증 우회(DVWA Security::Low-Level)
가장 낮은 단계의 웹 해킹 방법으로는 파일업로드 시 확장자 검증을 우회하는 방법이 있다.예를들어 서버에 업로드 할 수 있는 파일의 확장자가 .jpg파일일 경우 공격자는 확장자를 우회하여 .php파일을 .jpg파일로 속일 수 있다는 것이다.
'Deep Learning > 연구.개발 관련 지식들' 카테고리의 다른 글
이공계 논문 쓰기. Overleaf로부터 시작해보자 (0) | 2020.05.17 |
---|---|
Git의 기초. 이전 commit을 삭제 하는 방법. file_size_limit 처리방법 (1) | 2020.04.07 |
오픈소스 소프트웨어 라이센스의 종류와 제약 (0) | 2020.02.06 |
Git의 기초::변경 내용을 Stage하고 커밋하는 방법 (0) | 2019.11.19 |
운영체제 페이징 기법과 최적적합(Best-Fit) - 정보처리기사 문제은행 (0) | 2018.10.22 |
댓글