Domain text.leco.mp
United States
Hetzner Online GmbH
  • Open service 2a01:4ff:1f2:58a2::1:443 · text.leco.mp

    2026-01-24 22:29

    HTTP/1.1 200 OK
    Access-Control-Allow-Headers: *
    Access-Control-Allow-Origin: *
    Alt-Svc: h3=":443"; ma=2592000
    Cache-Control: no-store, no-cache, must-revalidate
    Cached: true
    Content-Type: text/html; charset=UTF-8
    Date: Sat, 24 Jan 2026 22:29:51 GMT
    Edge: usw-web-lorxu
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Omg: lol
    Permission-Policy: interest-cohort=(),browsing-topics=()
    Pragma: no-cache
    Set-Cookie: PHPSESSID=c2dc68bc8f45c17250e7c04d545618c9; path=/
    Set-Cookie: __Secure-neatnik=dCngD1NNJNqpLnNU02SCA4FlGYJYOUygrKkIlW70DyHfEh745IM0wsA%3D; expires=Sun, 24 Jan 2027 22:29:51 GMT; Max-Age=31536000; path=/; secure; HttpOnly; SameSite=Lax; Secure
    Strict-Transport-Security: max-age=31536000
    Via: 1.1 Caddy
    X-Content-Type-Options: nosniff
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: text.leco.mp
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <title>text.leco.mp</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <meta property="og:type" content="website">
    <meta property="og:title" content="text.leco.mp">
    <meta property="og:url" content="https://text.leco.mp">
    <meta property="og:description" content="coop’s pastes on text.leco.mp">
    <meta property="og:image" content="https://cdn.cache.lol/img/paste.lol_social_card_2022-07-01.png">
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:site" content="@omgdotlol">
    <meta name="twitter:creator" content="@omgdotlol">
    <meta name="twitter:title" content="text.leco.mp">
    <meta name="twitter:description" content="coop’s pastes on text.leco.mp">
    <meta name="twitter:image" content="https://cdn.cache.lol/img/paste.lol_social_card_2022-07-01.png">
    <meta name="theme-color" content="#343a40">
    <link rel="stylesheet" href="https://cdn.cache.lol/css/style.css?v=20220701">
    <style>
    body {
    	font-family: 'MD IO 0.4', monospace;
    }
    
    .hidden {
    	display: none;
    }
    
    #share:hover {
    	cursor: pointer;
    }
    
    @media (prefers-color-scheme: light) {
    	h1 {
    		color: var(--gray-8) !important;
    	}
    	h2 {
    		color: var(--gray-2) !important;
    	}
    	.logotype {
    		color: var(--gray-8) !important;
    	}
    	.footer {
    		color: var(--gray-7) !important;
    	}
    	:not(pre) > code[class*="language-"], pre[class*="language-"], .box {
    		background: var(--gray-8) !important;
    	}
    }
    
    .bin {
    	white-space: pre;
    	white-space: pre-wrap;
    	line-height: 140%;
    }
    
    h1 {
    	font-size: .9em;
    	font-family: 'MD IO 0.4', monospace;
    	font-weight: normal;
    	padding-top: 1.5em;
    	color: var(--gray-5);
    }
    
    h2 {
    	font-family: 'MD IO 0.4', monospace;
    	font-size: 120%;
    }
    
    h2 a {
    	text-decoration: none;
    }
    
    .logotype {
    	font-family: 'VC Honey Black Banner';
    	color: inherit;
    	font-size: 1.5em;
    	color: var(--gray-1);
    }
    
    .footer {
    	text-align: right;
    	font-size: 80%;
    	color: var(--gray-5);
    }
    
    .footer a {
    	text-decoration: none;
    	font-size: 100%;
    }
    
    .path {
    	padding-right: 1em;
    }
    
    .content pre code {
    	line-height: 160%;
    	padding: 0;
    }
    
    .content pre {
    	padding: 1.5em;
    }
    
    .content {
    	padding: 0;
    }
    
    .box {
    	background: #1F2122;
    }
    
    blockquote {
    	border-left: 1em solid #ccc;
    }
    
    </style>
    </head>
    <body>
    
    <main>
    
    <h1><span class="logotype"><a href="https://text.leco.mp">text.leco.mp</a></span> &#183; <span class="nowrap" style="display: inline-block; margin-top: 1em;">paste listing</span></h1>
    
    <div class="container rounded gray-9-bg gray-1-fg"><i class="fa-solid fa-wind"></i> No public pastes.</div>
    <p class="footer">a service of <span class="logotype pink-4-fg"><a href="https://home.omg.lol">omg<span class="pink-5-fg">.</span>lol</a></span> &#183; <a href="https://home.omg.lol/info/pastebin" style="text-decoration: underline;">info</a></p>
    
    </main>
    
    <script src="https://cdn.cache.lol/js/prism.js"></script>
    
    </html>
    
    
    <script src="https://cdn.cache.lol/js/clipboard.min.js"></script>
    <script>
    var clipboard = new ClipboardJS(".copy");
    clipboard.on("success", function(e) {
    	e.trigger.nextSibling.nextSibling.innerHTML = '<span class="green-9-fg">Copied!</span>';
    	e.clearSelection();
    });
    
    var sensitive_toggle = function() {
    	var target = this.previousElementSibling;
    	if(target.dataset.visibility == "hidden") {
    		target.innerHTML = target.dataset.sensitive;
    		target.dataset.visibility = "shown";
    		this.innerHTML = "<i class=\"fa-solid fa-fw fa-eye-slash\" style=\"font-size: 150%;\"></i>";
    	}
    	else {
    		var mask = "*".repeat(target.innerHTML.length);
    		target.innerHTML = mask;
    		target.dataset.visibility = "hidden";
    		this.innerHTML = "<i class=\"fa-solid fa-fw fa-eye\" style=\"font-size: 150%;\"></i>";
    	}
    };
    
    var elements = document.getElementsByClassName('sensitivty-toggle');
    
    Array.from(elements).forEach(function(element) {
    	var mask = "*".repeat(element.previousElementSibling.innerHTML.length);
    	element.previousElementSibling.innerHTML = mask;
    	element.addEventListener('click', sensitive_toggle);
    });
    
    </script>
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2a01:4ff:1f2:58a2::1:80 · text.leco.mp

    2026-01-24 22:29

    HTTP/1.1 302 Found
    Content-Type: text/html; charset=UTF-8
    Location: https://text.leco.mp
    Omg: lol
    Status: 302 Found
    Via: 0.0 Caddy
    Date: Sat, 24 Jan 2026 22:30:20 GMT
    Content-Length: 0
    Connection: close
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2a01:4ff:1f2:58a2::1:80 · text.leco.mp

    2026-01-10 21:10

    HTTP/1.1 302 Found
    Content-Type: text/html; charset=UTF-8
    Location: https://text.leco.mp
    Omg: lol
    Status: 302 Found
    Via: 0.0 Caddy
    Date: Sat, 10 Jan 2026 21:11:05 GMT
    Content-Length: 0
    Connection: close
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2a01:4ff:1f2:58a2::1:443 · text.leco.mp

    2026-01-10 21:10

    HTTP/1.1 200 OK
    Access-Control-Allow-Headers: *
    Access-Control-Allow-Origin: *
    Alt-Svc: h3=":443"; ma=2592000
    Cache-Control: no-store, no-cache, must-revalidate
    Cached: false
    Content-Type: text/html; charset=UTF-8
    Date: Sat, 10 Jan 2026 21:10:07 GMT
    Edge: usw-web-lorxu
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Omg: lol
    Permission-Policy: interest-cohort=(),browsing-topics=()
    Pragma: no-cache
    Set-Cookie: PHPSESSID=b28c55cd8aa5cf7433d76ab07237f008; path=/
    Set-Cookie: __Secure-neatnik=1hj%2Bl1CJp5sExI43OVrr9dJLexPMFrqoLIxx9noeGFTCAi4IgWiCovo%3D; expires=Sun, 10 Jan 2027 21:10:07 GMT; Max-Age=31536000; path=/; secure; HttpOnly; SameSite=Lax; Secure
    Strict-Transport-Security: max-age=31536000
    Via: 1.1 Caddy
    X-Content-Type-Options: nosniff
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: text.leco.mp
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <title>text.leco.mp</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <meta property="og:type" content="website">
    <meta property="og:title" content="text.leco.mp">
    <meta property="og:url" content="https://text.leco.mp">
    <meta property="og:description" content="coop’s pastes on text.leco.mp">
    <meta property="og:image" content="https://cdn.cache.lol/img/paste.lol_social_card_2022-07-01.png">
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:site" content="@omgdotlol">
    <meta name="twitter:creator" content="@omgdotlol">
    <meta name="twitter:title" content="text.leco.mp">
    <meta name="twitter:description" content="coop’s pastes on text.leco.mp">
    <meta name="twitter:image" content="https://cdn.cache.lol/img/paste.lol_social_card_2022-07-01.png">
    <meta name="theme-color" content="#343a40">
    <link rel="stylesheet" href="https://cdn.cache.lol/css/style.css?v=20220701">
    <style>
    body {
    	font-family: 'MD IO 0.4', monospace;
    }
    
    .hidden {
    	display: none;
    }
    
    #share:hover {
    	cursor: pointer;
    }
    
    @media (prefers-color-scheme: light) {
    	h1 {
    		color: var(--gray-8) !important;
    	}
    	h2 {
    		color: var(--gray-2) !important;
    	}
    	.logotype {
    		color: var(--gray-8) !important;
    	}
    	.footer {
    		color: var(--gray-7) !important;
    	}
    	:not(pre) > code[class*="language-"], pre[class*="language-"], .box {
    		background: var(--gray-8) !important;
    	}
    }
    
    .bin {
    	white-space: pre;
    	white-space: pre-wrap;
    	line-height: 140%;
    }
    
    h1 {
    	font-size: .9em;
    	font-family: 'MD IO 0.4', monospace;
    	font-weight: normal;
    	padding-top: 1.5em;
    	color: var(--gray-5);
    }
    
    h2 {
    	font-family: 'MD IO 0.4', monospace;
    	font-size: 120%;
    }
    
    h2 a {
    	text-decoration: none;
    }
    
    .logotype {
    	font-family: 'VC Honey Black Banner';
    	color: inherit;
    	font-size: 1.5em;
    	color: var(--gray-1);
    }
    
    .footer {
    	text-align: right;
    	font-size: 80%;
    	color: var(--gray-5);
    }
    
    .footer a {
    	text-decoration: none;
    	font-size: 100%;
    }
    
    .path {
    	padding-right: 1em;
    }
    
    .content pre code {
    	line-height: 160%;
    	padding: 0;
    }
    
    .content pre {
    	padding: 1.5em;
    }
    
    .content {
    	padding: 0;
    }
    
    .box {
    	background: #1F2122;
    }
    
    blockquote {
    	border-left: 1em solid #ccc;
    }
    
    </style>
    </head>
    <body>
    
    <main>
    
    <h1><span class="logotype"><a href="https://text.leco.mp">text.leco.mp</a></span> &#183; <span class="nowrap" style="display: inline-block; margin-top: 1em;">paste listing</span></h1>
    
    <div class="container rounded gray-9-bg gray-1-fg"><i class="fa-solid fa-wind"></i> No public pastes.</div>
    <p class="footer">a service of <span class="logotype pink-4-fg"><a href="https://home.omg.lol">omg<span class="pink-5-fg">.</span>lol</a></span> &#183; <a href="https://home.omg.lol/info/pastebin" style="text-decoration: underline;">info</a></p>
    
    </main>
    
    <script src="https://cdn.cache.lol/js/prism.js"></script>
    
    </html>
    
    
    <script src="https://cdn.cache.lol/js/clipboard.min.js"></script>
    <script>
    var clipboard = new ClipboardJS(".copy");
    clipboard.on("success", function(e) {
    	e.trigger.nextSibling.nextSibling.innerHTML = '<span class="green-9-fg">Copied!</span>';
    	e.clearSelection();
    });
    
    var sensitive_toggle = function() {
    	var target = this.previousElementSibling;
    	if(target.dataset.visibility == "hidden") {
    		target.innerHTML = target.dataset.sensitive;
    		target.dataset.visibility = "shown";
    		this.innerHTML = "<i class=\"fa-solid fa-fw fa-eye-slash\" style=\"font-size: 150%;\"></i>";
    	}
    	else {
    		var mask = "*".repeat(target.innerHTML.length);
    		target.innerHTML = mask;
    		target.dataset.visibility = "hidden";
    		this.innerHTML = "<i class=\"fa-solid fa-fw fa-eye\" style=\"font-size: 150%;\"></i>";
    	}
    };
    
    var elements = document.getElementsByClassName('sensitivty-toggle');
    
    Array.from(elements).forEach(function(element) {
    	var mask = "*".repeat(element.previousElementSibling.innerHTML.length);
    	element.previousElementSibling.innerHTML = mask;
    	element.addEventListener('click', sensitive_toggle);
    });
    
    </script>
    Found 2026-01-10 by HttpPlugin
    Create report
text.leco.mp
CN:
text.leco.mp
Not before:
2026-01-24 00:00
Not after:
2026-04-24 23:59
text.leco.mp
CN:
Key:
ECDSA-256
Issuer:
YE2
Not before:
2026-01-10 20:10
Not after:
2026-01-17 12:10
Domain summary
IP summary