-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Type [PowerForensic.Ntfs.FileRecord] not found #145
Comments
Thanks for the detailed issue. Looks like there is a typo in the new function ([PowerForensic.Ntfs.FileRecord] instead of [PowerForensics.Ntfs.FileRecord]). I can make an update this evening. In the meantime you should be find if you just add the "s" to PowerForensic on line 963. |
thanks for the quick answer > Get-ForensicFileRecord -Path C:\Windows\System32\cmd.exe
|
Yea sorry this latest version is still a work in progress (completely changed how everything works). For now you have to use \.\C: rather than C: or C (until I add a normalization function). |
I suspect that is the issue anyway... |
It's working for C:
But not if you put a path's file (I try different combination) Get-ForensicFileRecord -Path \.\C:\Windows\System32\cmd.exe
Regards |
Yea. Looks like i need to go back through and add the logic to a different
set of functions :(
…On Fri, Dec 2, 2016 at 1:43 AM, secusoc ***@***.***> wrote:
It's working for C:
*C:\Windows\system32> Get-ForensicFileRecord -Path \.\C:*
FullName : C:\$MFT
Name : $MFT
SequenceNumber : 1
RecordNumber : 0
ParentSequenceNumber : 5
...
But not if you put a path's file (I try different combination)
*Get-ForensicFileRecord -Path \.\C:\Windows\System32\cmd.exe*
Exception when calling "Get" with "2" argument (s): "Invalid VolumeBootRecord Footer. "
The character C:\Users\test\Documents\WindowsPowerShell\Modules\PowerForensics-master\Modules\PowerForensics\PowerForensics.psm1: 963: 21
+ Write-Output ([PowerForensics.Ntfs.FileRecord] :: Get ($ Path, $ ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~
+ CategoryInfo: NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId: Exception
Regards
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#145 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMqcAhwn1UO8rHjYtTQB3sXOcmexvNM3ks5rD74jgaJpZM4LBZ8G>
.
|
While waiting for the fix, what queries do you use to recover the timestamps $FN as a replacement? |
Hi Jared,
Regards |
Thanks for staying on top of it. I fixed the typos (let me know if you find any more). The issue with the Path parameter will take me a little longer to fix (I need some time to sit down and think about the best way to fix the issue). When you say "While waiting for the fix, what queries do you use to recover the timestamps $FN as a replacement?" what exactly are you looking for? |
|
In the interim you can get this information by parsing the entire MFT with Get-ForensicFileRecord and then using Where-Object to find the record you are interested in.
|
You can also automate the comparison of $SI and $FN timestamps by using Based on my experience this will have its fair share of false positives though. |
I have the same issue for the 2: Get-ForensicFileRecord -VolumeName \.\C: | Where-Object {$_.FullName -eq 'C:\Windows\System32\cmd.exe'}
|
looks like you missed the first \ on \.\C: |
I try with \.\C: => it take times.... and same error (PowerForensics.psm1:920 : 21) |
(The message don't show it but i put the 2 slash before ".") |
yea nevermind. looks like github is cutting off our |
You're right because i try with D: and it's working... |
No problem. Is the drive a test machine or a production machine? If it is a test machine, would you be able to share an exported version of the MFT with me? |
I can't it's a production machine. sorry. |
No worries. I've just seen that there are a lot of built in executable that exhibit that same behavior. That being said, I'd be interested to hear what your tests find. |
Hi,
Thanks a lot for your tool!
I have a problem in the use of "Get-ForensicFileRecord" (error in PowerForensics.psm1: 963: 21)
My config:
> Get-ForensicFileRecord -Path C:\Windows\System32\cmd.exe
> $stacktrace
When i try with -AsBytes, no error but i have just the Bytes Array:
> Get-ForensicFileRecord -Path C:\Windows\System32\cmd.exe -AsBytes
Thanks in advance for your help
Regards
The text was updated successfully, but these errors were encountered: