UAPI Functions - ModSecurity::disable_domains

Description

This function disables ModSecurity™ on specified domains.

Examples 


 cPanel or Webmail Session URL

https://hostname.example.com:2083/cpsess##########/execute/ModSecurity/disable_domains?domains=example.com%2Cdallas.example.com%2Cgalveston.example.com

 LiveAPI PHP Class

$cpanel new CPANEL(); // Connect to cPanel - only do this once.
  
// Disable ModSecurity for specified domains.
$disable_modsec $cpanel->uapi(
    'ModSecurity''disable_domains',
    array(
        'domains'           => 'example.com,dallas.example.com,galveston.example.com'
    )
);

 LiveAPI Perl Module

my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.
  
# Disable ModSecurity for specified domains.
my $disable_modsec $cpliveapi->uapi(
    'ModSecurity''disable_domains',
        {
        'domains'           => 'example.com,dallas.example.com,galveston.example.com'
        }
);

 cPanel Template Toolkit

<!-- Get a hash of all the data, then display the enabled values. -->
[% data = execute( 'ModSecurity', 'disable_domains' ); %]
[% FOREACH q = data.enabled %]
     <p>
         [% q %]
     </p>
[% END %]
    
<!-- Get only the enabled value. -->
[% execute('ModSecurity', 'disable_domains' ).data.enabled %]

 Command Line

uapi --user=username ModSecurity disable_domains domains=example.com%2Cdallas.example.com%2Cgalveston.example.com

 

Notes:

  • You must URI-encode values.
  • username represents your account-level username.

Output (JSON)

 

Note:

Use cPanel's API Shell interface (Home >> Advanced >> API Shell) to directly test cPanel API calls.

 

Parameters

 Parameter 

Type

Description

Possible values

Example

domains

 string 

Required

 The domains. 

 

 A comma-separated list of valid domains that the cPanel account owns. 

Important:

The authenticated cPanel account must own these domains.

 example.com,dallas.example.com,galveston.example.com 

 

Returns

Return

Type

Description

Possible values

Example

domain

string

The domain.

A valid domain on the cPanel account.

example.com

 dependencies 

array

 An array of domains that your changes to a selected domain affect. 

 A list of valid domains on the cPanel account. 

"arkansas.com",

"kansas.com",

"nevada.com",

 "newmexico.com", 

"texas.com"

type

string

The domain type.

  • main — A main domain.
  • sub — A subdomain.

main

searchhint

string

A comma-separated list of domain-related search terms.

A comma-separated list of string values.

 

enabled

 Boolean 

Whether ModSecurity is enabled on the domain.

  • 1 — Enabled.
  • 0 — Disabled.

1

 

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

The cPanel Interface

For  cPanel  &  WHM  version  58 Overview The cPanel interface is...

User Preferences

For cPanel & WHM version 58 Overview This document outlines how to access your cPanel...

Manage External Authentications

For cPanel & WHM version 58 Overview Manage credentials Additional documentation...

What is cPanelID?

In This Article:  Overview ServicesHow to get a cPanelID cPanelID External...

Guide to cPanel Interface Customization - cPanel Style Development

Introduction You can develop custom styles that modify the appearance of the cPanel interface....