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/bash # # eqn2graph -- compile EQN equation descriptions to bitmap images # # by Eric S. Raymond , July 2002 # # In Unixland, the magic is in knowing what to string together... # # Take an eqn equation on stdin, emit cropped bitmap on stdout. # The eqn markup should *not* be wrapped in .EQ/.EN, this script will do that. # A -format FOO option changes the image output format to any format # supported by convert(1). All other options are passed to convert(1). # The default format is PNG. # # This is separate from pic2graph because pic processing has some weird # clipping effect on the output, mangling equations that are very wide # or deep. Besides, this tool can supply its own delimiters. # # Requires the groff suite and the ImageMagick tools. Both are open source. # This code is released to the public domain. # # Here are the assumptions behind the option processing: # # 1. None of the options of eqn(1) are relevant. # # 2. Many options of convert(1) are potentially relevant, (especially # -density, -interlace, -transparency, -border, and -comment). # # Thus, we pass everything except -format to convert(1). # convert_opts="" convert_trim_arg="-trim" format="png" while [ "$1" ] do case $1 in -format) format=$2 shift;; -v | --version) echo "GNU eqn2graph (groff) version 1.22.4" exit 0;; --help) echo "usage: eqn2graph [ option ...] < in > out" exit 0;; *) convert_opts="$convert_opts $1";; esac shift done # create temporary directory tmp= for d in "$GROFF_TMPDIR" "$TMPDIR" "$TMP" "$TEMP" /tmp do test -n "$d" && break done if ! test -d "$d" then echo "$0: error: temporary directory \"$d\" does not exist or is" \ "not a directory" >&2 exit 1 fi if ! tmp=`(umask 077 && mktemp -d -q "$d/eqn2graph-XXXXXX") 2> /dev/null` then # mktemp failed--not installed or is a version that doesn't support those # flags? Fall back to older method which uses more predictable naming. # # $RANDOM is a Bashism. The fallback of $PPID is not good pseudorandomness, # but is supported by the stripped-down dash shell, for instance. tmp="$d/eqn2graph$$-${RANDOM:-$PPID}" (umask 077 && mkdir "$tmp") 2> /dev/null fi if ! test -d "$tmp" then echo "$0: error: cannot create temporary directory \"$tmp\"" >&2 exit 1 fi # See if the installed version of convert(1) is new enough to support the -trim # option. Versions that didn't were described as "old" as early as 2008. is_convert_recent=`convert -help | grep -e -trim` if test -z "$is_convert_recent" then echo "$0: warning: falling back to old '-crop 0x0' trim method" >&2 convert_trim_arg="-crop 0x0" fi trap 'exit_status=$?; rm -rf "$tmp" && exit $exit_status' EXIT INT TERM # Here goes: # 1. Add .EQ/.EN. # 2. Process through eqn(1) to emit troff markup. # 3. Process through groff(1) to emit Postscript. # 4. Use convert(1) to crop the Postscript and turn it into a bitmap. read equation (echo ".EQ"; echo 'delim $$'; echo ".EN"; echo '$'"$equation"'$') | \ groff -e -Tps -P-pletter > "$tmp"/eqn2graph.ps \ && convert $convert_trim_arg $convert_opts "$tmp"/eqn2graph.ps \ "$tmp"/eqn2graph.$format \ && cat "$tmp"/eqn2graph.$format # End