Screenshots
Example Usage
/*
IDEA: All files in the directory C:\Windows\System32\ should be 'owned' by TrustedInstaller.
If a file in the System32 directory is owned by a different user, this indicates an anomaly,
and that user is likely the user that created that file.
Malware likes to masquerade around as valid Windows system files.
Executables that are placed in the System32 directory not only look more official, as it is a common path for
system files, but an explicit path to that executable does not need to be supplied to execute it from the
command line, windows 'Run' dialog box of the start menu, or the win32 API call ShellExecute.
*/
SELECT
TOP 1000 *
FROM [FileProperties]
WHERE
[FileOwner] <> 'TrustedInstaller'
AND [DirectoryLocation] = ':\Windows\System32'
AND IsSigned = 0
ORDER BY [PrevalenceCount] DESC
/*
IDEA: The MFT creation timestamp and the OS creation timestamp should match.
If the MFT creation timestamp occurs after the creation time reported by the OS meta-data,
this indicates an anomaly.
Timestomp is a tool that is part of the Metasploit Framework that allows a user to backdate a file
to an arbitrary time of their choosing. There really isn't a good legitimate re
See also
toolkit
Free
The essential toolkit for reversing, malware analysis, and cracking…
LockKnife
Open Source
LockKnife: The Ultimate Android Security Research Tool. A unified TUI workspace and headless CLI for…
robot_hacking_manual
Open Source
Robot Hacking Manual (RHM). From robotics to cybersecurity. Papers, notes and writeups from a journe…
joincap
Open Source
Merge multiple pcap files together, gracefully.…
detect-lkm-rootkit-cheatsheet
Free
Cheat sheet to detect and remove linux kernel rootkit…
SM-A217F_forensics
Free
Samsung modem commands over USB serial connection and secret dialer codes extracted from system pack…