Help
RSS
API
Feed
Maltego
Contact
Domain > app.fluxopay.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2021-08-01
13.32.232.45
(
ClassC
)
2026-02-26
172.67.150.248
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Thu, 26 Feb 2026 12:24:06 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareExpires: Thu, 19 Nov 1981 08:52:00 GMTCache-Control: no-store, no-cache, must-revalidatePragma: no-cacheSet-Cookie: PHPSESSID35bb63895b5f91b8f5ae75336e6e3891; path/X-Frame-Options: SAMEORIGINX-Content-Type-Options: nosniffReferrer-Policy: no-referrer-when-downgradePermissions-Policy: geolocation(), microphone(), camera()X-XSS-Protection: 1; modeblockReport-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?sKjvAlVR2e%2B8mA478ik4mttb5N%2BRYORx0XPakY5PqR2jdLjs6OKP9mxIJsh4PJyQopIfpQ3jEnjGOzNNMoaY7Cn2iPImx3HWuWI4c2E%2FnoGA%3D}}Nel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}cf-cache-status: DYNAMICCF-RAY: 9d3f6adcafb828b9-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langpt-BR>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> link relicon typeimage/png hrefassets/icone.png> title>FluxoPay - Login/title> link relstylesheet hrefcss/login.css> link hrefhttps://fonts.googleapis.com/css2?familyInter:wght@300;400;500;600;700&displayswap relstylesheet> style> /* Fallback logo styles for server compatibility */ .logo-image { max-width: 200px !important; max-height: 80px !important; width: auto !important; height: auto !important; object-fit: contain !important; } /style>/head>body> div classlogin-container> div classlogin-content> !-- Logo --> div classleft-side> !-- div classlogo-text>Nitro/div> --> div classlogo-container> div classlogo-main> !-- img src/assets/wbiotld9mfqgsju0kiohpzghw.png altNitro classlogo-icon> --> /div> /div> /div> !-- Login Form --> div classright-side> div classlogin-form-container> !-- Top Icons --> !-- div classtop-icons> div classicon-item> div classicon-circle>FP/div> /div> div classicon-item> div classicon-circle>FP/div> span classicon-label>fluxopay/span> /div> /div> --> !-- Welcome Text --> div classwelcome-section> div classwelcome-logo> img src/assets/icone.png altNitro Logo classwelcome-logo-img> /div> h1>Seja bem vindo(a) à Nitro!/h1> p>Por favor, faça login na sua conta e comece a aventura/p> /div> !-- Alert Messages --> div idalert-container>/div> !-- Login Form --> form classlogin-form idlogin-form> div classform-group> label foremail>Email/label> div classinput-wrapper> svg xmlnshttp://www.w3.org/2000/svg width18 height18 viewBox0 0 24 24 fillnone strokecurrentColor stroke-width2 stroke-linecapround stroke-linejoinround classinput-icon lucide-mail> path dm22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7>/path> rect x2 y4 width20 height16 rx2>/rect> /svg> input typeemail idemail nameemail placeholderDigite seu email required> /div> /div> div classform-group> label forpassword>Senha/label> div classinput-wrapper> svg xmlnshttp://www.w3.org/2000/svg width18 height18 viewBox0 0 24 24 fillnone strokecurrentColor stroke-width2 stroke-linecapround stroke-linejoinround classinput-icon lucide-lock> rect width18 height11 x3 y11 rx2 ry2>/rect> path dM7 11V7a5 5 0 0 1 10 0v4>/path> /svg> input typepassword idpassword namepassword placeholderDigite sua senha required> /div> /div> div classform-options> label classremember-me> input typecheckbox idremember> span classcheckmark>/span> Lembrar de mim /label> a hrefrecover classforgot-password idbtnForgotPassword>Esqueceu sua senha?/a> /div> button typesubmit classlogin-btn idlogin-btn> span classbtn-text>Login/span> div classbtn-loading styledisplay: none;> div classspinner>/div> /div> /button> /form> !-- Footer --> div classlogin-footer> p>Novo na plataforma? a hrefregister classcreate-account-link>Crie sua conta/a>/p> /div> /div> /div> /div> script> document.getElementById(login-form).addEventListener(submit, async function(e) { e.preventDefault(); const btn document.getElementById(login-btn); const btnText btn.querySelector(.btn-text); const btnLoading btn.querySelector(.btn-loading); // Mostrar loading btn.disabled true; btnText.style.display none; btnLoading.style.display block; const formData { email: document.getElementById(email).value, senha: document.getElementById(password).value }; try { const response await fetch(backend/api/login.php, { method: POST, headers: { Content-Type: application/json, }, body: JSON.stringify(formData) }); const data await response.json(); if (data.success) { showAlert(success, data.message); setTimeout(() > { window.location.href data.redirect; }, 1000); } else { showAlert(error, data.message); } } catch (error) { showAlert(error, Erro ao conectar com o servidor); } finally { // Esconder loading btn.disabled false; btnText.style.display block; btnLoading.style.display none; } }); function showAlert(type, message) { const container document.getElementById(alert-container); const alert document.createElement(div); alert.className `alert alert-${type}`; alert.innerHTML ` div classalert-content> span>${message}/span> button onclickthis.parentElement.parentElement.remove() classalert-close>×/button> /div> `; container.innerHTML ; container.appendChild(alert); // Auto remove after 5 seconds setTimeout(() > { if (alert.parentElement) { alert.remove(); } }, 5000); } /script> style> /* Estilos para alerts */ .alert { margin: 15px 0; padding: 12px 15px; border-radius: 8px; font-size: 14px; animation: slideIn 0.3s ease-out; } .alert-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .alert-error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } .alert-content { display: flex; justify-content: space-between; align-items: center; } .alert-close { background: none; border: none; font-size: 18px; cursor: pointer; color: inherit; opacity: 0.7; } .alert-close:hover { opacity: 1; } /* Loading spinner */ .spinner { width: 18px; height: 18px; border: 2px solid #ffffff; border-top: 2px solid transparent; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } /* Modal Styles */ .modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); z-index: 9999; align-items: center; justify-content: center; } .modal-overlay.active { display: flex; } .modal-container { background: white; border-radius: 12px; max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); animation: modalSlideIn 0.3s ease-out; } @keyframes modalSlideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } .modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid #e5e7eb; } .modal-title { font-size: 20px; font-weight: 600; color: #1f2937; margin: 0; } .modal-close { background: none; border: none; cursor: pointer; padding: 4px; color: #6b7280; transition: color 0.2s; } .modal-close:hover { color: #1f2937; } .modal-close svg { width: 20px; height: 20px; } .modal-body { padding: 24px; } .modal-description { color: #6b7280; font-size: 14px; margin-bottom: 20px; } .modal-actions { display: flex; gap: 12px; margin-top: 24px; } .btn-secondary { flex: 1; padding: 12px 20px; background: #f3f4f6; color: #374151; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.2s; } .btn-secondary:hover { background: #e5e7eb; } .btn-primary { flex: 1; padding: 12px 20px; background: #7c3aed; color: white; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; } .btn-primary:hover { background: #6d28d9; } .btn-primary:disabled { opacity: 0.6; cursor: not-allowed; } #recuperarAlert { margin-top: 15px; } /style>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Thu, 26 Feb 2026 12:24:06 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareExpires: Thu, 19 Nov 1981 08:52:00 GMTCache-Control: no-store, no-cache, must-revalidatePragma: no-cacheSet-Cookie: PHPSESSIDe1031e3a158502323b2ecbc8f0145bd8; path/X-Frame-Options: SAMEORIGINX-Content-Type-Options: nosniffReferrer-Policy: no-referrer-when-downgradePermissions-Policy: geolocation(), microphone(), camera()X-XSS-Protection: 1; modeblockReport-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?sAE5q3r%2BI9mWsQxgVg%2BxOyVa5NcXzYgYnQAiC5hYhWknW329gQAvvOxnIrw3Y%2F90HTY5yIqYw7mLp78wtdLHn9o%2Bukj2z0%2BIBU8PRGJVY4TU%3D}}Nel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}cf-cache-status: DYNAMICCF-RAY: 9d3f6adfa98a817f-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langpt-BR>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> link relicon typeimage/png hrefassets/icone.png> title>FluxoPay - Login/title> link relstylesheet hrefcss/login.css> link hrefhttps://fonts.googleapis.com/css2?familyInter:wght@300;400;500;600;700&displayswap relstylesheet> style> /* Fallback logo styles for server compatibility */ .logo-image { max-width: 200px !important; max-height: 80px !important; width: auto !important; height: auto !important; object-fit: contain !important; } /style>/head>body> div classlogin-container> div classlogin-content> !-- Logo --> div classleft-side> !-- div classlogo-text>Nitro/div> --> div classlogo-container> div classlogo-main> !-- img src/assets/wbiotld9mfqgsju0kiohpzghw.png altNitro classlogo-icon> --> /div> /div> /div> !-- Login Form --> div classright-side> div classlogin-form-container> !-- Top Icons --> !-- div classtop-icons> div classicon-item> div classicon-circle>FP/div> /div> div classicon-item> div classicon-circle>FP/div> span classicon-label>fluxopay/span> /div> /div> --> !-- Welcome Text --> div classwelcome-section> div classwelcome-logo> img src/assets/icone.png altNitro Logo classwelcome-logo-img> /div> h1>Seja bem vindo(a) à Nitro!/h1> p>Por favor, faça login na sua conta e comece a aventura/p> /div> !-- Alert Messages --> div idalert-container>/div> !-- Login Form --> form classlogin-form idlogin-form> div classform-group> label foremail>Email/label> div classinput-wrapper> svg xmlnshttp://www.w3.org/2000/svg width18 height18 viewBox0 0 24 24 fillnone strokecurrentColor stroke-width2 stroke-linecapround stroke-linejoinround classinput-icon lucide-mail> path dm22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7>/path> rect x2 y4 width20 height16 rx2>/rect> /svg> input typeemail idemail nameemail placeholderDigite seu email required> /div> /div> div classform-group> label forpassword>Senha/label> div classinput-wrapper> svg xmlnshttp://www.w3.org/2000/svg width18 height18 viewBox0 0 24 24 fillnone strokecurrentColor stroke-width2 stroke-linecapround stroke-linejoinround classinput-icon lucide-lock> rect width18 height11 x3 y11 rx2 ry2>/rect> path dM7 11V7a5 5 0 0 1 10 0v4>/path> /svg> input typepassword idpassword namepassword placeholderDigite sua senha required> /div> /div> div classform-options> label classremember-me> input typecheckbox idremember> span classcheckmark>/span> Lembrar de mim /label> a hrefrecover classforgot-password idbtnForgotPassword>Esqueceu sua senha?/a> /div> button typesubmit classlogin-btn idlogin-btn> span classbtn-text>Login/span> div classbtn-loading styledisplay: none;> div classspinner>/div> /div> /button> /form> !-- Footer --> div classlogin-footer> p>Novo na plataforma? a hrefregister classcreate-account-link>Crie sua conta/a>/p> /div> /div> /div> /div> script> document.getElementById(login-form).addEventListener(submit, async function(e) { e.preventDefault(); const btn document.getElementById(login-btn); const btnText btn.querySelector(.btn-text); const btnLoading btn.querySelector(.btn-loading); // Mostrar loading btn.disabled true; btnText.style.display none; btnLoading.style.display block; const formData { email: document.getElementById(email).value, senha: document.getElementById(password).value }; try { const response await fetch(backend/api/login.php, { method: POST, headers: { Content-Type: application/json, }, body: JSON.stringify(formData) }); const data await response.json(); if (data.success) { showAlert(success, data.message); setTimeout(() > { window.location.href data.redirect; }, 1000); } else { showAlert(error, data.message); } } catch (error) { showAlert(error, Erro ao conectar com o servidor); } finally { // Esconder loading btn.disabled false; btnText.style.display block; btnLoading.style.display none; } }); function showAlert(type, message) { const container document.getElementById(alert-container); const alert document.createElement(div); alert.className `alert alert-${type}`; alert.innerHTML ` div classalert-content> span>${message}/span> button onclickthis.parentElement.parentElement.remove() classalert-close>×/button> /div> `; container.innerHTML ; container.appendChild(alert); // Auto remove after 5 seconds setTimeout(() > { if (alert.parentElement) { alert.remove(); } }, 5000); } /script> style> /* Estilos para alerts */ .alert { margin: 15px 0; padding: 12px 15px; border-radius: 8px; font-size: 14px; animation: slideIn 0.3s ease-out; } .alert-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .alert-error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } .alert-content { display: flex; justify-content: space-between; align-items: center; } .alert-close { background: none; border: none; font-size: 18px; cursor: pointer; color: inherit; opacity: 0.7; } .alert-close:hover { opacity: 1; } /* Loading spinner */ .spinner { width: 18px; height: 18px; border: 2px solid #ffffff; border-top: 2px solid transparent; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } /* Modal Styles */ .modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); z-index: 9999; align-items: center; justify-content: center; } .modal-overlay.active { display: flex; } .modal-container { background: white; border-radius: 12px; max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); animation: modalSlideIn 0.3s ease-out; } @keyframes modalSlideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } .modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid #e5e7eb; } .modal-title { font-size: 20px; font-weight: 600; color: #1f2937; margin: 0; } .modal-close { background: none; border: none; cursor: pointer; padding: 4px; color: #6b7280; transition: color 0.2s; } .modal-close:hover { color: #1f2937; } .modal-close svg { width: 20px; height: 20px; } .modal-body { padding: 24px; } .modal-description { color: #6b7280; font-size: 14px; margin-bottom: 20px; } .modal-actions { display: flex; gap: 12px; margin-top: 24px; } .btn-secondary { flex: 1; padding: 12px 20px; background: #f3f4f6; color: #374151; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.2s; } .btn-secondary:hover { background: #e5e7eb; } .btn-primary { flex: 1; padding: 12px 20px; background: #7c3aed; color: white; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; } .btn-primary:hover { background: #6d28d9; } .btn-primary:disabled { opacity: 0.6; cursor: not-allowed; } #recuperarAlert { margin-top: 15px; } /style>/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
]