One Hat Cyber Team
Your IP :
18.188.7.254
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
opt
/
sharedrads
/
View File Name :
account-review
#!/opt/imh-python/bin/python3 """Shows relevant information about cPanel users and UltraStack accounts""" from pathlib import Path from account_review import ( cpanel_display_user, ultrastack_display_account, get_users_from_args, ) # Define the paths to check wordpress_ultrastack_path = Path("/etc/ansible/wordpress-ultrastack") cpanel_bin_directory = Path("/usr/local/cpanel/bin") # Check if the WordPress Ultrastack file exists if wordpress_ultrastack_path.exists(): ultrastack_display_account() # Check if the cPanel directory exists elif cpanel_bin_directory.exists(): cpanel_display_user(get_users_from_args()) else: print( "Neither cPanel or Platform I UltraStack: " + "No relevant file or directory found." )