⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.13
Server IP:
109.199.105.153
Server:
Linux connect.inboxifs.com 5.15.0-152-generic #162-Ubuntu SMP Wed Jul 23 09:48:42 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
usermin
/
changepass
/
View File Name :
recovery.cgi
#!/usr/bin/perl # Set or clear the user's recovery address require './changepass-lib.pl'; &error_setup($text{'recovery_err'}); &ReadParse(); # Save or clear if ($in{'recovery_def'}) { &save_recovery_address(undef); } else { $in{'recovery'} =~ /^\S+\@\S+$/ || &error($texy{'recovery_eemail'}); &save_recovery_address($in{'recovery'}); } # Tell the user &ui_print_header(undef, $text{'recovery_title'}, ""); if ($in{'recovery_def'}) { print $text{'recovery_cleared'},"<p>\n"; } else { print &text('recovery_set', "<tt>".&html_escape($in{'recovery'})."</tt>"),"<p>\n"; } &ui_print_footer("", $text{'index_return'});