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
| Perform a comprehensive scan to identify any bugs that affects how the application functions. Any bug can become a security bug. Find everything that causes incorrect behavior, crashes, data loss, or deviations from expected operation. | |
| BUG CATEGORIES | |
| Detect issues across all of the following categories: | |
| LOGIC ERRORS | |
| - Incorrect conditional expressions (wrong operators, inverted logic) | |
| - Off-by-one errors in loops, array indexing, or range checks | |
| - Incorrect algorithm implementation or formula errors | |
| - Missing or incorrect base cases in recursive functions |
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
| ":set verbose=9 | |
| " not vi Compatable | |
| set nocompatible | |
| " encoding to utf-8 | |
| set tenc=utf-8 | |
| set enc=utf-8 | |
| " quiet erroring |
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
| #!/bin/bash | |
| # based off the basic script idea found here: https://www.wireguard.com/netns/ | |
| set -ex | |
| # namespace name | |
| ns=physical | |
| # ethernet type device list, seperated by spaces | |
| physeth="enp1s0" | |
| # wifi devices | |
| physwifi="wlp2s0" |
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
| diff -ur src/src/debugger.c src-update/src/debugger.c | |
| --- src/src/debugger.c 2011-11-14 19:03:40.000000000 -0800 | |
| +++ src-update/src/debugger.c 2025-09-04 18:19:21.821404084 -0700 | |
| @@ -1585,7 +1585,7 @@ | |
| saturn.mem_cntl[1].config[0] = ram_base; | |
| saturn.mem_cntl[1].config[1] = ram_mask; | |
| - return; | |
| + return 0; | |
| } |
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
| #!/usr/bin/env python3 | |
| # this script listens for a yubikey to be plugged into a device and shutdown if the button is pressed on it | |
| # handy for headless devices that have no power buttons but need to be shutdown | |
| # no verification is done to see if its an authorized yubi key | |
| # changelog | |
| # 20220504 - initial release | |
| import functools | |
| import os.path |