본문 바로가기

개발

(326)
개발/해킹
MITM (man in the middle attack) MITM (man in the middle attack) MITM (man in the middle attack)은 네트워크 통신을 조작하여 통신 내용을 도청하거나 조작하는 공격 기법이다. 중간자 공격은 통신을 연결하는 두 사람 사이에 중간자가 침입하여, 두 사람은 상대방에게 연결했다고 생각하지만 실제로는 두 사람은 중간자에게 연결되어 있으며 중간자가 한쪽에서 전달된 정보를 도청 및 조작한 후 다른 쪽으로 전달한다. 많은 암호 프로토콜은 중간자 공격을 막기 위하여 인증을 사용한다. 예를 들어, TLS/SSL 프로토콜은 공개 키를 기반으로 한 인증을 사용한다. 1. 중간자 공격을 막기 위한 방법에는 다음과 같은 것들이 제안되어 있다. 공개 키 기반구조(Public Key Infrastructures, PK.. 2015.02.03
개발/서버
DNS 시스템에 대한 위협에 대해 DNS 시스템에 대한 위협에 대해 http://www.ietf.org/rfc/rfc3833.txt Network Working Group D. AtkinsRequest for Comments: 3833 IHTFP ConsultingCategory: Informational R. Austein ISC August 2004 Threat Analysis of the Domain Name System (DNS) Status of this Memo This memo provides information for the Internet community. It does not specify an Internet standard of any kind. Distribution of this memo is unlimite.. 2015.02.03
개발/서버
apache 디폴트 설정 apache 디폴트 설정 ## This is the main Apache HTTP server configuration file. It contains the# configuration directives that give the server its instructions.# See for detailed information.# In particular, see # # for a discussion of each configuration directive.## Do NOT simply read the instructions in here without understanding# what they do. They're here only as hints or reminders. If you are unsu.. 2014.12.09
개발/php
php.ini 디폴트 설정 php.ini 디폴트 설정 [PHP] ;;;;;;;;;;;;;;;;;;;; About php.ini ;;;;;;;;;;;;;;;;;;;;; PHP's initialization file, generally called php.ini, is responsible for; configuring many of the aspects of PHP's behavior. ; PHP attempts to find and load this configuration from a number of locations.; The following is a summary of its search order:; 1. SAPI module specific location.; 2. The PHPRC environment variabl.. 2014.12.09
개발/linux
linux 터미널 한글 설정 # vi /etc/sysconfig/i18n LANG="ko_KR.UTF-8"SUPPORTED="ko_KR.UTF-8:ko_KR:ko"SYSFONT="latarcyrheb-sun16"bashrc 파일 설정 # vi /etc/bashrc export LANG="ko_KR.UTF-8"export LC_ALL="ko_KR.UTF-8"vimrc 파일 설정 # vi /etc/vimrc if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"set fileencodings=utf-8,euc-krendif 2014.12.08
개발/linux
ssh 클라이언트 설치 yum install openssh-clients 2014.12.08