Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/usr/bin/python
  2. ########################
  3. # /*
  4. #   Dwi Siswanto (c) 2015
  5. #   --
  6. #   Hey skiddie's,
  7. #   Please don't disturb this script
  8. # */
  9. #
  10. # NB : Jika registrasi berhasil,
  11. #      silahkan login di sini:
  12. #      --
  13. #      //welcome9.wifi.id/wifi.id-apt/freewifi/
  14. ########################
  15.  
  16. import urllib, urllib2, json
  17.  
  18. ndas = """
  19.     #####################################
  20.     #  Auto Registration Free @wifi.id  #
  21.     #  --                               #
  22.     #  Dwi Siswanto (c) 2015            #
  23.     #####################################
  24.     """
  25.  
  26. print ndas
  27. imel = raw_input("Email    : ")
  28. paswot = raw_input("Password : ")
  29.  
  30. dataAing = {
  31.              'email': imel,
  32.              'password': paswot,
  33.              're_password': paswot,
  34.              'no_hp': '08123456789',
  35.              'type': '1',
  36.              'tanggal': '15',
  37.              'bulan': 'Mei',
  38.              'tahun': '1999',
  39.              'persetujuan': 'setuju'
  40.            }
  41. yuerel = "http://welcome9.wifi.id/wifi.id-apt/freewifi/login/regRequest.php"
  42. eks = urllib.urlencode(dataAing)
  43. hajar = urllib2.Request(yuerel, eks)
  44.  
  45. hasil = urllib2.urlopen(hajar)
  46. piye = hasil.read()
  47. pesen = json.loads(piye)
  48. print ""
  49. if (pesen["code"] == "200"):
  50.     print "Registrasi berhasil, cooyy. :-P"
  51. elif (pesen["code"] == "201"):
  52.     print "Email anda sudah terdaftar, silahkan login."
  53. else:
  54.     print "Gagal!"