DS Store: Difference between revisions

From RCATs
(Created page with "Category:Reconnaissance ==About .ds_stores== .DS_Store files contain records of the different properties (fields) of the files or directories of the directory of .DS_Store. These fields can specify things like modification dates, icons, backgrounds, comments, etc. This program parses, displays, and explains all the fields currently known in .DS_Store. (There's a lot!) <syntaxhighlight> sudo git clone https://github.com/HanwenZhu/.DS_Store-parser cd .DS_Store-parser...")
 
No edit summary
 
Line 4: Line 4:
.DS_Store files contain records of the different properties (fields) of the files or directories of the directory of .DS_Store. These fields can specify things like modification dates, icons, backgrounds, comments, etc. This program parses, displays, and explains all the fields currently known in .DS_Store. (There's a lot!)
.DS_Store files contain records of the different properties (fields) of the files or directories of the directory of .DS_Store. These fields can specify things like modification dates, icons, backgrounds, comments, etc. This program parses, displays, and explains all the fields currently known in .DS_Store. (There's a lot!)


<syntaxhighlight>
<syntaxhighlight lang=powershell>
# Clone the repo
sudo git clone https://github.com/HanwenZhu/.DS_Store-parser
sudo git clone https://github.com/HanwenZhu/.DS_Store-parser
# CD into the Directory below
cd .DS_Store-parser
cd .DS_Store-parser
python3 parse.py <.DS_Store file>
</syntaxhighlight>


<syntaxhighlight>
# Run the command with the downloaded .ds_store file
python3 parse.py <.DS_Store file>
python3 parse.py <.DS_Store file>
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 17:38, 1 February 2023


About .ds_stores

.DS_Store files contain records of the different properties (fields) of the files or directories of the directory of .DS_Store. These fields can specify things like modification dates, icons, backgrounds, comments, etc. This program parses, displays, and explains all the fields currently known in .DS_Store. (There's a lot!)

# Clone the repo
sudo git clone https://github.com/HanwenZhu/.DS_Store-parser

# CD into the Directory below
cd .DS_Store-parser

# Run the command with the downloaded .ds_store file
python3 parse.py <.DS_Store file>