⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
usermin
/
usermount
/
Edit File: mount.cgi
#!/usr/bin/perl # mount.cgi # Mount or unmount a directory require './usermount-lib.pl'; &ReadParse(); ($d) = grep { /^(mount|umount)/ } (keys %in); $d =~ /^(\S+)_(\S+)$/; $fs = $2; $cmd = $1 eq "mount" ? "mount ".quotemeta($fs) : "umount ".quotemeta($fs); &error_setup($1 eq "mount" ? $text{'mount_err1'} : $text{'mount_err2'}); if ($in{'pass_'.$fs}) { $temp = &transname(); open(TEMP, ">$temp"); print TEMP $in{'pass_'.$fs},"\n"; close(TEMP); $out = `$cmd -p - <$temp 2>&1`; } else { $out = `$cmd </dev/null 2>&1`; } unlink($temp); if ($?) { &error("<pre>$out</pre>"); } &redirect("");
Simpan