[darksharavim]cat telnet.sh #!/bin/sh tpipe(){ sleep 1; echo 'helo nice' sleep 1; echo 'quit' } tpipe | telnet smtp.nate.com 25 결과를 저장해야할 경우 [darksharavim]cat telnet.sh #!/bin/sh tpipe(){ sleep 1; echo 'helo nice' sleep 1; echo 'quit' } tpipe | telnet smtp.nate.com 25 | tee result.txt [darksharavim]cat result.txt Trying 117.53.114.15... Connected to smtp.nate.com. Escape character is '^]'. 220 *..
pop3연결 [darksharavim.tistory.com]telnet localhost 110 Trying ::1... telnet: connect to address ::1: Connection refused Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. +OK 10 POP3 service ready. user test7 +OK Password required for test7@darksharavim.tistory.com pass test1234 +OK Maildrop has 2 messages (1716 bytes) list +OK 2 1716 1 854 2 862 . 명령어 user : 사용자 아이디 입력 pass : ..
1. 인증여부 확인 telnet localhost 25 ehlo localhost 250-AUTH LOGIN 부분이 있는지 확인한다. 2. SMTP AUTH 사용자 인증이 되는지 확인 telnet localhost 25 helo locahost 250 SRSECU.sindo.com Hello [192.168.1.154] auth login 334 VXNlcm5hbWU6 (Base64로 인코딩한 ID)= // 뒤에 =는 Base64 의 패딩이다. (Base64로 인코딩한 Password)= base64인코딩디코딩 URL : http://www.hashemian.com/tools/base64-encode-decode.php 235 2.7.0 Authentication successful 라고 나오면 인증이 ..