Help
RSS
API
Feed
Maltego
Contact
Domain > www.asp.ad.jp
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2026-03-01
133.167.212.27
(
ClassC
)
Port 80
HTTP/1.1 200 OKServer: nginxDate: Sun, 01 Mar 2026 18:21:31 GMTContent-Type: text/htmlContent-Length: 11544Connection: keep-aliveLast-Modified: Mon, 16 Feb 2026 23:12:37 GMTETag: 2d18-64af9173701bdAccept-Ranges: bytes !DOCTYPE html>html langja>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>GO-Global.jp/title> link relpreconnect hrefhttps://fonts.googleapis.com> link relpreconnect hrefhttps://fonts.gstatic.com crossorigin> link hrefhttps://fonts.googleapis.com/css2?familyOutfit:wght@300;500;700&familyNoto+Sans+JP:wght@300;500;700&displayswap relstylesheet> style> *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-dark: #0a0e17; --card-bg: rgba(255, 255, 255, 0.04); --card-border: rgba(255, 255, 255, 0.08); --accent-blue: #3b82f6; --accent-cyan: #06b6d4; --accent-green: #10b981; --text-primary: #e8edf5; --text-secondary: #8892a4; } html, body { height: 100%; } body { font-family: Outfit, Noto Sans JP, sans-serif; background: var(--bg-dark); color: var(--text-primary); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; overflow: hidden; position: relative; } /* Ambient background */ body::before { content: ; position: fixed; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse 600px 400px at 30% 20%, rgba(59, 130, 246, 0.07) 0%, transparent 70%), radial-gradient(ellipse 500px 500px at 70% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 70%), radial-gradient(ellipse 400px 300px at 80% 30%, rgba(16, 185, 129, 0.04) 0%, transparent 70%); animation: ambientDrift 20s ease-in-out infinite alternate; z-index: 0; } @keyframes ambientDrift { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(-30px, 20px) rotate(2deg); } } /* Grid pattern overlay */ body::after { content: ; position: fixed; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px); background-size: 60px 60px; z-index: 0; } .container { position: relative; z-index: 1; text-align: center; padding: 2rem; } .logo-area { margin-bottom: 3.5rem; animation: fadeInDown 0.8s ease-out; } .logo-text { font-size: 2.8rem; font-weight: 700; letter-spacing: -0.02em; background: linear-gradient(135deg, #e8edf5 0%, #94a3b8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .logo-text span { background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%); -webkit-background-clip: text; background-clip: text; } .subtitle { font-size: 0.95rem; color: var(--text-secondary); font-weight: 300; margin-top: 0.6rem; letter-spacing: 0.08em; } .cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.2s both; } .card { position: relative; width: 320px; padding: 2.5rem 2rem 2rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; backdrop-filter: blur(12px); overflow: hidden; } .card::before { content: ; position: absolute; inset: 0; border-radius: 20px; opacity: 0; transition: opacity 0.4s ease; } .card--go::before { background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 70%); } .card--dental::before { background: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.12) 0%, transparent 70%); } .card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); } .card:hover::before { opacity: 1; } .card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; } .card--go .card-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15)); border: 1px solid rgba(59, 130, 246, 0.2); } .card--dental .card-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15)); border: 1px solid rgba(16, 185, 129, 0.2); } .card-icon svg { width: 26px; height: 26px; } .card--go .card-icon svg { color: var(--accent-blue); } .card--dental .card-icon svg { color: var(--accent-green); } .card-content { position: relative; z-index: 1; } .card-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; } .card-domain { font-size: 0.82rem; color: var(--text-secondary); font-weight: 300; letter-spacing: 0.04em; } .card-desc { font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; position: relative; z-index: 1; } .card-arrow { margin-top: 0.4rem; opacity: 0; transform: translateX(-8px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; z-index: 1; } .card:hover .card-arrow { opacity: 1; transform: translateX(0); } .card-arrow svg { width: 20px; height: 20px; color: var(--text-secondary); } .card--go:hover .card-arrow svg { color: var(--accent-blue); } .card--dental:hover .card-arrow svg { color: var(--accent-green); } .footer { position: relative; z-index: 1; margin-top: 3.5rem; color: var(--text-secondary); font-size: 0.78rem; font-weight: 300; letter-spacing: 0.04em; animation: fadeInUp 0.8s ease-out 0.4s both; } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 720px) { .cards { flex-direction: column; align-items: center; } .card { width: 100%; max-width: 340px; } .logo-text { font-size: 2.2rem; } } /style>/head>body> div classcontainer> div classlogo-area> div classlogo-text>span>GO-Global/span>.jp/div> div classsubtitle>サービスをお選びください/div> /div> div classcards> a hrefhttps://kitasp.com classcard card--go> div classcard-icon> svg xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 stroke-width1.5 strokecurrentColor> path stroke-linecapround stroke-linejoinround dM12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5a17.92 17.92 0 0 1-8.716-2.247m0 0A8.966 8.966 0 0 1 3 12c0-1.264.26-2.466.733-3.559 /> /svg> /div> div classcard-content> div classcard-title>GO-Global/div> div classcard-domain>kitasp.com/div> /div> div classcard-desc>GO-Globalに関する情報・br>サポートはこちら/div> div classcard-arrow> svg xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 stroke-width1.5 strokecurrentColor> path stroke-linecapround stroke-linejoinround dM13.5 4.5 21 12m0 0-7.5 7.5M21 12H3 /> /svg> /div> /a> a hrefhttps://dentalsystems.jp classcard card--dental> div classcard-icon> svg xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 stroke-width1.5 strokecurrentColor> path stroke-linecapround stroke-linejoinround dM2.25 21h19.5m-18-18v18m10.5-18v18m6-13.5V21M6.75 6.75h.75m-.75 3h.75m-.75 3h.75m3-6h.75m-.75 3h.75m-.75 3h.75M6.75 21v-3.375c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21M3 3h12m-.75 4.5H21m-3.75 3H21m-3.75 3H21 /> /svg> /div> div classcard-content> div classcard-title>デンタルシステムズ/div> div classcard-domain>dentalsystems.jp/div> /div> div classcard-desc>デンタルシステムズのbr>サービス情報はこちら/div> div classcard-arrow> svg xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 stroke-width1.5 strokecurrentColor> path stroke-linecapround stroke-linejoinround dM13.5 4.5 21 12m0 0-7.5 7.5M21 12H3 /> /svg> /div> /a> /div> div classfooter>© 2026 GO-Global.jp/div> /div>/body>/html>
Port 443
HTTP/1.1 200 OKServer: nginxDate: Sun, 01 Mar 2026 18:21:31 GMTContent-Type: text/htmlContent-Length: 11544Connection: keep-aliveLast-Modified: Mon, 16 Feb 2026 23:12:37 GMTETag: 2d18-64af9173701bdAccept-Ranges: bytes !DOCTYPE html>html langja>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>GO-Global.jp/title> link relpreconnect hrefhttps://fonts.googleapis.com> link relpreconnect hrefhttps://fonts.gstatic.com crossorigin> link hrefhttps://fonts.googleapis.com/css2?familyOutfit:wght@300;500;700&familyNoto+Sans+JP:wght@300;500;700&displayswap relstylesheet> style> *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-dark: #0a0e17; --card-bg: rgba(255, 255, 255, 0.04); --card-border: rgba(255, 255, 255, 0.08); --accent-blue: #3b82f6; --accent-cyan: #06b6d4; --accent-green: #10b981; --text-primary: #e8edf5; --text-secondary: #8892a4; } html, body { height: 100%; } body { font-family: Outfit, Noto Sans JP, sans-serif; background: var(--bg-dark); color: var(--text-primary); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; overflow: hidden; position: relative; } /* Ambient background */ body::before { content: ; position: fixed; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse 600px 400px at 30% 20%, rgba(59, 130, 246, 0.07) 0%, transparent 70%), radial-gradient(ellipse 500px 500px at 70% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 70%), radial-gradient(ellipse 400px 300px at 80% 30%, rgba(16, 185, 129, 0.04) 0%, transparent 70%); animation: ambientDrift 20s ease-in-out infinite alternate; z-index: 0; } @keyframes ambientDrift { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(-30px, 20px) rotate(2deg); } } /* Grid pattern overlay */ body::after { content: ; position: fixed; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px); background-size: 60px 60px; z-index: 0; } .container { position: relative; z-index: 1; text-align: center; padding: 2rem; } .logo-area { margin-bottom: 3.5rem; animation: fadeInDown 0.8s ease-out; } .logo-text { font-size: 2.8rem; font-weight: 700; letter-spacing: -0.02em; background: linear-gradient(135deg, #e8edf5 0%, #94a3b8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .logo-text span { background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%); -webkit-background-clip: text; background-clip: text; } .subtitle { font-size: 0.95rem; color: var(--text-secondary); font-weight: 300; margin-top: 0.6rem; letter-spacing: 0.08em; } .cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.2s both; } .card { position: relative; width: 320px; padding: 2.5rem 2rem 2rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; backdrop-filter: blur(12px); overflow: hidden; } .card::before { content: ; position: absolute; inset: 0; border-radius: 20px; opacity: 0; transition: opacity 0.4s ease; } .card--go::before { background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 70%); } .card--dental::before { background: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.12) 0%, transparent 70%); } .card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); } .card:hover::before { opacity: 1; } .card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; } .card--go .card-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15)); border: 1px solid rgba(59, 130, 246, 0.2); } .card--dental .card-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15)); border: 1px solid rgba(16, 185, 129, 0.2); } .card-icon svg { width: 26px; height: 26px; } .card--go .card-icon svg { color: var(--accent-blue); } .card--dental .card-icon svg { color: var(--accent-green); } .card-content { position: relative; z-index: 1; } .card-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; } .card-domain { font-size: 0.82rem; color: var(--text-secondary); font-weight: 300; letter-spacing: 0.04em; } .card-desc { font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; position: relative; z-index: 1; } .card-arrow { margin-top: 0.4rem; opacity: 0; transform: translateX(-8px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; z-index: 1; } .card:hover .card-arrow { opacity: 1; transform: translateX(0); } .card-arrow svg { width: 20px; height: 20px; color: var(--text-secondary); } .card--go:hover .card-arrow svg { color: var(--accent-blue); } .card--dental:hover .card-arrow svg { color: var(--accent-green); } .footer { position: relative; z-index: 1; margin-top: 3.5rem; color: var(--text-secondary); font-size: 0.78rem; font-weight: 300; letter-spacing: 0.04em; animation: fadeInUp 0.8s ease-out 0.4s both; } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 720px) { .cards { flex-direction: column; align-items: center; } .card { width: 100%; max-width: 340px; } .logo-text { font-size: 2.2rem; } } /style>/head>body> div classcontainer> div classlogo-area> div classlogo-text>span>GO-Global/span>.jp/div> div classsubtitle>サービスをお選びください/div> /div> div classcards> a hrefhttps://kitasp.com classcard card--go> div classcard-icon> svg xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 stroke-width1.5 strokecurrentColor> path stroke-linecapround stroke-linejoinround dM12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5a17.92 17.92 0 0 1-8.716-2.247m0 0A8.966 8.966 0 0 1 3 12c0-1.264.26-2.466.733-3.559 /> /svg> /div> div classcard-content> div classcard-title>GO-Global/div> div classcard-domain>kitasp.com/div> /div> div classcard-desc>GO-Globalに関する情報・br>サポートはこちら/div> div classcard-arrow> svg xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 stroke-width1.5 strokecurrentColor> path stroke-linecapround stroke-linejoinround dM13.5 4.5 21 12m0 0-7.5 7.5M21 12H3 /> /svg> /div> /a> a hrefhttps://dentalsystems.jp classcard card--dental> div classcard-icon> svg xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 stroke-width1.5 strokecurrentColor> path stroke-linecapround stroke-linejoinround dM2.25 21h19.5m-18-18v18m10.5-18v18m6-13.5V21M6.75 6.75h.75m-.75 3h.75m-.75 3h.75m3-6h.75m-.75 3h.75m-.75 3h.75M6.75 21v-3.375c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21M3 3h12m-.75 4.5H21m-3.75 3H21m-3.75 3H21 /> /svg> /div> div classcard-content> div classcard-title>デンタルシステムズ/div> div classcard-domain>dentalsystems.jp/div> /div> div classcard-desc>デンタルシステムズのbr>サービス情報はこちら/div> div classcard-arrow> svg xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 stroke-width1.5 strokecurrentColor> path stroke-linecapround stroke-linejoinround dM13.5 4.5 21 12m0 0-7.5 7.5M21 12H3 /> /svg> /div> /a> /div> div classfooter>© 2026 GO-Global.jp/div> /div>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]