This version has some Python3/Linux/MacOS fixes.
re-search_V0_0_18.zip (https)MD5: 1BCA3B59B719FAFD6016D2F9F32F1A05
SHA256: 9E4807D3CE0EC320028AC760D3915F4FC0CBF6EC6E20FC9B2C91C54E74E6F548
This version has some Python3/Linux/MacOS fixes.
re-search_V0_0_18.zip (https)This new version of AnalyzePESig, my tool to analyze the digital signature of PE files, brings some major updates:
And several bug fixes.

This is a bug fix version
pdfid_v0_2_8.zip (https)This is a bug fix version.
pdf-parser_V0_7_5.zip (https)This new version brings a bug fix and an update to plugin_biff’s XOR deobfuscation.
oledump_V0_0_62.zip (https)I did record 8 videos explaining the different commands of my dnsresolver.py tool.
This is a tool that can serve files, facilitate exfiltration, do tracking, answer wildcard requests, do rcode testing and also simple resolving.
I have a YouTube playlist with all 8 videos: dnsresolver playlist.

Access to files on a Windows NTFS filesystem is governed by permissions and privileges.
For permissions, it is done with a security descriptor on a file which contains a Discretionary Access Control List (DACL): these are the permissions that decide if a user has access (and which type of access) to said file. Most files don’t have their own, proper permissions: they inherit them from their parent folders.
Even administrators can be denied access to a file through DACL configuration.
But there is another mechanism that governs access to securable objects like files: privileges. A privilege is a property that a user holds. Administrators have many privileges that normal users don’t have. Like SeBackupPrivilege and SeRestorePrivilege (these are privileges necessary for backup operators).
When a user holds a privilege, it allows that user to do things that other users without that privilege are not allowed to do. For example, the SeBackupPrivilege allows a user to read any file, even if the security descriptor denies access.
But just having the SeBackupPrivilege is not enough:
1) it needs to be enabled programmatically
2) when opening a file, the intention to use the privilege must be specified
Doing this in a programming language like C is easy (for example, I programmed this into my FileScanner tool), but for Python, it’s a bit more complicated.
Part 1, enabling the privilege can be done in Python with the following code (it relies on pywin32).
import win32security
import win32api
def EnablePrivilege(privilege):
hToken = win32security.OpenProcessToken(win32api.GetCurrentProcess(), win32security.TOKEN_ADJUST_PRIVILEGES | win32security.TOKEN_QUERY)
win32security.AdjustTokenPrivileges(hToken, 0, [(win32security.LookupPrivilegeValue(None, privilege), win32security.SE_PRIVILEGE_ENABLED)])
win32api.CloseHandle(hToken)
EnablePrivilege(win32security.SE_BACKUP_NAME)
Part 2, opening the file, is typically done with WIN32 API function CreateFile and passing it the FILE_FLAG_BACKUP_SEMANTICS flag with argument dwFlagsAndAttributes.
In Python, we usually access files via function open, and not via WIN32 API function CreateFile. We can do that, but I found a simpler method.
Python’s open function has no argument where we can pass flag FILE_FLAG_BACKUP_SEMANTICS, so we cannot use open.
Python also has function os.open, it returns a file descriptor that can then be used with other file descriptor operations, like read. Like open, os.open has no argument to pass flag FILE_FLAG_BACKUP_SEMANTICS. However, someone figured out it can be done indirectly by using flag 0x2000 (os.O_DIRECTORY ?) :
fd = os.open('c:\\demo\\test.txt', 0x2000)
os.read(fd, 0x10) # read 10 bytes
Here under is a demo. File c:\demo\test.txt is only accessible (full control) by a given, normal user. And not by the administrator. This instance of Python is running under the account of an elevated administrator (so that it has the SeBackupPrivilege ready to be enabled).
When attempting to open file c:\demo\test.txt with open and os.open, permission is denied.
But after enabling SeBackupPrivilege, access via os.open is granted:

