⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.162
Server IP:
147.93.29.146
Server:
Linux server.tagooz.co 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
Server Software:
Apache
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
scripts
/
View File Name :
listsubdomains
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/listsubdomains Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited use strict; use Cpanel::Config::LoadUserOwners (); use Cpanel::Config::userdata (); my $user = $ARGV[0]; if ( !defined $user ) { &usage; } my @users = ($user); # Case 41981: For resellers, add their client users' accounts my %OWNER; Cpanel::Config::LoadUserOwners::loadtrueuserowners( \%OWNER, 1, 1 ); push @users, ( grep { $OWNER{$_} eq $users[0] && $_ ne $users[0] } keys(%OWNER) ); foreach $user (@users) { print $user, ":\n"; my $subdomains_hr = Cpanel::Config::userdata::load_user_subdomains($user); for my $subdomain ( keys %$subdomains_hr ) { print "\t", $subdomain, "\n"; } } sub usage { print <<EO_USAGE; Usage: listsubdomains user EO_USAGE exit 0; }