⚝
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
/
webmin
/
iscsi-target
/
View File Name :
save_timeout.cgi
#!/usr/bin/perl # Save global timeout options use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; require './iscsi-target-lib.pl'; our (%text, %in, %config); &ReadParse(); &error_setup($text{'timeout_err'}); &lock_file($config{'config_file'}); my $pconf = &get_iscsi_config_parent(); my $conf = $pconf->{'members'}; # Time between pings $in{'nopi_def'} || $in{'nopi'} =~ /^\d+$/ || &error($text{'conn_enopi'}); &save_directive($conf, $pconf, "NOPInterval", $in{'nopi_def'} ? [ ] : [ $in{'nopi'} ]); # Time to respond to ping before disconnecting $in{'nopt_def'} || $in{'nopt'} =~ /^\d+$/ || &error($text{'conn_enopi'}); &save_directive($conf, $pconf, "NOPTimeout", $in{'nopt_def'} ? [ ] : [ $in{'nopt'} ]); &flush_file_lines($config{'config_file'}); &unlock_file($config{'config_file'}); &webmin_log('timeout'); &redirect("");