Welcome Guest ( Log In | Register )

Bump Topic Topic Closed RSS Feed
3 Pages  1 2 3 >Bottom

Outline · [ Standard ] · Linear+

> Lazada Discussion V22 | #MYCyberSCAM, lalalaxx.com | pricecampers.com

views
     
rhytion
post Oct 3 2017, 05:44 AM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(hentaiargh @ Oct 3 2017, 02:36 AM)
script below(MYCYBER SPIN WHEEL)
var i = 0;
setInterval(function() {
$.getJSON('http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=1e48eefec55aba8b941095da02508bbf&dpr=1', function(data){
i++
if(data != undefined) {
if(data.data.voucherCode) {
console.log('Voucher: ' + data.data.voucherCode);
alert('Voucher: ' + data.data.voucherCode);
}
else {
console.log('no voucher');
}
document.getElementsByClassName("breadcrumb__item-text")[1].innerHTML = 'Help Center on Lazada Malaysia - Spins: ' + i;
}
}
); }, 1000);
755
*
Mind giving some credit hehe
rhytion
post Oct 3 2017, 05:24 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(rayken @ Oct 3 2017, 05:24 PM)
29 again maybe
*
Where got 29? Unless not from spin wheel brows.gif
rhytion
post Oct 3 2017, 05:41 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(jianqiang @ Oct 3 2017, 05:38 PM)
maybe those xxKAW codes can be used in this cyber sale....who knows Laz is so desperate for sales figure  whistling.gif  whistling.gif  whistling.gif
*
I did get some KAW vouchers from the wheel when the spin first started, but I don't think they'll work.
rhytion
post Oct 4 2017, 02:19 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(soonwai @ Oct 4 2017, 02:19 PM)
1am already all gone. There's another way to get 20% off MR200 purchase. Later I post.
Shopee? 50%? Where got such a thing.
*
Eagerly waiting tongue.gif
rhytion
post Oct 4 2017, 07:12 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(DameDameDesuYo @ Oct 4 2017, 06:18 PM)
user posted image
sofar so good rclxms.gif
*
Thanks for your previous script. Managed to make one like yours in the pic by studying some python. rclxms.gif

user posted image

This post has been edited by rhytion: Oct 4 2017, 07:13 PM
rhytion
post Oct 4 2017, 10:31 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


Anything wrong with my code or Lazada being stingy even with low voucher values? Help from sifus much appreciated.

CODE
import requests, time, sys,os


headers = {'User-Agent':"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246"}

def recursionftwdude(theSession):
  try:
      theSession.close()
      theSession = None
      theSession = requests.Session()
      theSession.get("http://www.lazada.com.my/", headers=headers)
      return theSession
  except:
      recursionftwdude(theSession)

numberofrounds = 1
numberof10 = 0
numberof5 = 0
numberof12 = 0
numberOfAttempt = 0
s = requests.Session()
proxies = {"http": "http://%s" % (sys.argv[1])}
s.proxies.update(proxies)
s.get("http://www.lazada.com.my/", headers=headers)
url = "http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=1e48eefec55aba8b941095da02508bbf&dpr=1"
while 1:
  numberOfAttempt += 1
  if numberOfAttempt == 1000:
      s = recursionftwdude(s)
      numberOfAttempt = 0
      numberofrounds += 1
  try:
      r = s.get(url, headers=headers).json()
  except ValueError:
      print "Server no give shit"
      time.sleep(5)  # give server rest, because i see 503 too often
      continue
  except requests.exceptions.ConnectionError:
      print "Server no give shit!!!"
      time.sleep(2)  # littlebit speacial
      continue
  try:
      try:
          print "Voucher: " + r["data"]["data"]["voucherCode"]
          if "10" in r["data"]["data"]["voucherCode"]:
              numberof10 += 1
              print "10: " + str(numberof10)
             
          if "12" in r["data"]["data"]["voucherCode"]:
              numberof10 += 1
              print "12: " + str(numberof12)

          if "5" in r["data"]["data"]["voucherCode"]:
              numberof10 += 1
              print "5: " + str(numberof5)
          with open("voucherCode.txt", "a") as f:
              f.write(time.ctime(int(time.time())) + " :  " + str(r["data"]["data"]["voucherCode"]) + "\n")
      except:
          pass
      print "Voucher: " + r["data"]["voucherCode"]
      if "10" in r["data"]["data"]["voucherCode"]:
              numberof10 += 1
              print "10: " + str(numberof10)
             
      if "12" in r["data"]["data"]["voucherCode"]:
              numberof10 += 1
              print "12: " + str(numberof12)

      if "5" in r["data"]["data"]["voucherCode"]:
              numberof10 += 1
              print "5: " + str(numberof5)
      with open("voucherCode.txt", "a") as f:
          f.write(time.ctime(int(time.time())) + " :  " + str(r["data"]["voucherCode"]) + "\n")
   
  except KeyError:
   if r and r["data"]:
      pass
   os.system('cls')
   print time.ctime(int(time.time()))
   print "----------LAZADA MYCYBERSCAM VOUCHER MINER STATUS----------"
   print "10% Voucher count: " + str(numberof10)
   print "12% Voucher count: " + str(numberof12)
   print "5% Voucher count: " + str(numberof5)
   print "Attempt no. " + str(numberOfAttempt)
   print "Round no. " + str(numberofrounds)
   print "---------------------HERE MARKS THE END---------------------"
   continue


