Help
RSS
API
Feed
Maltego
Contact
Domain > itsapplejaxx.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-07-28
104.26.7.175
(
ClassC
)
2024-12-27
31.43.161.6
(
ClassC
)
Port 443
HTTP/1.1 401 UnauthorizedAlt-Svc: h3:443; ma2592000Content-Type: text/html; charsetutf-8Date: Fri, 27 Dec 2024 08:50:39 GMTServer: Framer/3281da1Strict-Transport-Security: max-age31536000X-Content-Type-Options: nosniffTransfer-Encoding: chunked !DOCTYPE html>html langen> meta charsetutf-8 /> meta nameviewport contentwidthdevice-width, initial-scale1.0, minimum-scale1.0, viewport-fitcover /> title>This site is password protected | Framer/title> link relpreconnect hrefhttps://fonts.googleapis.com /> link relpreconnect hrefhttps://fonts.gstatic.com crossorigin /> link hrefhttps://fonts.googleapis.com/css2?familyInter:wght@400;500&displayswap relstylesheet /> style> :root { --color-primary: #f9f9f9; --color-secondary: #333333; --color-tertiary: #777777; --color-error: #ff3366; --color-tint: #0099ff; --color-sheet: #ffffff; --color-border: #ffffff; --font-size-body: 14px; --font-size-title: 20px; --button-background-color: #f2f2f2; --button-background-hover-color: #ededed; --button-background-active-color: #e8e8e8; --button-title-color: #333333; --input-background: #f3f3f3; --input-color: #333; } @media (prefers-color-scheme: dark) { :root { --color-primary: #000000; --color-secondary: #ffffff; --color-tertiary: #cccccc; --color-sheet: #141414; --color-border: #222222; --button-background-color: #1f1f1f; --button-background-hover-color: #242424; --button-background-active-color: #292929; --button-title-color: #ffffff; --input-background: #111111; --input-color: #eee; } } html, body { margin: 0; width: 100%; min-height: 100vh; } html { box-sizing: border-box; font-feature-settings: liga, clig; font-variant-ligatures: common-ligatures; text-rendering: optimizeLegibility; } body { display: flex; justify-content: center; align-items: center; background-color: var(--color-primary); font-size: var(--font-size-body); } a { text-decoration: none; vertical-align: baseline; } svg { vertical-align: middle; } main { margin: 15px; box-sizing: border-box; font-family: Inter, sans-serif; max-width: 320px; width: 100%; display: flex; align-items: center; flex-direction: column; background: var(--color-sheet); padding: 30px; border-radius: 25px; box-shadow: rgba(0, 0, 0, 0.07) 0px 0.602187px 0.602187px -1.25px, rgba(0, 0, 0, 0.063) 0px 2.28853px 2.28853px -2.5px, rgba(0, 0, 0, 0.024) 0px 10px 10px -3.75px; border: 1px solid var(--color-border); } .logo { color: var(--color-secondary); } .logo { margin-bottom: 15px; } .description { color: var(--color-tertiary); margin-bottom: 30px; line-height: 1.4em; text-align: center; font-size: 14px; font-weight: 400; } #form { display: flex; flex-direction: column; align-items: center; width: 100%; } .formcontrol { display: flex; width: 100%; } #form.has-error .input { border-color: var(--color-error); } #form.has-error .active { display: block; } .formfield { display: flex; flex-direction: column; width: 100%; margin-bottom: 15px; } .error-message { margin-top: 8px; display: none; color: var(--color-error); line-height: 1.6; font-size: 12px; text-align: center; font-weight: 500; } .input { box-sizing: border-box; width: 100%; padding: 0 10px 1px; border-radius: 8px; height: 40px; background-color: var(--input-background); font-weight: 500; border: 1px solid transparent; color: var(--input-color); font-size: 16px; text-align: center; letter-spacing: 2px; } .input:-webkit-autofill, .input:-webkit-autofill:hover, .input:-webkit-autofill:focus, .input:-webkit-autofill:active { -webkit-animation: autofill 0s forwards; animation: autofill 0s forwards; /* For Chrome 83+ (font-size & font-family are still broken) */ box-shadow: 0 0 0 50px var(--input-background) inset; -webkit-text-fill-color: var(--input-color); } .input:focus { border-color: var(--color-tint); outline: none; } @keyframes autofill { 100% { background: transparent; color: inherit; font-size: inherit; font-weight: inherit; } } .btn--submit { font-family: Inter, sans-serif; position: relative; height: 40px; width: 100%; padding: 0 10px 1px; border: none; margin: 0; z-index: 0; overflow: hidden; box-sizing: border-box; background-color: var(--button-background-color); border-radius: 8px; color: var(--button-title-color); cursor: default; font-size: 14px; font-weight: 500; text-decoration: none; transition: none; } .btn--submit:disabled { opacity: 0.5; } .btn--submit:not(:disabled) { cursor: pointer; } .btn--submit::before { position: absolute; z-index: -100; top: 0; left: 0; display: block; width: 100%; height: 100%; border-radius: inherit; /* keep the border when hovering */ content: ; opacity: 0; transition: opacity 0.2s; } .btn--submit:not(:disabled):hover::before { opacity: 1; background-color: var(--button-background-hover-color); } .btn--submit:not(:disabled):active::before { opacity: 1; background-color: var(--button-background-active-color); } /style> script> let $form, $submit, $input, $tooManyRequests, $invalidPassword; const handleSubmit (event) > { event.preventDefault(); const password $input.value; if (!password) return; const redirect window.location.pathname; const query window.location.search.substr(1); fetch( `/_framer/login/?continue${redirect}&query${encodeURIComponent( query )}`, { method: POST, redirect: manual, headers: { Authorization: `Bearer ${btoa(password)}` }, } ).then((response) > { // This means a redirect occurred. if (response.status 0) { document.body.style.opacity 0; window.location.reload(); return; } if (response.status 429) { $invalidPassword.classList.remove(active); $tooManyRequests.classList.add(active); } else { $tooManyRequests.classList.remove(active); $invalidPassword.classList.add(active); } $form.classList.add(has-error); }); }; const handleChange (event) > { const value event.target.value; $submit.toggleAttribute(disabled, !value); $form.classList.remove(has-error); $invalidPassword.classList.remove(active); $tooManyRequests.classList.remove(active); }; document.addEventListener(DOMContentLoaded, () > { $form document.getElementById(form); $input document.getElementById(password); $tooManyRequests document.getElementById(too-many-requests); $invalidPassword document.getElementById(invalid-password); $submit document.querySelector(.btn--submit); $form.addEventListener(submit, handleSubmit); $input.addEventListener(input, handleChange); }); /script> main> div classlogo> svg xmlnshttp://www.w3.org/2000/svg width16 height16> path dM 2 7.5 L 14 7.5 L 14 12.5 C 14 14.157 12.657 15.5 11 15.5 L 5 15.5 C 3.343 15.5 2 14.157 2 12.5 Z fillcurrentColor >/path> path dM 3 6.5 C 3 3.739 5.239 1.5 8 1.5 L 8 1.5 C 10.761 1.5 13 3.739 13 6.5 L 13 9.5 C 13 12.261 10.761 14.5 8 14.5 L 8 14.5 C 5.239 14.5 3 12.261 3 9.5 Z filltransparent stroke-width2 strokecurrentColor >/path> /svg> /div> form idform> label forpassword classdescription> Enter passwordbr /> to access the site. /label> div classformcontrol> div classformfield> input classinput idpassword typepassword autofocusautofocus /> span classerror-message idinvalid-password >Invalid password/span > span classerror-message idtoo-many-requests >Too many requests/span > /div> /div> button typesubmit classbtn--submit disableddisabled> Submit /button> /form> /main>/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
]