No need to do all of these, more of a list of ideas…
- Hunger
- Thirst
#!/bin/bash | |
set -u; | |
root="/opt/permission-tester/"; | |
output=`mktemp -t permission-tester.XXXXXXXXXX`; | |
#-------------------------------------------------- | |
# Check excluded folders exist, and are noexec | |
#-------------------------------------------------- |
<?php | |
$characters = []; | |
for ($k = 0; $k < 500000; $k++) { | |
$key = base64_encode(random_bytes(32)); // 32 bytes results in "=" padding; try changing to 30 to fix. | |
foreach (str_split($key) as $c) { | |
if (!isset($characters[$c])) { |