⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.93
Server IP:
65.108.141.171
Server:
Linux server.heloix.com 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
webmin
/
init
/
Edit File: delete_action.cgi
#!/usr/bin/perl # delete_action.cgi # Delete an existing action and remove it from all the runlevels require './init-lib.pl'; &ReadParse(); $access{'bootup'} == 1 || &error($text{'save_ecannot'}); if ($in{type} == 0) { # Deleting a normal action foreach (&action_levels('S', $in{action})) { /^(\S+)\s+(\S+)\s+(\S+)$/; &delete_rl_action($in{action}, $1, 'S'); } foreach (&action_levels('K', $in{action})) { /^(\S+)\s+(\S+)\s+(\S+)$/; &delete_rl_action($in{action}, $1, 'K'); } $file = &action_filename($in{action}); } elsif ($in{type} == 1) { # deleting an odd action $file = &runlevel_filename($in{runlevel}, $in{startstop}, $in{number}, $in{action}); } if (&has_command("insserv")) { &system_logged("insserv -r ".quotemeta($in{action})); } &unlink_logged("/etc/init/$in{'action'}.conf"); &unlink_logged($file); &webmin_log('delete', 'action', $in{'action'}); &redirect("");
Simpan