2 curated items with deep-dive analysis
@tom_doerr (Tom Dörr)
| import requests | |
| import sys | |
| from bs4 import BeautifulSoup | |
| from time import sleep | |
| # fancy color! | |
| class colorBrights: | |
| BLACK = '\033[90m' | |
| RED = '\033[91m' | |
| GREEN = '\033[92m' |
| Retrieves all of the trust relationships for this domain - Does not Grab Forest Trusts | |
| ([System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()).GetAllTrustRelationships() | |
| Grab Forest Trusts. | |
| ([System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()).GetAllTrustRelationships() | |
| # script to scan MS Office files, looking for "Shell.Explorer" OLE objects which could match CVE-2026-21509 | |
| # using oletools - https://github.com/decalage2/oletools | |
| # Philippe Lagadec 2026-01-28 | |
| # NOTES: | |
| # According to the MS advisory https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-21509 | |
| # the CVE-2026-21509 vulnerability is related to CLSID "EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B", | |
| # corresponding to the "Shell.Explorer" COM object, which can be used to open the legacy | |
| # Internet Explorer engine (aka Trident/MSHTML) from any application. | |
| # So to exploit CVE2026-21509 from a MS Office document, one could use either an OLE object |
| "workbench.colorCustomizations": { | |
| // Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast. | |
| "contrastActiveBorder": "", | |
| "contrastBorder": "", | |
| // Base Colors | |
| "focusBorder": "", | |
| "foreground": "", | |
| "widget.shadow": "", | |
| "selection.background": "", | |
| "descriptionForeground": "", |
| { | |
| "name": "Default colors dark", | |
| "type": "dark", | |
| "colors": { | |
| // Base colors | |
| "focusBorder": "#007fd4", | |
| "foreground": "#cccccc", | |
| "widget.shadow": "#0000005c", | |
| // "selection.background": // null |
| "workbench.colorCustomizations": { | |
| // Contrast colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast | |
| "contrastActiveBorder": "", //An extra border around active elements to separate them from others for greater contrast. | |
| "contrastBorder": "", //An extra border around elements to separate them from others for greater contrast. | |
| //Base colors | |
| "focusBorder": "", //Overall border color for focused elements. This color is only used if not overridden by a component. | |
| "foreground": "", //Overall foreground color. This color is only used if not overridden by a component. | |
| "disabledForeground": "", //Overall foreground for disabled elements. This color is only used if not overridden by a component. | |
| "widget.border": "", //Border color of widgets such as Find/Replace inside the editor. | |
| "widget.shadow": "", //Shadow color of widgets such as Find/Replace inside the editor. |