This post is by a banned member (retr0zzz) - Unhide
23 March, 2024 - 04:41 PM
Reply
(18 May, 2020 - 02:21 AM)landal Wrote: Show MoreInstagram Account Generator and Random Email Generator
hi, Cracked.to.
I've been working on a Selenium-based Instagram Account Generator through OpenBullet to mass-produce Instagram accounts. The progress I have made seems straight forwards and I was hoping to walk Cracked.to through what I've achieved and get help figuring out what I should do next.
I will be providing the code I have been working with to anyone wanting to experiment themselves or help me along the way
MY PROGRESS
Show ContentSpoiler:
When first running the Instagram generator I was able to create 10 accounts using "Linden :)" as the full name alongside a random string of numbers and letters with an email domain added to the end. Looking something like this: [email protected]. After those accounts were made Instagram put a full stop on the program, sending Recaptcha, email verification and phone verification requests.
Afterwards, I attempted to use proxies to set the verification standards to a neutral level for each time I attempt to make an account. Sadly Instagram flags and detects open proxies, not allowing the usage of them to create accounts. The same thing goes for VPNs, Instagram will give you one creation attempt then block you out with verification requests.
To slip past the verification I made my program act in a more human-like behaviour. I added random delays between each input, more realistic emails and full names, along with Browser Action "Sendhumankeys". That had got me 15 more accounts before Instagram implemented another level of automation detection.
and that brings me to my guesses at what could be holding back my program.
MY GUESS
My best guess is that Instagram using Selenium Detection found at Stackoverflow (https://stackoverflow.com/questions/3322...7#41220267). Or Instagram is tracking mouse movements to differentiate between automation or humans. found at Instagram. (https://help.instagram.com/519522125107875) Where they say,
Quote:"Device operations: information about operations and behaviors performed on the device, such as whether a window is foregrounded or backgrounded, or mouse movements (which can help distinguish humans from bots)."
CONCLUSION
I need help figuring out what my next step is going to be with programming this Account Generator. I would take any support I could get, including people testing the config and giving me insights on how I can improve it.
CODE
this was made with python :3
Random Email Generator:
Things you'll need will be:
- a word list
- a name list
or if you want, here's mine: mega.nz
the exports of the code are in email:fullname formats, I used these formats because they were specific to the requirements for my Instagram config
Code: [align=left]
import random
import string
word_file = r"D:\randwords.txt"
words = open(word_file).read().splitlines()
name_file = r"D:\randnames.txt"
names = open(name_file).read().splitlines()
email = ("aol.com", "att.net", "comcast.net", "facebook.com", "gmail.com", "gmx.com", "googlemail.com", "google.com", "hotmail.com", "hotmail.co.uk", "mac.com", "me.com", "mail.com", "msn.com", "live.com", "sbcglobal.net", "verizon.net", "yahoo.com", "yahoo.co.uk", "email.com", "fastmail.fm", "games.com", "gmx.net", "hush.com", "hushmail.com", "icloud.com", "iname.com", "inbox.com", "lavabit.com", "love.com", "outlook.com", "pobox.com", "protonmail.ch", "protonmail.com", "tutanota.de", "tutanota.com", "tutamail.com", "tuta.io", "keemail.me", "rocketmail.com", "safe-mail.net", "wow.com", "ygm.com", "ymail.com", "zoho.com", "yandex.com", "bellsouth.net", "charter.net", "cox.net", "earthlink.net", "juno.com", "btinternet.com", "virginmedia.com", "blueyonder.co.uk", "freeserve.co.uk", "live.co.uk", "ntlworld.com", "o2.co.uk", "orange.net", "sky.com", "talktalk.co.uk", "tiscali.co.uk", "virgin.net", "wanadoo.co.uk", "bt.com", "sina.com", "sina.cn", "qq.com", "naver.com", "hanmail.net", "daum.net", "nate.com", "yahoo.co.jp", "yahoo.co.kr", "yahoo.co.id", "yahoo.co.in", "yahoo.com.sg", "yahoo.com.ph", "163.com", "yeah.net", "126.com", "21cn.com", "aliyun.com", "foxmail.com", "hotmail.fr", "live.fr", "laposte.net", "yahoo.fr", "wanadoo.fr", "orange.fr", "gmx.fr", "sfr.fr", "neuf.fr", "free.fr", "gmx.de", "hotmail.de", "live.de", "online.de", "t-online.de", "web.de", "yahoo.de", "libero.it", "virgilio.it", "hotmail.it", "aol.it", "tiscali.it", "alice.it", "live.it", "yahoo.it", "email.it", "tin.it", "poste.it", "teletu.it", "mail.ru", "rambler.ru", "yandex.ru", "ya.ru", "list.ru", "hotmail.be", "live.be", "skynet.be", "voo.be", "tvcablenet.be", "telenet.be", "hotmail.com.ar", "live.com.ar", "yahoo.com.ar", "fibertel.com.ar", "speedy.com.ar", "arnet.com.ar", "yahoo.com.mx", "live.com.mx", "hotmail.es", "hotmail.com.mx", "prodigy.net.mx", "yahoo.ca", "hotmail.ca", "bell.net", "shaw.ca", "sympatico.ca", "rogers.com", "yahoo.com.br", "hotmail.com.br", "outlook.com.br", "uol.com.br", "bol.com.br", "terra.com.br", "ig.com.br", "itelefonica.com.br", "r7.com", "zipmail.com.br", "globo.com", "globomail.com", "oi.com.br")
x = 1
rbreak = (".", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "", ".", "-", ".", "-", ".", ".", ".", ".", ".")
while x==1:
randomname1 = random.choice(names)
randomname2 = random.choice(names)
randombreak1 = random.choice(rbreak)
randombreak2 = random.choice(rbreak)
randomemail = random.choice(email)
randomword1 = random.choice(words)
randomword2 = random.choice(words)
random1 = (randomname1, randomword2)
random2 = (randomname2, randomword1)
random3 = (randombreak1, randombreak2)
print(random.choice(random1) + random.choice(random3) + random.choice(random2) + "@" + randomemail + ":" + randomname1 + " " + randomname2)[/align]
and if you want the Instagram Account Generator config:
feel free to dm me :pepegun:
tyyyyyyyyyyyyy
This post is by a banned member (thanatosss) - Unhide
24 March, 2024 - 12:57 AM
Reply
(18 May, 2020 - 02:21 AM)landal Wrote: Show MoreInstagram Account Generator and Random Email Generator
hi, Cracked.to.
I've been working on a Selenium-based Instagram Account Generator through OpenBullet to mass-produce Instagram accounts. The progress I have made seems straight forwards and I was hoping to walk Cracked.to through what I've achieved and get help figuring out what I should do next.
I will be providing the code I have been working with to anyone wanting to experiment themselves or help me along the way
MY PROGRESS
Show ContentSpoiler:
When first running the Instagram generator I was able to create 10 accounts using "Linden :)" as the full name alongside a random string of numbers and letters with an email domain added to the end. Looking something like this: [email protected]. After those accounts were made Instagram put a full stop on the program, sending Recaptcha, email verification and phone verification requests.
Afterwards, I attempted to use proxies to set the verification standards to a neutral level for each time I attempt to make an account. Sadly Instagram flags and detects open proxies, not allowing the usage of them to create accounts. The same thing goes for VPNs, Instagram will give you one creation attempt then block you out with verification requests.
To slip past the verification I made my program act in a more human-like behaviour. I added random delays between each input, more realistic emails and full names, along with Browser Action "Sendhumankeys". That had got me 15 more accounts before Instagram implemented another level of automation detection.
and that brings me to my guesses at what could be holding back my program.
MY GUESS
My best guess is that Instagram using Selenium Detection found at Stackoverflow (https://stackoverflow.com/questions/3322...7#41220267). Or Instagram is tracking mouse movements to differentiate between automation or humans. found at Instagram. (https://help.instagram.com/519522125107875) Where they say,
Quote:"Device operations: information about operations and behaviors performed on the device, such as whether a window is foregrounded or backgrounded, or mouse movements (which can help distinguish humans from bots)."
CONCLUSION
I need help figuring out what my next step is going to be with programming this Account Generator. I would take any support I could get, including people testing the config and giving me insights on how I can improve it.
CODE
this was made with python :3
Random Email Generator:
Things you'll need will be:
- a word list
- a name list
or if you want, here's mine: mega.nz
the exports of the code are in email:fullname formats, I used these formats because they were specific to the requirements for my Instagram config
Code: [align=left]
import random
import string
word_file = r"D:\randwords.txt"
words = open(word_file).read().splitlines()
name_file = r"D:\randnames.txt"
names = open(name_file).read().splitlines()
email = ("aol.com", "att.net", "comcast.net", "facebook.com", "gmail.com", "gmx.com", "googlemail.com", "google.com", "hotmail.com", "hotmail.co.uk", "mac.com", "me.com", "mail.com", "msn.com", "live.com", "sbcglobal.net", "verizon.net", "yahoo.com", "yahoo.co.uk", "email.com", "fastmail.fm", "games.com", "gmx.net", "hush.com", "hushmail.com", "icloud.com", "iname.com", "inbox.com", "lavabit.com", "love.com", "outlook.com", "pobox.com", "protonmail.ch", "protonmail.com", "tutanota.de", "tutanota.com", "tutamail.com", "tuta.io", "keemail.me", "rocketmail.com", "safe-mail.net", "wow.com", "ygm.com", "ymail.com", "zoho.com", "yandex.com", "bellsouth.net", "charter.net", "cox.net", "earthlink.net", "juno.com", "btinternet.com", "virginmedia.com", "blueyonder.co.uk", "freeserve.co.uk", "live.co.uk", "ntlworld.com", "o2.co.uk", "orange.net", "sky.com", "talktalk.co.uk", "tiscali.co.uk", "virgin.net", "wanadoo.co.uk", "bt.com", "sina.com", "sina.cn", "qq.com", "naver.com", "hanmail.net", "daum.net", "nate.com", "yahoo.co.jp", "yahoo.co.kr", "yahoo.co.id", "yahoo.co.in", "yahoo.com.sg", "yahoo.com.ph", "163.com", "yeah.net", "126.com", "21cn.com", "aliyun.com", "foxmail.com", "hotmail.fr", "live.fr", "laposte.net", "yahoo.fr", "wanadoo.fr", "orange.fr", "gmx.fr", "sfr.fr", "neuf.fr", "free.fr", "gmx.de", "hotmail.de", "live.de", "online.de", "t-online.de", "web.de", "yahoo.de", "libero.it", "virgilio.it", "hotmail.it", "aol.it", "tiscali.it", "alice.it", "live.it", "yahoo.it", "email.it", "tin.it", "poste.it", "teletu.it", "mail.ru", "rambler.ru", "yandex.ru", "ya.ru", "list.ru", "hotmail.be", "live.be", "skynet.be", "voo.be", "tvcablenet.be", "telenet.be", "hotmail.com.ar", "live.com.ar", "yahoo.com.ar", "fibertel.com.ar", "speedy.com.ar", "arnet.com.ar", "yahoo.com.mx", "live.com.mx", "hotmail.es", "hotmail.com.mx", "prodigy.net.mx", "yahoo.ca", "hotmail.ca", "bell.net", "shaw.ca", "sympatico.ca", "rogers.com", "yahoo.com.br", "hotmail.com.br", "outlook.com.br", "uol.com.br", "bol.com.br", "terra.com.br", "ig.com.br", "itelefonica.com.br", "r7.com", "zipmail.com.br", "globo.com", "globomail.com", "oi.com.br")
x = 1
rbreak = (".", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "", ".", "-", ".", "-", ".", ".", ".", ".", ".")
while x==1:
randomname1 = random.choice(names)
randomname2 = random.choice(names)
randombreak1 = random.choice(rbreak)
randombreak2 = random.choice(rbreak)
randomemail = random.choice(email)
randomword1 = random.choice(words)
randomword2 = random.choice(words)
random1 = (randomname1, randomword2)
random2 = (randomname2, randomword1)
random3 = (randombreak1, randombreak2)
print(random.choice(random1) + random.choice(random3) + random.choice(random2) + "@" + randomemail + ":" + randomname1 + " " + randomname2)[/align]
and if you want the Instagram Account Generator config:
feel free to dm me :pepegun:
hey, you can use undetected-chromedriver so instagram will not be able to detect your selenium. I can help you with your script. dm me
This post is by a banned member (a7medsk20) - Unhide
25 March, 2024 - 01:00 AM
Reply
This post is by a banned member (Linu3213) - Unhide
26 March, 2024 - 11:26 PM
Reply
This post is by a banned member (N0Nam4) - Unhide
29 April, 2024 - 11:14 AM
Reply
This post is by a banned member (Kaskoo599) - Unhide
14 August, 2024 - 11:33 PM
Reply
(18 May, 2020 - 02:21 AM)landal Wrote: Show MoreInstagram Account Generator and Random Email Generator
hi, Cracked.to.
I've been working on a Selenium-based Instagram Account Generator through OpenBullet to mass-produce Instagram accounts. The progress I have made seems straight forwards and I was hoping to walk Cracked.to through what I've achieved and get help figuring out what I should do next.
I will be providing the code I have been working with to anyone wanting to experiment themselves or help me along the way
MY PROGRESSjhk jhk
Show ContentSpoiler:
When first running the Instagram generator I was able to create 10 accounts using "Linden :)" as the full name alongside a random string of numbers and letters with an email domain added to the end. Looking something like this: [email protected]. After those accounts were made Instagram put a full stop on the program, sending Recaptcha, email verification and phone verification requests.
Afterwards, I attempted to use proxies to set the verification standards to a neutral level for each time I attempt to make an account. Sadly Instagram flags and detects open proxies, not allowing the usage of them to create accounts. The same thing goes for VPNs, Instagram will give you one creation attempt then block you out with verification requests.
To slip past the verification I made my program act in a more human-like behaviour. I added random delays between each input, more realistic emails and full names, along with Browser Action "Sendhumankeys". That had got me 15 more accounts before Instagram implemented another level of automation detection.
and that brings me to my guesses at what could be holding back my program.
MY GUESS
My best guess is that Instagram using Selenium Detection found at Stackoverflow (https://stackoverflow.com/questions/3322...7#41220267). Or Instagram is tracking mouse movements to differentiate between automation or humans. found at Instagram. (https://help.instagram.com/519522125107875) Where they say,
Quote:"Device operations: information about operations and behaviors performed on the device, such as whether a window is foregrounded or backgrounded, or mouse movements (which can help distinguish humans from bots)."
CONCLUSION
I need help figuring out what my next step is going to be with programming this Account Generator. I would take any support I could get, including people testing the config and giving me insights on how I can improve it.
CODE
this was made with python :3
Random Email Generator:
Things you'll need will be:
- a word list
- a name list
or if you want, here's mine: mega.nz
the exports of the code are in email:fullname formats, I used these formats because they were specific to the requirements for my Instagram config
Code: [align=left]
import random
import string
word_file = r"D:\randwords.txt"
words = open(word_file).read().splitlines()
name_file = r"D:\randnames.txt"
names = open(name_file).read().splitlines()
email = ("aol.com", "att.net", "comcast.net", "facebook.com", "gmail.com", "gmx.com", "googlemail.com", "google.com", "hotmail.com", "hotmail.co.uk", "mac.com", "me.com", "mail.com", "msn.com", "live.com", "sbcglobal.net", "verizon.net", "yahoo.com", "yahoo.co.uk", "email.com", "fastmail.fm", "games.com", "gmx.net", "hush.com", "hushmail.com", "icloud.com", "iname.com", "inbox.com", "lavabit.com", "love.com", "outlook.com", "pobox.com", "protonmail.ch", "protonmail.com", "tutanota.de", "tutanota.com", "tutamail.com", "tuta.io", "keemail.me", "rocketmail.com", "safe-mail.net", "wow.com", "ygm.com", "ymail.com", "zoho.com", "yandex.com", "bellsouth.net", "charter.net", "cox.net", "earthlink.net", "juno.com", "btinternet.com", "virginmedia.com", "blueyonder.co.uk", "freeserve.co.uk", "live.co.uk", "ntlworld.com", "o2.co.uk", "orange.net", "sky.com", "talktalk.co.uk", "tiscali.co.uk", "virgin.net", "wanadoo.co.uk", "bt.com", "sina.com", "sina.cn", "qq.com", "naver.com", "hanmail.net", "daum.net", "nate.com", "yahoo.co.jp", "yahoo.co.kr", "yahoo.co.id", "yahoo.co.in", "yahoo.com.sg", "yahoo.com.ph", "163.com", "yeah.net", "126.com", "21cn.com", "aliyun.com", "foxmail.com", "hotmail.fr", "live.fr", "laposte.net", "yahoo.fr", "wanadoo.fr", "orange.fr", "gmx.fr", "sfr.fr", "neuf.fr", "free.fr", "gmx.de", "hotmail.de", "live.de", "online.de", "t-online.de", "web.de", "yahoo.de", "libero.it", "virgilio.it", "hotmail.it", "aol.it", "tiscali.it", "alice.it", "live.it", "yahoo.it", "email.it", "tin.it", "poste.it", "teletu.it", "mail.ru", "rambler.ru", "yandex.ru", "ya.ru", "list.ru", "hotmail.be", "live.be", "skynet.be", "voo.be", "tvcablenet.be", "telenet.be", "hotmail.com.ar", "live.com.ar", "yahoo.com.ar", "fibertel.com.ar", "speedy.com.ar", "arnet.com.ar", "yahoo.com.mx", "live.com.mx", "hotmail.es", "hotmail.com.mx", "prodigy.net.mx", "yahoo.ca", "hotmail.ca", "bell.net", "shaw.ca", "sympatico.ca", "rogers.com", "yahoo.com.br", "hotmail.com.br", "outlook.com.br", "uol.com.br", "bol.com.br", "terra.com.br", "ig.com.br", "itelefonica.com.br", "r7.com", "zipmail.com.br", "globo.com", "globomail.com", "oi.com.br")
x = 1
rbreak = (".", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "", ".", "-", ".", "-", ".", ".", ".", ".", ".")
while x==1:
randomname1 = random.choice(names)
randomname2 = random.choice(names)
randombreak1 = random.choice(rbreak)
randombreak2 = random.choice(rbreak)
randomemail = random.choice(email)
randomword1 = random.choice(words)
randomword2 = random.choice(words)
random1 = (randomname1, randomword2)
random2 = (randomname2, randomword1)
random3 = (randombreak1, randombreak2)
print(random.choice(random1) + random.choice(random3) + random.choice(random2) + "@" + randomemail + ":" + randomname1 + " " + randomname2)[/align]
and if you want the Instagram Account Generator config:
feel free to dm me :pepegun:
hj kjkh hjk jkhjk h k
This post is by a banned member (DaviKalebe) - Unhide
08 September, 2024 - 02:33 PM
Reply
|