First commit

This commit is contained in:
2026-02-08 18:38:50 +01:00
commit b026688232
10 changed files with 1788 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
PlainTextPW=$(pwgen 16 1)
echo $PlainTextPW > Password.txt &&
htpasswd -nb admin "$PlainTextPW" | sed -e 's/\$/\$\$/g' > HashTextPW.txt
echo "PW is: $PlainTextPW"
cat HashTextPW.txt