Help
RSS
API
Feed
Maltego
Contact
Domain > stripe.pay.any2.app
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2022-01-09
3.68.131.152
(
ClassC
)
2026-01-20
3.126.151.197
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: awselb/2.0Date: Tue, 20 Jan 2026 11:25:03 GMTContent-Type: text/htmlContent-Length: 134Connection: keep-aliveLocation: https://stripe.pay.any2.app:443/ html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Tue, 20 Jan 2026 11:25:03 GMTContent-Type: text/html; charsetutf-8Content-Length: 12679Connection: keep-aliveaccept-ranges: bytescache-control: public, must-revalidate, proxy-revalidateetag: d236m4vsfo5c9s7last-modified: Tue, 18 Jun 2024 13:36:48 GMTserver: nginxvary: Accept-Encodingstrict-transport-security: max-age15768000 !doctype html>html langen>head> meta charsetutf-8> title>STRIPE/title> meta nameviewport contentwidthdevice-width, initial-scale1> link relicon hreffavicon.ico typeimage/x-icon/> link relstylesheet hrefcss/normalize.css/> link relstylesheet hrefcss/global.css/> script src./vendor/jquery/jquery.slim.min.js>/script> script srchttps://js.stripe.com/v3/>/script> script> $.urlParam function (name) { const results new RegExp(\?& + name + (^*)).exec(window.location.href); if (results null) { return 0; } return results1 || 0; }; const allowedLocals en, de; const allowedPaymentTypes CREDIT_CARD, SEPA; const locale (new RegExp(allowedLocals.join(|)).exec($.urlParam(locale)) || allowedLocals0)0; const amount parseFloat($.urlParam(a)) || 0.0; const paymentType (new RegExp(allowedPaymentTypes.join(|)).exec($.urlParam(pt)) || allowedPaymentTypes0)0; const currency (new RegExp(^A-Z{3}$).exec($.urlParam(c)) || EUR)0; const id (new RegExp(^A-Za-z0-9.\-+$).exec($.urlParam(id)) || null)0; const cs (new RegExp(^pi_.+_secret_.+).exec($.urlParam(cs)) || null)0; const ps (new RegExp(^pk_.+).exec($.urlParam(ps)) || null)0; const env (new RegExp(test|live|dev).exec($.urlParam(env)) || live)0; const uri decodeURIComponent($.urlParam(uri) || null); const translations { en: { payment_completed: Payment completed, pay: Pay, mandate_acceptance: By providing your IBAN and confirming this payment, you are authorizing Rocketship Inc. and Stripe, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited., missing_parameters: A problem loading the payment transaction has occurred, please go back and try again. }, de: { payment_completed: Zahlung abgeschlossen, pay: Bezahlen, mandate_acceptance: Indem Sie Ihre IBAN bereitstellen und diese Zahlung bestätigen, ermächtigen Sie Rocketship Inc. und Stripe, unseren Zahlungsdienstleister, Anweisungen an Ihre Bank zu senden, um Ihr Konto zu belasten, und Ihre Bank, Ihr Konto gemäß diesen Anweisungen zu belasten. Sie haben Anspruch auf eine Rückerstattung von Ihrer Bank gemäß den Bedingungen Ihrer Vereinbarung mit Ihrer Bank. Eine Rückerstattung muss innerhalb von 8 Wochen ab dem Datum der Belastung Ihres Kontos beantragt werden., missing_parameters: Es ist ein Fehler beim laden der Zahlungstransaktion aufgetreten, bitte gehen Sie zurück und versuchen Sie es erneut. } }; const style { base: { color: #32325d, fontFamily: Helvetica Neue, Helvetica, sans-serif, fontSmoothing: antialiased, fontSize: 16px, ::placeholder: { color: #aab7c4 } }, invalid: { color: #fa755a, iconColor: #fa755a } }; $(document).ready(function () { if (env ! live) { $(.payment-hints).show(); } $(data-translate).each(function () { const name $(this).attr(data-translate); $(this).html(translationslocalename); }); if (cs ! null && ps ! null) { $(.payment- + paymentType).show(); $(.sr-root).show(); let stripe Stripe(ps); let elements stripe.elements({locale: locale}); let iban null; let card null; $(.order-amount).html(amount.toString() + + currency); let createPaymentIntent function (paymentType) { if (paymentType SEPA) { setupElementsSepa(); // Handle form submission. $(#payment-form-sepa).on(submit, function (event) { event.preventDefault(); // Validate the form input if (!event.target.reportValidity()) { // Form not valid, abort! return; } // Initiate payment when the submit button is clicked paySepa(stripe, iban, cs); }); } else if (paymentType CREDIT_CARD) { setupElementsCreditCard(); // Handle form submission. $(#payment-form-credit-card).on(submit, function (event) { event.preventDefault(); payCreditCard(stripe, card, cs); }); } }; let setupElementsSepa function () { $(#payment-form-sepa).show(); let options { style: style, supportedCountries: SEPA // placeholderCountry: DE }; iban elements.create(iban, options); iban.mount(#iban-element); iban.on(change, function (event) { if (event.error) { showError(event.error.message); } }); $(#submit-sepa).prop(disabled, false); }; let setupElementsCreditCard function () { $(#payment-form-credit-card).show(); let options { style: style, hidePostalCode: true } card elements.create(card, options); card.mount(#card-element); card.on(change, function (event) { if (event.error) { showError(event.error.message); } }); $(#submit-credit-card).prop(disabled, false); }; /* * Calls stripe.confirmSepaDebitPayment to generate the mandate and initaite the debit. */ let paySepa function (stripe, iban, clientSecret) { changeLoadingState(true); // Initiate the payment. stripe .confirmSepaDebitPayment(clientSecret, { payment_method: { sepa_debit: iban, billing_details: { name: $(#name-sepa).val(), email: $(#email-sepa).val() } } }) .then(function (result) { if (result.error) { // Show error to your customer showError(result.error.message); } else { orderComplete(result.paymentIntent.client_secret); } }); }; let payCreditCard function (stripe, card, clientSecret) { changeLoadingState(true); // Collects card details and creates a PaymentMethod stripe.confirmCardPayment(clientSecret, { payment_method: { card: card } }).then(function (result) { if (result.error) { // Show error to your customer (e.g., insufficient funds) showError(result.error.message); } else if (result.requiresAction) { // happens automatically } else { // The payment has been processed! if (result.paymentIntent.status succeeded) { orderComplete(result.paymentIntent.client_secret); } } }); }; /* ------- Post-payment helpers ------- */ /* Shows a success / error message when the payment is complete */ let orderComplete function (clientSecret) { changeLoadingState(false); stripe.retrievePaymentIntent(clientSecret).then(function (result) { $(.sr-payment-form).hide(); $(.sr-result).show().addClass(expand); window.location.href uri; }); }; let showError function (errorMsgText) { changeLoadingState(false); $(.sr-field-error).html(errorMsgText); setTimeout(function () { $(.sr-field-error).html(); }, 10000); }; let changeLoadingState function (isLoading) { if (isLoading) { $(#submit-credit-card).prop(disabled, true); $(#submit-sepa).prop(disabled, true); } else { $(#submit-credit-card).prop(disabled, false); $(#submit-sepa).prop(disabled, false); } }; createPaymentIntent(paymentType); } else { $(.sr-result).html(translationslocalemissing_parameters).show(); } }); /script> style> body, a, a:hover, a:focus { font-family: HelveticaNeue, Arial, serif; color: #333333; font-size: 15px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; } body { margin-left: 30px; margin-right: 30px; } div.stripelogo { text-align: center; padding-bottom: 20px; } div.stripelogo img { width: 155px; } div.sr-main { width: 100%; } form.payment-form { display: none; } div.sr-result { text-align: center; } div.payment-hints { display: none; } /style>/head>body>div classsr-root> div classsr-main> div classstripelogo> svg width62 height25> title>Stripe/title> path dM5 10.1c0-.6.6-.9 1.4-.9 1.2 0 2.8.4 4 1.1V6.5c-1.3-.5-2.7-.8-4-.8C3.2 5.7 1 7.4 1 10.3c0 4.4 6 3.6 6 5.6 0 .7-.6 1-1.5 1-1.3 0-3-.6-4.3-1.3v3.8c1.5.6 2.9.9 4.3.9 3.3 0 5.5-1.6 5.5-4.5.1-4.8-6-3.9-6-5.7zM29.9 20h4V6h-4v14zM16.3 2.7l-3.9.8v12.6c0 2.4 1.8 4.1 4.1 4.1 1.3 0 2.3-.2 2.8-.5v-3.2c-.5.2-3 .9-3-1.4V9.4h3V6h-3V2.7zm8.4 4.5L24.6 6H21v14h4v-9.5c1-1.2 2.7-1 3.2-.8V6c-.5-.2-2.5-.5-3.5 1.2zm5.2-2.3l4-.8V.8l-4 .8v3.3zM61.1 13c0-4.1-2-7.3-5.8-7.3s-6.1 3.2-6.1 7.3c0 4.8 2.7 7.2 6.6 7.2 1.9 0 3.3-.4 4.4-1.1V16c-1.1.6-2.3.9-3.9.9s-2.9-.6-3.1-2.5H61c.1-.2.1-1 .1-1.4zm-7.9-1.5c0-1.8 1.1-2.5 2.1-2.5s2 .7 2 2.5h-4.1zM42.7 5.7c-1.6 0-2.5.7-3.1 1.3l-.1-1h-3.6v18.5l4-.7v-4.5c.6.4 1.4 1 2.8 1 2.9 0 5.5-2.3 5.5-7.4-.1-4.6-2.7-7.2-5.5-7.2zm-1 11c-.9 0-1.5-.3-1.9-.8V10c.4-.5 1-.8 1.9-.8 1.5 0 2.5 1.6 2.5 3.7 0 2.2-1 3.8-2.5 3.8z>/path> /svg> /div> form idpayment-form-sepa classsr-payment-form payment-form> div classpayment-hints> DE89370400440532013000br/> /div> div classsr-input> input idname-sepa typetext namename placeholderEnter Name required/> /div> br/> div classsr-input> input idemail-sepa nameemail typetext placeholderEnter Email required /> /div> br/> div idiban-element classsr-input sr-iban-element> !-- A Stripe Element will be inserted here. --> /div> br/> !-- Display mandate acceptance text. --> div idmandate-acceptance classcol data-translatemandate_acceptance> /div> !-- Used to display form errors. --> div classsr-field-error rolealert>/div> button idsubmit-sepa typesubmit> span classbutton-text data-translatepay>Pay/span> span classorder-amount>/span> /button> /form> form idpayment-form-credit-card classsr-payment-form payment-form> div classpayment-hints> 4242424242424242 Good cardbr/> 4000002500003155 requires auth cardbr/> 4000000000009995 insufficient funds /div> div classsr-combo-inputs-row> div classsr-input sr-card-element idcard-element>/div> /div> !-- Used to display form errors. --> div classsr-field-error rolealert>/div> button idsubmit-credit-card> span classbutton-text data-translatepay>Pay/span> span classorder-amount>/span> /button> /form> div classsr-result hidden> p data-translatepayment_completed>Payment completed/p> p idpayment-result-text>/p> /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
]