BLACKSITE
:
18.219.208.51
:
103.154.184.216 / www.astitvaad.com
:
Linux vps.readyhost.in 4.18.0-553.6.1.el8.x86_64 #1 SMP Thu May 30 04:13:58 UTC 2024 x86_64
:
/
bin
/
Upload File:
files >> //bin/raindataperm
#!/bin/bash if [ "$#" -eq 2 ]; then if [ "$1" == "--set" ] && [ "$2" == "perm" ]; then for dir in /etc/sentora/panel/etc/apps/rainloop/*/; do # strip trailing slash homedir="${dir%/}" # strip all chars up to and including the last slash username="${homedir##*/}" #echo $username case $username in *.*) continue ;; # skip name with a dot in it esac #echo $dir chown -R "$username:$username" "$dir" done else echo "Invalid Paramaters" fi else echo "Invalid Parameters" fi