Help
RSS
API
Feed
Maltego
Contact
Domain > qrcode.aff.co.id
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-05-06
91.108.98.49
(
ClassC
)
2025-10-16
148.135.128.197
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Thu, 16 Oct 2025 02:39:47 GMTContent-Type: text/htmlContent-Length: 795Connection: keep-aliveLocation: https://qrcode.aff.co.id/platform: hostingerpanel: hpanelContent-Security-Policy: upgrade-insecure-requestsServer: hcdnalt-svc: h3:443; ma86400x-hcdn-request-id: 6ce5932460dc4535dc9413c86612eb9c-phx-edge5x-hcdn-cache-status: MISSx-hcdn-upstream-rt: 0.434 !DOCTYPE html>html styleheight:100%>head>meta nameviewport contentwidthdevice-width, initial-scale1, shrink-to-fitno />title> 301 Moved Permanently/title>style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}/style>/head>body stylecolor: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;>div styleheight:auto; min-height:100%; > div styletext-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;> h1 stylemargin:0; font-size:150px; line-height:150px; font-weight:bold;>301/h1>h2 stylemargin-top:20px;font-size: 30px;>Moved Permanently/h2>p>The document has been permanently moved./p>/div>/div>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Thu, 16 Oct 2025 02:39:48 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveVary: Accept-EncodingX-Powered-By: PHP/7.4.33set-cookie: ci_session79a4a7cd6f7e96648ca4a6f9f3bb7102da01811b; expiresThu, 16-Oct-2025 04:39:48 GMT; Max-Age7200; path/; HttpOnly; SameSiteLax; secureExpires: Thu, 19 Nov 1981 08:52:00 GMTCache-Control: no-store, no-cache, must-revalidatePragma: no-cacheplatform: hostingerpanel: hpanelContent-Security-Policy: upgrade-insecure-requestsServer: hcdnalt-svc: h3:443; ma86400x-hcdn-request-id: 86519f134966602d8ebfb2b069814801-phx-edge6x-hcdn-cache-status: DYNAMICx-hcdn-upstream-rt: 0.703 !doctype html>html langen>head> meta charsetutf-8> title>QR Code Generator/title> link relicon typeimage/x-icon hrefhttps://qrcode.aff.co.id/uploads/icon.png> link hrefhttps://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css relstylesheet> script srchttps://code.jquery.com/jquery-3.7.1.min.js>/script> script srchttps://cdn.jsdelivr.net/npm/autonumeric@4.10.0/dist/autoNumeric.min.js>/script> script srchttps://cdn.jsdelivr.net/npm/sweetalert2@11>/script>/head>body classbg-light>div classcontainer py-5> div classcard p-4 shadow-sm> h2 classmb-4>QR Code Generator/h2> form methodpost actionhttps://qrcode.aff.co.id/qr_generator/generate idqr_form> div classmb-3> label fororiginal_url classform-label>Masukkan URL:/label> input typeurl classform-control nameoriginal_url idoriginal_url placeholderhttps://contoh.com required> /div> div classcard mb-3> div classcard-body> img idcaptcha_image srchttps://qrcode.aff.co.id/uploads/soal2.png classimg-fluid mb-3 stylemax-width: 300px;> input typehidden namequestion_id idquestion_id value2> div classform-group mb-3> label forcaptcha_answer classform-label>Masukkan Jawaban CAPTCHA/label> input typetext classform-control idcaptcha_answer namecaptcha_answer required> /div> /div> /div> button typesubmit classbtn btn-primary idgenerate_btn>Generate QR Code/button> a hrefhttps://qrcode.aff.co.id/backend/captcha/validasi classbtn btn-success>Lihat Daftar QR Code/a> /form> /div>/div>script> const captchaAnswerInput new AutoNumeric(#captcha_answer, { decimalCharacter: ,, digitGroupSeparator: ., maximumValue: 999999999.999, minimumValue: 0, decimalPlaces: 3, modifyValueOnWheel: false, selectOnFocus: false }); function loadNewQuestion() { $.ajax({ url: https://qrcode.aff.co.id/backend/captcha/get_new_question, type: GET, dataType: json, success: function(response) { if (response.status success) { $(#captcha_image).attr(src, https://qrcode.aff.co.id/uploads/ + response.question.question_image); $(#question_id).val(response.question.id); $(#captcha_answer).val(); } else { Swal.fire({ icon: error, title: Gagal, text: response.message }); } }, error: function(xhr, status, error) { console.error(Error fetching new question:, error); Swal.fire({ icon: error, title: Gagal, text: Gagal memuat pertanyaan baru. Periksa koneksi atau server. }); } }); } $(#qr_form).submit(function(e) { e.preventDefault(); let original_url $(#original_url).val(); let captcha_answer captchaAnswerInput.getFormatted(); let question_id $(#question_id).val(); console.log(Sending CAPTCHA answer:, captcha_answer); $.ajax({ url: https://qrcode.aff.co.id/backend/captcha/validate_captcha, type: POST, data: { question_id: question_id, answer: captcha_answer }, dataType: json, success: function(response) { if (response.status success) { $(#qr_form).off(submit).submit(); } else { Swal.fire({ icon: error, title: Gagal, text: response.message }).then(() > { loadNewQuestion(); }); } }, error: function(xhr, status, error) { console.error(Error validating captcha:, error); Swal.fire({ icon: error, title: Gagal, text: Terjadi kesalahan saat memvalidasi CAPTCHA. }).then(() > { loadNewQuestion(); }); } }); }); $(#generate_btn).prop(disabled, true); $(#captcha_answer).on(input, function() { let answer $(this).val(); if (answer && answer.trim().length > 0) { $(#generate_btn).prop(disabled, false); } else { $(#generate_btn).prop(disabled, true); } });/script>/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
]