Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 3.147.77.51
Web Server : Apache/2.4.62 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/2/root/lib/python3/dist-packages/markdown_it/common/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/2/root/lib/python3/dist-packages/markdown_it/common/normalize_url.py
from __future__ import annotations

from collections.abc import Callable
import re
from urllib.parse import quote, unquote, urlparse, urlunparse  # noqa: F401

import mdurl

from .. import _punycode

RECODE_HOSTNAME_FOR = ("http:", "https:", "mailto:")


def normalizeLink(url: str) -> str:
    """Normalize destination URLs in links

    ::

        [label]:   destination   'title'
                ^^^^^^^^^^^
    """
    parsed = mdurl.parse(url, slashes_denote_host=True)

    if parsed.hostname:
        # Encode hostnames in urls like:
        # `http://host/`, `https://host/`, `mailto:user@host`, `//host/`
        #
        # We don't encode unknown schemas, because it's likely that we encode
        # something we shouldn't (e.g. `skype:name` treated as `skype:host`)
        #
        if not parsed.protocol or parsed.protocol in RECODE_HOSTNAME_FOR:
            try:
                parsed = parsed._replace(hostname=_punycode.to_ascii(parsed.hostname))
            except Exception:
                pass

    return mdurl.encode(mdurl.format(parsed))


def normalizeLinkText(url: str) -> str:
    """Normalize autolink content

    ::

        <destination>
         ~~~~~~~~~~~
    """
    parsed = mdurl.parse(url, slashes_denote_host=True)

    if parsed.hostname:
        # Encode hostnames in urls like:
        # `http://host/`, `https://host/`, `mailto:user@host`, `//host/`
        #
        # We don't encode unknown schemas, because it's likely that we encode
        # something we shouldn't (e.g. `skype:name` treated as `skype:host`)
        #
        if not parsed.protocol or parsed.protocol in RECODE_HOSTNAME_FOR:
            try:
                parsed = parsed._replace(hostname=_punycode.to_unicode(parsed.hostname))
            except Exception:
                pass

    # add '%' to exclude list because of https://github.com/markdown-it/markdown-it/issues/720
    return mdurl.decode(mdurl.format(parsed), mdurl.DECODE_DEFAULT_CHARS + "%")


BAD_PROTO_RE = re.compile(r"^(vbscript|javascript|file|data):")
GOOD_DATA_RE = re.compile(r"^data:image\/(gif|png|jpeg|webp);")


def validateLink(url: str, validator: Callable | None = None) -> bool:
    """Validate URL link is allowed in output.

    This validator can prohibit more than really needed to prevent XSS.
    It's a tradeoff to keep code simple and to be secure by default.

    Note: url should be normalized at this point, and existing entities decoded.
    """
    if validator is not None:
        return validator(url)
    url = url.strip().lower()
    return bool(GOOD_DATA_RE.search(url)) if BAD_PROTO_RE.search(url) else True

Anon7 - 2022
AnonSec Team