%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.248 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/firewall6/ |
Upload File : |
#!/usr/bin/perl # move.cgi # Swap two rules in some chain require './firewall-lib.pl'; &ReadParse(); # what version IP protocaol version to use? if (&get_ipvx_version() == 6) { require './firewall6-lib.pl'; } else { require './firewall4-lib.pl'; } &lock_file($ipvx_save); @tables = &get_iptables_save(); $table = $tables[$in{'table'}]; &can_edit_table($table->{'name'}) || &error($text{'etable'}); $r = $table->{'rules'}; $c = $r->[$in{'idx'}]->{'chain'}; @rules = grep { lc($_->{'chain'}) eq lc($c) } @$r; $pos = &indexof($r->[$in{'idx'}], @rules); &can_jump($r->[$in{'idx'}]) || &error($text{'ejump'}); if ($in{'down'}) { # Swap with next rule in this chain $nxt = $rules[$pos+1]->{'index'}; &can_jump($r->[$nxt]) || &error($text{'ejump'}); ($r->[$in{'idx'}], $r->[$nxt]) = ($r->[$nxt], $r->[$in{'idx'}]); } else { # Swap with previous rule in this chain $prv = $rules[$pos-1]->{'index'}; &can_jump($r->[$prv]) || &error($text{'ejump'}); ($r->[$in{'idx'}], $r->[$prv]) = ($r->[$prv], $r->[$in{'idx'}]); } &run_before_command(); &save_table($table); &run_after_command(); ©_to_cluster(); &unlock_file($ipvx_save); &webmin_log("move", "rule", undef, { 'table' => $table->{'name'}, 'chain' => $r->[$in{'idx'}]->{'chain'} }); &redirect("index.cgi?version=${ipvx_arg}&table=$in{'table'}");