Help
RSS
API
Feed
Maltego
Contact
Domain > compartilha.link
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2019-08-28
13.56.50.119
(
ClassC
)
2019-08-28
52.52.155.86
(
ClassC
)
2025-10-17
69.197.184.226
(
ClassC
)
Port 80
HTTP/1.1 200 OKServer: nginxDate: Fri, 17 Oct 2025 04:13:32 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveVary: Accept-EncodingSet-Cookie: PHPSESSID19j05icd77dgqrgom2ditmnuij; path/Expires: Thu, 19 Nov 1981 08:52:00 GMTCache-Control: no-store, no-cache, must-revalidatePragma: no-cacheStrict-Transport-Security: max-age31536000 !DOCTYPE html>html langpt-BR>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>Quiz de Tabuada/title> style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; flex-direction: column; padding: 20px; color: #333; } .container { max-width: 480px; margin: 0 auto; width: 100%; } .header { text-align: center; color: white; margin-bottom: 30px; animation: fadeIn 0.5s ease; } .header h1 { font-size: 2.5em; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); } .header p { font-size: 1.1em; opacity: 0.95; } .card { background: white; border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); margin-bottom: 20px; animation: slideUp 0.5s ease; } .config-section { margin-bottom: 25px; } .config-section h3 { color: #667eea; margin-bottom: 15px; font-size: 1.2em; } .tabuadas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 20px; } .tabuada-checkbox { display: none; } .tabuada-label { display: flex; align-items: center; justify-content: center; padding: 12px; background: #f0f0f0; border-radius: 10px; cursor: pointer; transition: all 0.3s ease; font-weight: 600; color: #666; } .tabuada-checkbox:checked + .tabuada-label { background: linear-gradient(135deg, #667eea, #764ba2); color: white; transform: scale(1.05); } .tabuada-label:hover { transform: scale(1.1); } .btn-group { display: flex; gap: 10px; margin-bottom: 20px; } .btn { flex: 1; padding: 12px 20px; border: none; border-radius: 10px; font-size: 1em; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; text-align: center; display: inline-block; } .btn-primary { background: linear-gradient(135deg, #667eea, #764ba2); color: white; } .btn-secondary { background: #f0f0f0; color: #666; } .btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .quiz-section { text-align: center; } .pergunta { font-size: 3em; font-weight: bold; color: #333; margin: 30px 0; animation: pulse 1s ease infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } .opcoes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-bottom: 20px; } .opcao-btn { padding: 20px; font-size: 1.5em; font-weight: bold; background: linear-gradient(135deg, #f5f5f5, #e0e0e0); border: 3px solid transparent; border-radius: 15px; cursor: pointer; transition: all 0.3s ease; color: #333; } .opcao-btn:hover { background: linear-gradient(135deg, #667eea, #764ba2); color: white; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4); } .opcao-btn:active { transform: translateY(-2px); } .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 20px; } .stat-card { background: linear-gradient(135deg, #f5f5f5, #e0e0e0); padding: 15px; border-radius: 10px; text-align: center; } .stat-card.success { background: linear-gradient(135deg, #4caf50, #66bb6a); color: white; } .stat-card.error { background: linear-gradient(135deg, #f44336, #ef5350); color: white; } .stat-card.info { background: linear-gradient(135deg, #2196f3, #42a5f5); color: white; } .stat-value { font-size: 2em; font-weight: bold; } .stat-label { font-size: 0.9em; margin-top: 5px; opacity: 0.9; } .feedback { padding: 15px; border-radius: 10px; margin-bottom: 20px; text-align: center; font-weight: 600; animation: slideDown 0.5s ease; } .feedback.sucesso { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .feedback.erro { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } .streak-indicator { background: linear-gradient(135deg, #ffd700, #ffed4e); color: #333; padding: 10px 20px; border-radius: 30px; display: inline-block; margin-top: 10px; font-weight: bold; animation: bounce 2s infinite; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 480px) { .header h1 { font-size: 2em; } .pergunta { font-size: 2.5em; } .tabuadas-grid { grid-template-columns: repeat(3, 1fr); } .opcoes-grid { grid-template-columns: repeat(2, 1fr); } .opcao-btn { font-size: 1.3em; padding: 15px; } } /style>/head>body> div classcontainer> div classheader> h1>🧮 Quiz de Tabuada/h1> p>Aprenda matemática de forma divertida!/p> /div> div classcard> form methodget action> div classconfig-section> h3>Escolha as tabuadas:/h3> div classtabuadas-grid> input typecheckbox nametabuadas value1 idtab1 classtabuada-checkbox checked > label fortab1 classtabuada-label> 1 /label> input typecheckbox nametabuadas value2 idtab2 classtabuada-checkbox checked > label fortab2 classtabuada-label> 2 /label> input typecheckbox nametabuadas value3 idtab3 classtabuada-checkbox checked > label fortab3 classtabuada-label> 3 /label> input typecheckbox nametabuadas value4 idtab4 classtabuada-checkbox checked > label fortab4 classtabuada-label> 4 /label> input typecheckbox nametabuadas value5 idtab5 classtabuada-checkbox checked > label fortab5 classtabuada-label> 5 /label> input typecheckbox nametabuadas value6 idtab6 classtabuada-checkbox checked > label fortab6 classtabuada-label> 6 /label> input typecheckbox nametabuadas value7 idtab7 classtabuada-checkbox checked > label fortab7 classtabuada-label> 7 /label> input typecheckbox nametabuadas value8 idtab8 classtabuada-checkbox checked > label fortab8 classtabuada-label> 8 /label> input typecheckbox nametabuadas value9 idtab9 classtabuada-checkbox checked > label fortab9 classtabuada-label> 9 /label> input typecheckbox nametabuadas value10 idtab10 classtabuada-checkbox checked > label fortab10 classtabuada-label> 10 /label> /div> div classbtn-group> button typesubmit classbtn btn-primary>Aplicar Seleção/button> a href?reset1 classbtn btn-secondary>Resetar Pontuação/a> /div> /div> /form> div classquiz-section> div classpergunta> 8 × 3 ? /div> form methodpost action> div classopcoes-grid> button typesubmit nameresposta value19 classopcao-btn > 19 /button> button typesubmit nameresposta value33 classopcao-btn > 33 /button> button typesubmit nameresposta value37 classopcao-btn > 37 /button> button typesubmit nameresposta value36 classopcao-btn > 36 /button> button typesubmit nameresposta value24 classopcao-btn > 24 /button> /div> /form> /div> /div> /div>/body>/html>
Port 443
HTTP/1.1 200 OKServer: nginxDate: Fri, 17 Oct 2025 04:13:32 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveVary: Accept-EncodingSet-Cookie: PHPSESSID6i7gr9ufnbqlfm3smuch28bj5g; path/Expires: Thu, 19 Nov 1981 08:52:00 GMTCache-Control: no-store, no-cache, must-revalidatePragma: no-cacheStrict-Transport-Security: max-age31536000 !DOCTYPE html>html langpt-BR>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>Quiz de Tabuada/title> style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; flex-direction: column; padding: 20px; color: #333; } .container { max-width: 480px; margin: 0 auto; width: 100%; } .header { text-align: center; color: white; margin-bottom: 30px; animation: fadeIn 0.5s ease; } .header h1 { font-size: 2.5em; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); } .header p { font-size: 1.1em; opacity: 0.95; } .card { background: white; border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); margin-bottom: 20px; animation: slideUp 0.5s ease; } .config-section { margin-bottom: 25px; } .config-section h3 { color: #667eea; margin-bottom: 15px; font-size: 1.2em; } .tabuadas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 20px; } .tabuada-checkbox { display: none; } .tabuada-label { display: flex; align-items: center; justify-content: center; padding: 12px; background: #f0f0f0; border-radius: 10px; cursor: pointer; transition: all 0.3s ease; font-weight: 600; color: #666; } .tabuada-checkbox:checked + .tabuada-label { background: linear-gradient(135deg, #667eea, #764ba2); color: white; transform: scale(1.05); } .tabuada-label:hover { transform: scale(1.1); } .btn-group { display: flex; gap: 10px; margin-bottom: 20px; } .btn { flex: 1; padding: 12px 20px; border: none; border-radius: 10px; font-size: 1em; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; text-align: center; display: inline-block; } .btn-primary { background: linear-gradient(135deg, #667eea, #764ba2); color: white; } .btn-secondary { background: #f0f0f0; color: #666; } .btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .quiz-section { text-align: center; } .pergunta { font-size: 3em; font-weight: bold; color: #333; margin: 30px 0; animation: pulse 1s ease infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } .opcoes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-bottom: 20px; } .opcao-btn { padding: 20px; font-size: 1.5em; font-weight: bold; background: linear-gradient(135deg, #f5f5f5, #e0e0e0); border: 3px solid transparent; border-radius: 15px; cursor: pointer; transition: all 0.3s ease; color: #333; } .opcao-btn:hover { background: linear-gradient(135deg, #667eea, #764ba2); color: white; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4); } .opcao-btn:active { transform: translateY(-2px); } .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 20px; } .stat-card { background: linear-gradient(135deg, #f5f5f5, #e0e0e0); padding: 15px; border-radius: 10px; text-align: center; } .stat-card.success { background: linear-gradient(135deg, #4caf50, #66bb6a); color: white; } .stat-card.error { background: linear-gradient(135deg, #f44336, #ef5350); color: white; } .stat-card.info { background: linear-gradient(135deg, #2196f3, #42a5f5); color: white; } .stat-value { font-size: 2em; font-weight: bold; } .stat-label { font-size: 0.9em; margin-top: 5px; opacity: 0.9; } .feedback { padding: 15px; border-radius: 10px; margin-bottom: 20px; text-align: center; font-weight: 600; animation: slideDown 0.5s ease; } .feedback.sucesso { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .feedback.erro { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } .streak-indicator { background: linear-gradient(135deg, #ffd700, #ffed4e); color: #333; padding: 10px 20px; border-radius: 30px; display: inline-block; margin-top: 10px; font-weight: bold; animation: bounce 2s infinite; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 480px) { .header h1 { font-size: 2em; } .pergunta { font-size: 2.5em; } .tabuadas-grid { grid-template-columns: repeat(3, 1fr); } .opcoes-grid { grid-template-columns: repeat(2, 1fr); } .opcao-btn { font-size: 1.3em; padding: 15px; } } /style>/head>body> div classcontainer> div classheader> h1>🧮 Quiz de Tabuada/h1> p>Aprenda matemática de forma divertida!/p> /div> div classcard> form methodget action> div classconfig-section> h3>Escolha as tabuadas:/h3> div classtabuadas-grid> input typecheckbox nametabuadas value1 idtab1 classtabuada-checkbox checked > label fortab1 classtabuada-label> 1 /label> input typecheckbox nametabuadas value2 idtab2 classtabuada-checkbox checked > label fortab2 classtabuada-label> 2 /label> input typecheckbox nametabuadas value3 idtab3 classtabuada-checkbox checked > label fortab3 classtabuada-label> 3 /label> input typecheckbox nametabuadas value4 idtab4 classtabuada-checkbox checked > label fortab4 classtabuada-label> 4 /label> input typecheckbox nametabuadas value5 idtab5 classtabuada-checkbox checked > label fortab5 classtabuada-label> 5 /label> input typecheckbox nametabuadas value6 idtab6 classtabuada-checkbox checked > label fortab6 classtabuada-label> 6 /label> input typecheckbox nametabuadas value7 idtab7 classtabuada-checkbox checked > label fortab7 classtabuada-label> 7 /label> input typecheckbox nametabuadas value8 idtab8 classtabuada-checkbox checked > label fortab8 classtabuada-label> 8 /label> input typecheckbox nametabuadas value9 idtab9 classtabuada-checkbox checked > label fortab9 classtabuada-label> 9 /label> input typecheckbox nametabuadas value10 idtab10 classtabuada-checkbox checked > label fortab10 classtabuada-label> 10 /label> /div> div classbtn-group> button typesubmit classbtn btn-primary>Aplicar Seleção/button> a href?reset1 classbtn btn-secondary>Resetar Pontuação/a> /div> /div> /form> div classquiz-section> div classpergunta> 1 × 2 ? /div> form methodpost action> div classopcoes-grid> button typesubmit nameresposta value12 classopcao-btn > 12 /button> button typesubmit nameresposta value11 classopcao-btn > 11 /button> button typesubmit nameresposta value16 classopcao-btn > 16 /button> button typesubmit nameresposta value2 classopcao-btn > 2 /button> button typesubmit nameresposta value14 classopcao-btn > 14 /button> /div> /form> /div> /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
]