⚝
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 :
~
/
proc
/
self
/
root
/
usr
/
share
/
webmin
/
nis
/
View File Name :
old_save_switch.cgi
#!/usr/bin/perl # save_switch.cgi # Save client nsswitch configuration require './nis-lib.pl'; &ReadParse(); &error_setup($text{'switch_err'}); foreach $sv (split(/\s+/, $in{'list'})) { if (defined($o = $in{"order_$sv"})) { $o =~ /\S/ || &error(&text('switch_eorder', $text{"switch_$sv"})); &save_nsswitch($sv, $o); } else { local @order; for($i=1; defined($o = $in{"order_${sv}_${i}"}); $i++) { push(@order, $o) if ($o); } &save_nsswitch($sv, join(" ", @order)); } } &flush_file_lines(); &redirect("");