Error 1016

Ray ID: 7d0e085bedd311a6 • 2023-06-02 07:37:43 UTC

Origin DNS error

What happened?

You've requested a page on a website (geoip.spycash.biz) that is on the Cloudflare network. Cloudflare is currently unable to resolve your requested domain (geoip.spycash.biz).

What can I do?

If you are a visitor of this website:
Please try again in a few minutes.

If you are the owner of this website:
Check your DNS settings. If you are using a CNAME origin record, make sure it is valid and resolvable. Additional troubleshooting information here.

'; function onBeforeBuyNowSubmit() { //Hook } function getLanguage(){ return ''; } function getShopHost() { return 'http://www.spymastersoft.com/'; } function getScriptName(){ return 'index'; } function getAffiliateId() { return 478; } function popupSupport() { var el = $('#kayako_sitebadgecontainer'); if (el.length > 0) { el.click(); } else { document.location = '/support.html'; } return false; } function readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length); } return ''; } function buyNowSubmitHandler(formEl) { onBeforeBuyNowSubmit(); var productId = formEl.elements["item_id"].value; if ('undefined' == typeof productId) { productId = 58; } var oPaymentParams = new Object(); oPaymentParams.user = new Object(); oPaymentParams.track_id = 'ec1309d3d1ca0ae527c4bad2ba637616'; oPaymentParams.shop_url = getShopHost(); oPaymentParams.shop_alias = 'grey'; oPaymentParams.orig_referer = ''; oPaymentParams.t_id = 'ec1309d3d1ca0ae527c4bad2ba637616'; oPaymentParams.t_re = ''; oPaymentParams.t_cp = ''; oPaymentParams.t_st = '34625e6115d26934dfcce8eba1369ac4'; oPaymentParams.currency = currency; oPaymentParams.pmethod = $('#pmethod').val(); oPaymentParams.t_af = getAffiliateId(); oPaymentParams.aff_id = getAffiliateId(); oPaymentParams.subscriptions = new Array(); if ($(".item-cart").length > 0) { $i = 0; $(".item-cart").each(function () { $this = (this); oPaymentParams.subscriptions[$i] = new Object(); oPaymentParams.subscriptions[$i].product_id = $this.getAttribute('productID'); oPaymentParams.subscriptions[$i].quantity = $(".quantity-" + oPaymentParams.subscriptions[$i].product_id).val(); oPaymentParams.subscriptions[$i].price_usd = $(".price_usd-" + oPaymentParams.subscriptions[$i].product_id).val(); oPaymentParams.subscriptions[$i].price_eur = $(".price_eur-" + oPaymentParams.subscriptions[$i].product_id).val(); oPaymentParams.subscriptions[$i].price_gbp = $(".price_gbp-" + oPaymentParams.subscriptions[$i].product_id).val(); oPaymentParams.subscriptions[$i].currency = currency; oPaymentParams.subscriptions[$i].shop_host = getShopHost(); oPaymentParams.subscriptions[$i].affiliate_id = getAffiliateId(); oPaymentParams.subscriptions[$i].order_type = 'purchase'; oPaymentParams.return_url = oPaymentParams.subscriptions[$i].shop_host + 'order_complete.html'; $i++; }); } else { oPaymentParams.subscriptions[0] = new Object(); oPaymentParams.subscriptions[0].product_id = parseInt(productId); oPaymentParams.subscriptions[0].quantity = 1; oPaymentParams.subscriptions[0].currency = currency; oPaymentParams.subscriptions[0].shop_host = getShopHost(); oPaymentParams.subscriptions[0].affiliate_id = getAffiliateId(); oPaymentParams.subscriptions[0].order_type = 'purchase'; oPaymentParams.return_url = oPaymentParams.subscriptions[0].shop_host + 'order_complete.html'; } var paymParamsDOMInput = document.createElement("input"); paymParamsDOMInput.setAttribute('type', 'hidden'); paymParamsDOMInput.setAttribute('name', 'payment_params'); paymParamsDOMInput.setAttribute('value', JSON.stringify(oPaymentParams)); /*var theDate = new Date(); var oldDate = new Date(theDate.getTime() - 100000000); var expiryDate = oldDate.toString(); document.cookie = "items_cart =; expires=" + expiryDate + "; path=/ ; domain=" + document.domain + ";";*/ formEl.appendChild(paymParamsDOMInput); formEl.submit(); return false; } function addToCartHandler(itemId) { items = readCookie('items_cart'); if (items.length > 0) { items += "," + itemId; } else { items = itemId; } // alert(items); var theDate = new Date(); var oneWeekLater = new Date(theDate.getTime() + 1000 * 60 * 60 * 24 * 7); var expiryDate = oneWeekLater.toString(); document.cookie = "items_cart =" + items + "; expires=" + expiryDate + "; path=/ ; domain=" + document.domain + ";"; window.location = "cart.html"; } function deleteFromCart(itemId) { items = readCookie('items_cart'); items_array = items.split(','); //console.log(items_array); $i = 0; iterations = items_array.length+1; new_items = items_array; //for (var i = 0; i <= iterations; i++) { for (i in items_array ) { //console.log(items_array[i]); if (items_array[i] == itemId) { new_items.splice(i, 1); } } //console.log(new_items); var theDate = new Date(); var oneWeekLater = new Date(theDate.getTime() + 1000 * 60 * 60 * 24 * 7); var expiryDate = oneWeekLater.toString(); items = new_items.join(','); //alert(new_items); document.cookie = "items_cart =" + items + "; expires=" + expiryDate + "; path=/ ; domain=" + document.domain + ";"; window.location = "cart.html"; } function cleanCart(itemId) { items = readCookie('items_cart'); items_array = items.split(','); //console.log(items_array); $i = 0; iterations = items_array.length+1; new_items = items_array; //for (var i = 0; i <= iterations; i++) { for (i in items_array ) { //console.log(items_array[i]); if (items_array[i] == itemId) { new_items.splice(i, 1); } } //console.log(new_items); var theDate = new Date(); var oneWeekLater = new Date(theDate.getTime() + 1000 * 60 * 60 * 24 * 7); var expiryDate = oneWeekLater.toString(); items = new_items.join(','); //alert(new_items); document.cookie = "items_cart =" + items + "; expires=" + expiryDate + "; path=/ ; domain=" + document.domain + ";"; window.location = "cart.html"; } function changeCount(direction, itemID) { $quantity = $(".quantity-" + itemID).val(); if (direction == 'plus') { $quantity++; } else { $quantity--; } $(".quantity-" + itemID).val($quantity); } /*]]>*/
  

Supported phones

  

Welcome to mSpy

Spy software for mobile phones. Remotely read SMS, Call Logs, Emails, Listen Surroundings, Track phone location and more.

3 months
$99.00
BUY NOW
6 months
$119.00
BUY NOW
9 months
$139.00
BUY NOW
12 months
$159.00
BUY NOW

  

Testimonials

Roberta
Chicago, USA

"This is totally the kind of program I was looking for and it does everything it says it does - and it does it well. Their customer support has also been great to me and I've always received a timely response to my questions."


"I've had no issues whatsoever using this app. It's been running silently and flawlessly since I've installed it. If you have someone with a mobile phone you need to monitor, this is definitely the right tool for the job."


"I really love this software and it's working great in helping me monitor all text messages to my daughter's phone. I am making sure pornography and child molesters don't have access to her mobile phone."

down
 
Home - Features - Uses - Compatibility - FAQ - Buy now - Affiliates - Support - Contact us - Legal info
© 2023 MTECHNOLOGY LTD. All Rights Reserved.
Live Support