This post has been edited by rhytion: Oct 4 2017, 10:59 PM
rhytion
post Oct 7 2017, 06:14 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(neo_himura @ Oct 7 2017, 05:42 PM)
Is it just me or lzd ran out of mycyberscam codes? I didn't get anything since noon.
*
It's probably not just you, most probably lazada limited the voucher amounts quite strictly this time. It's been over an hr since I last got a voucher.
rhytion
post Oct 8 2017, 09:26 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(Keatsan @ Oct 8 2017, 09:24 PM)
So the root login issie is happening to random non-root users?
*
More likely due to SafetyNet implementation (some tech by google), MIUI ROM running on most Xiaomi devices doesn't even pass it even with no root.
rhytion
post Oct 9 2017, 10:14 AM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(AmeiN @ Oct 9 2017, 10:09 AM)
Tu dia aromachong is back lulz
*
rclxms.gif Welcome back~
rhytion
post Oct 9 2017, 04:16 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


12% incoming

» Click to show Spoiler - click again to hide... «


This post has been edited by rhytion: Oct 9 2017, 04:26 PM
rhytion
post Oct 9 2017, 04:23 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


I'm bored, here's a new way to share codes. brows.gif

» Click to show Spoiler - click again to hide... «


This post has been edited by rhytion: Oct 9 2017, 04:24 PM
rhytion
post Oct 9 2017, 04:25 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


More 12%

» Click to show Spoiler - click again to hide... «

rhytion
post Oct 9 2017, 04:40 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(Keatsan @ Oct 9 2017, 04:39 PM)
The seller change the photo and shop description liao. confirm silent reader here.
time to write script !  tongue.gif

owai
*
Let's give him some comments. Attach lazada link together with 13% voucher code rclxms.gif
rhytion
post Oct 9 2017, 04:44 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(Keatsan @ Oct 9 2017, 04:44 PM)
Commented liao.
*
He following this thread really tight, now straight away product gone.
rhytion
post Oct 9 2017, 04:47 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(AmeiN @ Oct 9 2017, 04:46 PM)
sigh, i terpaksa kolos my petronas shopee sales..

thanks all. sad.gif
*
Come I buy from you, lazada can't ship to east malaysia tongue.gif
rhytion
post Oct 9 2017, 04:51 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(aku_dia @ Oct 9 2017, 04:50 PM)
donate me 29% can? hehe
*
Why use 29% when there's 39% max rm500 with no min spend?
rhytion
post Oct 9 2017, 05:28 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(Uchiha_Itachi1991 @ Oct 9 2017, 05:23 PM)
bought this gaming chair during KAW KAW sale for around RM210+ after using 29KAW code + shopback + SV for late delivery...
cant ask for a better chair at this price in terms of comfort and looks...the green 1 was RM349 back then...so keep an eye in the future when the price drop + better voucher if you can wait...
*
The delivery fee to East Malaysia is just too epic icon_idea.gif
rhytion
post Oct 9 2017, 06:05 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(AmeiN @ Oct 9 2017, 06:04 PM)
» Click to show Spoiler - click again to hide... «

*
Thanks used 29KAWxJoej1v rclxms.gif
rhytion
post Oct 9 2017, 06:09 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(pcboss00 @ Oct 9 2017, 06:08 PM)
dia tulis not valid. not used  bruce.gif  bruce.gif  bruce.gif
*
Lazada updated their website recently. If used then terus become invalid brows.gif
rhytion
post Oct 9 2017, 06:54 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(Davird @ Oct 9 2017, 06:53 PM)
The most useless vouchers ever for anyone that's interested.  rclxs0.gif

» Click to show Spoiler - click again to hide... «

*
I have over a hundred of them. Now don't know use for what


3 Pages  1 2 3 >
Bump Topic Topic ClosedOptions New Topic
 

Change to:
| Lo-Fi Version
0.0980sec    0.52    7 queries    GZIP Disabled
Time is now: 29th November 2025 - 01:09 PM