Develop
2018.04.05 08:09

How to Test SMTP AUTH using Telnet

조회 수 1597 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

Below are instructions on how to test SMTP AUTH against a mail server using Telnet and entering the commands by hand.

The first thing you need to do is get a base64 encoding of your username and password. There are a couple ways to do this, the example below uses Perl:

perl -MMIME::Base64 -e 'print encode_base64("username");' perl -MMIME::Base64 -e 'print encode_base64("password");'


What will be returned from each command is a base64 encoding of the username and password; save these as you will need them later. Now connect to the mail server using Telnet:

telnet mailserver.com 25


Greet the mail server:

EHLO mailserver.com


Tell the server you want to authenticate with it:

AUTH LOGIN


The server should have returned 334 VXNlcm5hbWU6; this is a base64 encoded string asking you for your username, paste the base64 encoded username you created earlier, example:

dXNlcm5hbWUuY29t


Now the server should have returned 334 UGFzc3dvcmQ6;. Again this is a base64 encoded string now asking for your password, paste the base64 encoded password you created, example:

bXlwYXNzd29yZA==


Now you should have received a message telling you that you successfully authenticated. If it failed your user/pass may have been wrong or your mailserver is broken.

Below is a log of a real successful SMTP AUTH connection over Telnet:

user@localhost [~]# telnet exampledomain.com 25 Trying 1.1.1.1... Connected to exampledomain.com (1.1.1.1). Escape character is '^]'. 220-server1.exampledomain.com ESMTP Exim 4.66 #1 Wed, 09 May 2007 23:55:12 +0200 220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail. EHLO exampledomain.com 250-server1.exampledomain.com Hello [1.1.1.2] 250-SIZE 52428800 250-PIPELINING 250-AUTH PLAIN LOGIN 250-STARTTLS 250 HELP AUTH LOGIN 334 VXNlcm5hbWU6 dXNlcm5hbWUuY29t 334 UGFzc3dvcmQ6 bXlwYXNzd29yZA== 235 Authentication succeeded



[출처] https://www.ndchost.com/wiki/mail/test-smtp-auth-telnet



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
729 Develop [git] 쉬운 버전관리 Git 설명 hooni 2015.08.18 970
728 Develop [ios] 오브젝티브C→스위프트, 코드 변환 손쉽게 file hooni 2015.08.07 1090
727 Develop [ios] Objective-C Types & Storage Capacity hooni 2015.07.22 1264
726 Develop [ios] AES256 알고리즘을 이용해 데이터 암호화/복호화 방법 file hooni 2015.07.21 4198
725 Develop [ios] NSData to NSString (NSString to NSData) hooni 2015.07.21 738
724 Develop [ios] WWDC 2015 샘플 소스 코드 통합파일 hooni 2015.07.20 811
723 Develop [android] N-Puzzle 게임 file hooni 2015.07.09 966
722 Develop [android] 코드에서 문자열로 Resource 가져오기 hooni 2015.07.09 4081
721 Develop [android] AlertDialog 메시지 창 띄우기 hooni 2015.07.09 993
720 Develop [c] 이진트리/트리 순회법 코드(전위/중위/후위) 5 file hooni 2015.07.02 21069
719 Develop 정리할 자료. file hooni 2015.07.02 831
718 Develop [ios] NSNotificationCenter 초간단 사용 예~ ㅋㄷ hooni 2015.06.26 761
717 Develop [c] 이진 탐색 두 가지 코드 (재귀/반복) file hooni 2015.06.26 981
716 Develop [c] FSN 온라인 코딩 테스트 (Sorting, Binary Search) file hooni 2015.06.26 1134
715 Develop [ppt] iOS 플라랩#04(2015.06.19) 발표 자료 file hooni 2015.06.04 776
714 Develop Aspect Oriented Programming in Objective-C hooni 2015.05.18 952
Board Pagination Prev 1 ... 6 7 8 9 10 ... 53 Next
/ 53