| List1 | list2 | list3 | list4 | list5 |
|---|---|---|---|---|
| asterisk | icq | oracle-listener | rexec | snmp |
| cisco | imap[s] | oracle-sid | rlogin | socks5 |
| cisco-enable | irc | pcanywhere | rpcap | ssh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "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": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Default colors dark", | |
| "type": "dark", | |
| "colors": { | |
| // Base colors | |
| "focusBorder": "#007fd4", | |
| "foreground": "#cccccc", | |
| "widget.shadow": "#0000005c", | |
| // "selection.background": // null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| /* UI */ | |
| "workbench.colorTheme": "Monokai +Blue", | |
| "workbench.sideBar.location": "right", | |
| "window.zoomLevel": 2, | |
| "breadcrumbs.enabled": false, | |
| "workbench.iconTheme": "vscode-icons", | |
| "telemetry.telemetryLevel": "off", | |
| "window.commandCenter": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| // breadcrumbs | |
| "breadcrumbs.enabled": false, | |
| // editor | |
| "editor.lineNumbers": "relative", | |
| "editor.guides.indentation": false, | |
| "editor.guides.bracketPairs": false, | |
| "editor.guides.bracketPairsHorizontal": false, | |
| "editor.guides.highlightActiveBracketPair": false, |
NewerOlder