app.normandy.api_url = ""
app.normandy.enabled = false
app.shield.optoutstudies.enabled = false
app.update.auto = false [OS except Windows]
app.update.background.scheduling.enabled = false [Windows]
beacon.enabled = false
breakpad.reportURL = ""
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
| sudo apt --fix-broken install | |
| sudo apt -o Dpkg::Options::="--force-overwrite" --fix-broken install | |
| sudo apt upgrade |
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
| BEGIN | |
| { | |
| printf("Starting parse-pam_sm_authenticate.bt\n"); | |
| printf("Ctrl-C to exit.\n\n"); | |
| } | |
| uprobe:/usr/lib/x86_64-linux-gnu/security/pam_listfile.so:pam_sm_authenticate | |
| // ^^^^^^^^^^^^ | |
| // modify on your own | |
| { |
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
| winget install ffmpeg | |
| winget install deno | |
| winget install yt-dlp |
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
| [wsl2] | |
| memory=8GB | |
| localhostForwarding=true | |
| swap=2GB | |
| nestedVirtualization=true | |
| kernelCommandLine = cgroup_no_v1=all systemd.unified_cgroup_hierarchy=1 | |
| [experimental] | |
| autoMemoryReclaim=dropCache |
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
| #include <security/pam_appl.h> | |
| #include <security/pam_client.h> | |
| #include <security/pam_ext.h> | |
| #include <security/pam_filter.h> | |
| #include <security/pam_misc.h> | |
| #include <security/pam_modules.h> | |
| #include <security/pam_modutil.h> |
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
| body { | |
| height: 100dvh; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| main { | |
| flex-grow: 1; | |
| overflow: auto; | |
| } |
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
| sudo apt install nmap | |
| curl -sSf --tlsv1.2 --proto '=https' -LO https://nmap.org/svn/scripts/ssl-enum-ciphers.nse | |
| nmap --script ./ssl-enum-ciphers.nse -p 443 ${DOMAIN} |
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
| #include <ostream> | |
| #include <string> | |
| #include <type_traits> | |
| #include <utility> | |
| template <typename CharT, typename Arg> | |
| auto | |
| Print(std::ostream &os, [[maybe_unused]] CharT delimiter, const Arg &arg) | |
| -> std::ostream & { | |
| static_assert( |
NewerOlder