Free Python coding..My tribute to BHW

Status
Not open for further replies.
Also Put this in same folder with name Email_Verify.py


import hashlib
import requests

def verify(mail):
e=mail.lower()
h=hashlib.md5(e.encode('utf-8')).hexdigest()
print(hashlib.md5(e.encode('utf-8')).hexdigest())
r = requests.get("https://privatix-temp-mail-v1.p.mashape.com/request/mail/id/%s/"%(h),
headers={
"X-Mashape-Key": "please input your Own Key here Per Day 100 Free"
}
)
data1=r.json()
limit=r.headers
print(limit["X-RateLimit-requests-Remaining"])
a=data1[0]
s=a["mail_text"]
p=s.split('\n')[3]
url=p
return(url)
 
I tested it with out proxy support and created 10 accounts >will provide proxy support if you needed
 
Sorry the script is not posted as i like (Some issues with indenting will post the zip file tomorow)
 
Sorry the script is not posted as i like (Some issues with indenting will post the zip file tomorow)

Great bro, will be waiting for it..
Also please do specify the process how to use the code as I'm newb in coding related stuff..
 
This may be too much to ask but,

You think you can create a reddit bot, which will automatically post a comment to specific Keyword on specific subreddit?

Exaple:

Bot search for Keyword "Dog" in /r/pics - when bot see new post with keyword "Dog" in title, the bot will automatically comment specific thing... Don't worry, i will use different subreddit, and it will not go againts Reddit ToS neither it will be spammy.
You are right it take too much of my time but as i mentioned above there is a good reddit bot out there.Also if you want i will personally create a reddit acount creator
 
high pr forum posting where auto registration on forums and posting with our link is it possible ?
 
Dont really know if you can do it. Would be crazy :)

Automated Phone Number/E-Mail Verification for IG with normal/rotating IP Support (for multiple accounts obviously)

Is that possible?
Can be done..But i think Somebody here have that service for Cheap..I forgot the name its like Valar something
 
You might consider changing your "useragent" header to "User-Agent", and adding a timeout to your requests.

Just my unsolicited 2 cents, for free.
 
import requests
import string
import random
import time
from bs4 import BeautifulSoup
from Email_Verify import verify

name="123dqada"
password="zerocool91"
email="[email protected]"
agent="Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36"
header1={"useragent":'agent','Host':'www.pornhub.com','Origin':'https://www.pornhub.com','Referer':'https://www.pornhub.com/signup','Upgrade-Insecure-Requests':'1'}
f=open("user.txt",'r')
for line in f:
with requests.Session() as s:
name,password,mail=line.split(":")
email=mail.split()[0]
print(name,password,email)

r=s.get("https://www.pornhub.com/signup",headers=header1)
soup = BeautifulSoup(r.text, "html.parser")
x=soup.find_all(attrs={'name':'token'})
token=x[0]['value']
print(token)
url= "https://www.pornhub.com/signup"
data={'token':token,'redirect':'','check_what':'password','taste_profile':'','email':email,'username':name,'password':password}
r=s.post(url,headers=header1,data=data)
print(r.status_code)
time.sleep(20)
url=verify(email)
r=s.get(url,headers=header1)
s.close()
print("Ok")
f3=open("verified.txt",'a')
f3.write("%s:%s:%s"%(name,password,email))
f3.write('\n')
f3.close()
time.sleep(20)
print("Prceeding")

f.close()
thanks for doing this man. I dont understand coding so can I ask how would I input my email with this? also can you please add proxy support? Thanks
 
Can be done..But i think Somebody here have that service for Cheap..I forgot the name its like Valar something
Alright thanks I’ll check it out, my problem with Valar is that it has pretty bad ratings and stuff like that but I’ll let you know
 
Gmail account creator and Blogger creator please. It Will help alot People for create fundamental backlink.
Thx
 
Status
Not open for further replies.
Back
Top