403Webshell
Server IP : 15.235.198.142  /  Your IP : 216.73.216.212
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/bin/X11/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

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


use warnings;
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 (<STDIN>) {
		s/\\/\\\\/g;
		s/\n/\\n/g;
		print;
	}
} else {
	while (<STDIN>) {
		for (split /(\\.)/) {
			s/\\(.)/$1 eq "n" ? "\n" : $1/eg;
			print;
		}
	}
}


Youez - 2016 - github.com/yon3zu
LinuXploit