- In layman's terms: Protecting computers from theft or damage
- In more technical terms:
- Penetration Testing
- Vulnerability Assessment
- "Ethical Hacking"
- Cyber Defence
- Threat Monitoring
- Threat Hunting
- Threat Intelligence
This file contains 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
#include <stdio.h> | |
#include <string.h> | |
/* | |
Terminal text foreground and background colours can be changed using ANSI escape codes. | |
If an escape character followed by a certain sequence is printed to STDOUT, the terminal will change the fore/background colour. | |
- Foregroud colour sequence: ESC[38;5;{COLOUR}m replace {COLOUR} with one of the numbers from the 8-bit ANSI colour lookup table. | |
- Background colour sequence: Do the exact same as above but use 48 instead of 38. Making the sequence ESC[48;5;{COLOUR}m |
This file contains 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: Custom.Windows.Registry.MUICache | |
description: | | |
Parses the system's MUI cache from the registry | |
author: Ahmed Elmayyah & eduardocm | |
parameters: | |
- name: ModernRegistryGlob | |
default: HKEY_USERS\*\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\MuiCache** | |
- name: LegacyRegistryGlob |