1754745289

This commit is contained in:
2025-08-09 07:14:49 -06:00
parent a73e960869
commit e93abac372
3 changed files with 14 additions and 5 deletions
+2
View File
@@ -29,6 +29,8 @@ function do_admin_shit {
# handle interactive shit right away
## schedule chkdsk to take up fuckin tons of time
Start-Process -Verb RunAs -FilePath cmd.exe -ArgumentList '/C "chkdsk /r C:"'
Start-Process -Verb RunAs -FilePath cmd.exe -ArgumentList '/C "chkdsk /r D:"'
Start-Process -Verb RunAs -FilePath cmd.exe -ArgumentList '/C "chkdsk /r E:"'
## must use fuckin cmd bullshit grumble grumble
## cancel with shutdown /a
+3
View File
@@ -2,6 +2,9 @@ out_file="/tmp/nmap.xml"
nmap -vv -T4 10.0.0.0/24 -oX $out_file --stylesheet https://h.acker.is/nmaprincesspi/xsl/princesspi-nmap.xsl
scp $out_file inter:/var/www/h.acker.is/nmaprincesspi_manual_scans
ssh inter "fix_permissions"
webhook bootup
echo "file: $out_file"
+9 -5
View File
@@ -4,8 +4,12 @@
[ "root" != "$USER" ] && exec sudo $0 "$@"
KEY="$2"
mkdir /home/$1/.ssh
echo $KEY >> /home/$1/.ssh/authorized_keys
chmod 700 /home/$1/.ssh
chmod 600 /home/$1/.ssh/authorized_keys
chown -R $1:$1 /home/$1/.ssh
if [ -d "/home/$1/.ssh" ]; then
echo "$KEY" >> "/home/$1/.ssh/authorized_keys"
else
mkdir "/home/$1/.ssh"
echo "$KEY" >> "/home/$1/.ssh/authorized_keys"
fi
chmod 700 "/home/$1/.ssh"
chmod 600 "/home/$1/.ssh/authorized_keys"
chown -R $1:$1 "/home/$1/.ssh"