Downloads:
357
Downloads of v 2.0.0.51:
27
Last Update:
08 Oct 2024
Package Maintainer(s):
Software Author(s):
- Joakim Schicht
Tags:
mft2csv mft to csv ntfs digital forensics incident response dfir- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Mft2Csv
- 1
- 2
- 3
2.0.0.51 | Updated: 08 Oct 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
357
Downloads of v 2.0.0.51:
27
Maintainer(s):
Software Author(s):
- Joakim Schicht
Mft2Csv 2.0.0.51
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Joakim Schicht. The inclusion of Joakim Schicht trademark(s), if any, upon this webpage is solely to identify Joakim Schicht goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Mft2Csv, run the following command from the command line or from PowerShell:
To upgrade Mft2Csv, run the following command from the command line or from PowerShell:
To uninstall Mft2Csv, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download mft2csv --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade mft2csv -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade mft2csv -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install mft2csv
win_chocolatey:
name: mft2csv
version: '2.0.0.51'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'mft2csv' do
action :install
source 'INTERNAL REPO URL'
version '2.0.0.51'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller mft2csv
{
Name = "mft2csv"
Version = "2.0.0.51"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'mft2csv':
ensure => '2.0.0.51',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator Windos on 08 Oct 2024.
Introduction
This tool is for parsing, decoding and logging information from the Master File Table ($MFT) to a csv. It is logging a large amount of data and that has been the main purpose from the very start. Having all this data in a csv is convenient for further analysis. It supports getting the $MFT from a variety of sources.
Details
Input can be any of the following:
Raw/dd image of disk (MBR and GPT supported)
Raw/dd image of partition
$MFT extracted file
Reading of $MFT directly from a live system
Reading of $MFT by accessing .\PhysicalDriveN directly (no mount point needed).
Reading of $MFT directly from within shadow copies.
$MFT fragments extracted from memory dumps or unallocated (see MFTCarver).
Single records extracted. See MftRcrd with the -w switch.
There is an option to choose which UTC region to decode for. For instance you have a disk image and the target system had a timezone configuration of UTC -9.30, then you can configure it like that and get the timestamps directly into UTC 0.00. Default is UTC 0.00, and if running on a live system, there is no need to do anything as timestamps are automatically set to UTC 0.00.
The format of output can be chosen. Currently it is possible to choose from:
All (will write to csv everything it can). Default set.
log2timeline: http://code.google.com/p/log2timeline/wiki/l2t_csv
bodyfile (v3.x): http://wiki.sleuthkit.org/index.php?title=Body_file
It is possible to parse broken/partial $MFT by configuring "Broken $MFT". This setting is necessary if for instance index number 0 is missing (the record for $MFT itself).
Also it is possible to configure the tool to skip fixups. This is something you may want if you are working on memory dumps. If so, you need to run MFTCarver on the memdump first. Then run mft2csv on the output file from MFTCarver. Must have both "Broken $MFT" and "Skip Fixups" configured in such a case.
Note on VirusTotal detections
This application is a compiled AutoIt script.
AutoIt scripts packaged in this way are often incorrectly flagged as malware.
This is issue is documented in the AutoIt Wiki here: https://www.autoitscript.com/wiki/AutoIt_and_Malware
From: https://github.com/jschicht/Mft2Csv/blob/master/LICENSE.md
LICENSE
MIT License
Copyright (c) 2022 Joakim Schicht
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
md5: 22B70AF8918358BE1F8F23C030418304 | sha1: 89381F5A4F22541E54F2EA8253D2FDEE91F7C341 | sha256: 930EE52B1FD9EB23C6044A9B2448A9752189797587E74264165A107B586780FE | sha512: 2512B392525F731B162A8E05ED0CDC01F34BF44948E80CB60453AD86980452A102AF38E90731D35F01A38C59DDBC5BACECDB8B1F080DD489BDF55F1771383D3C
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Download zip package:
URL: https://github.com/jschicht/Mft2Csv/releases/download/v2.0.0.51/Mft2Csv_v2.0.0.51.zip
Compare the SHA256 hash of the downloaded zip package with that of the embedded zip package:
SHA256: 930EE52B1FD9EB23C6044A9B2448A9752189797587E74264165A107B586780FE
Log in or click on link to see number of positives.
- mft2csv.2.0.0.51.nupkg (68cb3cf4f28c) - ## / 65
- Mft2Csv_v2.0.0.51.zip (930ee52b1fd9) - ## / 68
- Mft2Csv64.exe (d82eb6added3) - ## / 72
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Mft2Csv 2.0.0.51 | 27 | Tuesday, October 8, 2024 | Approved | |
Mft2Csv 2.0.0.50 | 78 | Friday, April 26, 2024 | Exempted | |
Mft2Csv 2.0.0.49 | 252 | Thursday, January 5, 2023 | Approved |
2022 Joakim Schicht
This package has no dependencies.
Ground Rules:
- This discussion is only about Mft2Csv and the Mft2Csv package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Mft2Csv, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.