
Parse::Flash::Cookie - A flash cookie parser.

use Parse::Flash::Cookie;
my @content = Parse::Flash::Cookie::to_text("settings.sol");
print join("\n", @content);
my $xml = Parse::Flash::Cookie::to_xml("settings.sol");
print $xml;

Local Shared Object (LSO), sometimes known as flash cookies, is a cookie-like data entity used by Adobe Flash Player. LSOs are stored as files on the local file system with the .sol extension. This module reads a Local Shared Object file and return content as a list.

Parses file and return contents as a textual list.
Parses file and return contents as a scalar containing XML representing the file's content.

The SOL files use a binary encoding that is little-endian regardless of platform architecture. This means the SOL files are platform independent, but they have to be interpreted differently on little-endian and big-endian platforms. See perlport for more.
It consists of a header and any number of elements. Both header and the elements have variable lengths.
The header has the following structure:
Each element has the following structure:

Resolve the value of object being pointed at for datatype pointer (instead of index).

Please report any bugs or feature requests to bug-parse-flash-cookie at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Parse-Flash-Cookie. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc Parse::Flash::Cookie
You can also look for information at:

http://en.wikipedia.org/wiki/Local_Shared_Object
http://sourceforge.net/docman/?group_id=131628

http://objection.mozdev.org/ (Firefox extension, Javascript, by Trevor Hobson)
http://www.sephiroth.it/python/solreader.php (PHP, by Alessandro Crugnola)
http://osflash.org/s2x (Python, by Aral Balkan)

Copyright 2007 Andreas Faafeng, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.