"Very" Hidden sheets in Excel
Using oletool to analyse and detect hidden sheet
Last updated
Was this helpful?
Using oletool to analyse and detect hidden sheet
Last updated
Was this helpful?
Although Microsoft has disabled VBA Macro by default if it comes from external (from the internet) in August. The usage of VBA Excel 4.0 Macro has significantly decreased by 68%.
The link above already explains very well about this topic, but I want to dig a little bit deeper.
The byte value at position 5 in a BOUNDSHEET record defines the visibility of a sheet:
Visible (0x00)
Hidden (0x01)
Very hidden (0x02)
What is BOUNDSHEET anyway? This record contains the name of a sheet in the Excel file along with the sheet type and the position of the sheet within a stream. It looks like this when you use oledump to analyze the excel file
This plugin will carve the data out of the biff header which it can identify by looking for the biff header which is the first 8 bytes of the file below are BIFF version 5 and its magic compound number (you can check the format of biff header right here )