homepage

This issue tracker has been migrated to GitHub , and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: cookielib lacks FileCookieJar class for Safari
Type: enhancement Stage:
Components: Library (Lib) Versions: Python 3.4
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: loewis Nosy List: Hendrik, janssen, loewis, sams.james
Priority: normal Keywords: patch

Created on 2008年02月04日 19:37 by janssen, last changed 2022年04月11日 14:56 by admin.

Files
File name Uploaded Description Edit
cookie.diff Hendrik, 2014年02月05日 09:19 diff review
cookiejar.diff Hendrik, 2014年02月05日 09:42 without print line review
Messages (5)
msg62047 - (view) Author: Bill Janssen (janssen) * (Python committer) Date: 2008年02月04日 19:37
cookielib has no FileCookieJar class for Safari, Apple's standard and
default browser for OS X.
msg62048 - (view) Author: Bill Janssen (janssen) * (Python committer) Date: 2008年02月04日 19:38
I have code to read Safari cookies, but no code to write them. I'll
have to look at the FileCookieJar interface.
msg65544 - (view) Author: (sams.james) Date: 2008年04月16日 03:24
would you mind posting the read code you have? I would really like to at
least be able to import Safari cookies in an app or two I have lying
around..
msg209892 - (view) Author: Hendrik (Hendrik) Date: 2014年02月01日 15:43
I found a solution for reading Safari cookies, but struggling around with hg diff. Because always when i typ hg diff Lib/http/cookiejar.py it returns me the complete file not only my changes..
msg209971 - (view) Author: Hendrik (Hendrik) Date: 2014年02月02日 11:23
Ok, i've got it.
--- a/Lib/http/cookiejar.py	Wed Dec 18 15:37:03 2013 -0600
+++ b/Lib/http/cookiejar.py	Sat Feb 01 15:12:01 2014 +0100
@@ -11,17 +11,17 @@
 distributed with the Python standard library, but are available from
 http://wwwsearch.sf.net/):
 
- CookieJar____
- / \ \
- FileCookieJar \ \
- / | \ \ \
- MozillaCookieJar | LWPCookieJar \ \
- | | \
- | ---MSIEBase | \
- | / | | \
- | / MSIEDBCookieJar BSDDBCookieJar
- |/
- MSIECookieJar
+ CookieJar____
+ / \ \
+ FileCookieJar \ \
+ / / | \ \ \
+ SafariCookieJar / | LWPCookieJar \ \
+ / | | \
+ MozillaCookieJar | ---MSIEBase | \
+ | / | | \
+ | / MSIEDBCookieJar BSDDBCookieJar
+ |/
+ MSIECookieJar
 
 """
 
@@ -31,8 +31,11 @@
 import copy
 import datetime
 import re
+import getpass
 import time
 import urllib.parse, urllib.request
+import struct
+import io
 try:
 import threading as _threading
 except ImportError:
@@ -40,6 +43,9 @@
 import http.client # only for the default HTTP port
 from calendar import timegm
 
+import difflib
+#from difflib_data import *
+
 debug = False # set to True to enable debugging via the logging module
 logger = None
 
@@ -1938,6 +1944,109 @@
 raise LoadError("invalid Set-Cookie3 format file %r: %r" %
 (filename, line))
 
+class SafariCookieJar(FileCookieJar):
+ """
+ Read Cookies from Safari
+
+ """
+ def load(self, filename=None):
+ if filename == None:
+ username = getpass.getuser()
+ path = '/Users/' + username + '/Library/Cookies/Cookies.binarycookies'
+ else:
+ path = filename
+
+ bf=open(path,mode='rb')
+ scook = bf.read(4).decode("UTF-8")
+ if scook == 'cook':
+ NumberOfPages=struct.unpack('>i',bf.read(4))[0]
+ page_sizes=[]
+ for np in range(NumberOfPages):
+ page_sizes.append(struct.unpack('>i',bf.read(4))[0])
+ pages=[]
+ for ps in page_sizes:
+ pages.append(bf.read(ps))
+
+ for page in pages:
+ page=io.BytesIO(page)
+ page.read(4)
+ num_cookies=struct.unpack('<i',page.read(4))[0]
+ cookie_offsets=[]
+ for nc in range(num_cookies):
+ cookie_offsets.append(struct.unpack('<i',page.read(4))[0])
+
+ page.read(4)
+
+ cookie=''
+ for offset in cookie_offsets:
+ page.seek(offset)
+ cookiesize=struct.unpack('<i',page.read(4))[0]
+ cookie=io.BytesIO(page.read(cookiesize))
+
+ cookie.read(4)
+
+ flags=struct.unpack('<i',cookie.read(4))[0]
+ cookie_flags=''
+ if flags==0:
+ cookie_flags=''
+ elif flags==1:
+ cookie_flags='Secure'
+ elif flags==4:
+ cookie_flags='HttpOnly'
+ elif flags==5:
+ cookie_flags='Secure; HttpOnly'
+ else:
+ cookie_flags='Unknown'
+
+ cookie.read(4)
+
+ urloffset=struct.unpack('<i',cookie.read(4))[0]
+ nameoffset=struct.unpack('<i',cookie.read(4))[0]
+ pathoffset=struct.unpack('<i',cookie.read(4))[0]
+ valueoffset=struct.unpack('<i',cookie.read(4))[0]
+
+ endofcookie=cookie.read(8)
+
+ expiry_date_epoch= struct.unpack('<d',cookie.read(8))[0]+978307200
+ expiry_date=time.strftime("%a, %d %b %Y ",time.gmtime(expiry_date_epoch))[:-1]
+
+ create_date_epoch=struct.unpack('<d',cookie.read(8))[0]+978307200
+ create_date=time.strftime("%a, %d %b %Y ",time.gmtime(create_date_epoch))[:-1]
+
+ cookie.seek(urloffset-4)
+ url=''
+ u=cookie.read(1)
+ while struct.unpack('<b',u)[0]!=0:
+ url=url+u.decode('UTF-8')
+ u=cookie.read(1)
+
+ cookie.seek(nameoffset-4)
+ name=''
+ n=cookie.read(1)
+ while struct.unpack('<b',n)[0]!=0:
+ name=name+n.decode('UTF-8')
+ n=cookie.read(1)
+
+ cookie.seek(pathoffset-4)
+ path=''
+ pa=cookie.read(1)
+ while struct.unpack('<b',pa)[0]!=0:
+ path=path+pa.decode('UTF-8')
+ pa=cookie.read(1)
+
+ cookie.seek(valueoffset-4)
+ value=''
+ va=cookie.read(1)
+ while struct.unpack('<b',va)[0]!=0:
+ value=value+va.decode('UTF-8')
+ va=cookie.read(1)
+
+ print ('Cookie : '+name+'='+value+'; domain='+url+'; path='+path+'; '+'expires='+expiry_date+'; '+cookie_flags)
+
+ bf.close()
+ else:
+ bf.close()
+ raise LoadError("This is not an cookiefile!")
 
 class MozillaCookieJar(FileCookieJar):
 """
@@ -1979,6 +2088,7 @@
 """
 
 def _really_load(self, f, filename, ignore_discard, ignore_expires):
+
 now = time.time()
 
 magic = f.readline()
this solutions based on code from http://securitylearn.net/wp-content/uploads/tools/iOS/BinaryCookieReader.py 
History
Date User Action Args
2022年04月11日 14:56:30adminsetgithub: 46292
2014年07月12日 14:53:36berker.peksagsetnosy: - berker.peksag
2014年02月05日 10:56:49berker.peksagsetnosy: + berker.peksag
2014年02月05日 09:42:48Hendriksetfiles: + cookiejar.diff
2014年02月05日 09:19:09Hendriksetfiles: + cookie.diff
keywords: + patch
2014年02月02日 12:09:32Hendriksetversions: + Python 3.4, - Python 3.2
2014年02月02日 11:23:58Hendriksetmessages: + msg209971
2014年02月01日 15:43:40Hendriksetnosy: + Hendrik
messages: + msg209892
2010年07月10日 05:35:23terry.reedysetversions: + Python 3.2, - Python 2.6, Python 3.0
2008年04月16日 03:24:26sams.jamessetnosy: + sams.james
messages: + msg65544
2008年03月18日 17:37:55jafosetpriority: normal
assignee: loewis
nosy: + loewis
2008年02月04日 19:56:05georg.brandlsettype: behavior -> enhancement
2008年02月04日 19:38:36janssensetmessages: + msg62048
2008年02月04日 19:37:25janssencreate

AltStyle によって変換されたページ (->オリジナル) /