Tutorial: How to make an Account Generator?

TheLoneWolf96

Newbie
Joined
Oct 12, 2015
Messages
3
Reaction score
0
Hello, have anyone or can anyone make a Tutorial in C# ?
I dont have find anything ...
Sorry for my bad english..

Edit: I mean Creator not Generator :P
 
Last edited:
Hi,
you should look for keygenerators made in visual basic net. It is much easier than c++. Google is full with tutorials for this.

Greeting
- Roxxer
 
Hy, thanks but i make an error..
I mean a tutorial for an Account Creator not Generator and that C++ is hard i know it ^^
A Tutorial in C# or VB would be nice
 
You're not really explaining anything, but the easiest way would be to find an email-server with an API that allows you to access it through code, this way you can scan the emails and activate any accounts through links provided on where-ever you want to create an account. If it's a website that you're going to be registering to, just register once using something like Wireshark and figure out the post-data being sent to the server, and what address.

Then create a program to send requests to that address while pushing the required post-data. (With random values of-course). Store the passwords to an email-map, and whenever you get an email (and verify it) write the email/username/password down into a file.

I know it's not a tutorial, but if you take the time to learn a programming language (Probably around two or three weeks of hard dedication) you will be able to create one yourself.
 
Hy AppCentral,
Thanks for your Answer :)
No Problem but it better than when nothing write and help...i hate it -_-
But which Language I must have?
I learn at the moment: VB, C, and C#, HTML i have do only the Basic with CSS
And can you say how or / and where I can learn better?
Lots of People say "Learn by doing" but where and how ._.
 
Watch videos on the Internet, programmers are blogs, shoot videos for youtube. They learned how to scratch and serious projects. Do similar and you will learn by doing
 
You have to realize that generating accounts involves nothing more than sending HTTP requests. So is your question how to do HTTP requests? You can find thousand of example how to do that on google. Account registration isn't exactly rocket science and the procedure is the same in all programming languages.
 
Hello, have anyone or can anyone make a Tutorial in C# ?
I dont have find anything ...
Sorry for my bad english..

Edit: I mean Creator not Generator :P

You really can not find anything on the Internet? In what language do you need assistance?
 
use C# for now as with C you have to worry about memory handling, pointers etc and thats hard for beginners.
VB sucks so don't even start with it if you are serious about programming ;)

first start with how to create GET/POST requests:
https://msdn.microsoft.com/en-us/library/debx8sh9(v=vs.110).aspx
https://msdn.microsoft.com/en-us/library/456dfw4f(v=vs.110).aspx

and then learn now multithreading works:
https://msdn.microsoft.com/en-us/library/aa645740(v=vs.71).aspx

after that you know most of what you need to know in oder to write your account creation bot already :)
 
Depends on the site you want to automate, it might be a simple case of sending the headers, or it could be a complex nightmare of trying to understand obsfucated Javascript to get the IDs - in which case using selenium will be a lot easier
 
It's really depend on the site you want to automate. Sometimes you need simple GET/POST requested but if site is full of javascript you need to emulate browser. There are some good solutions - selenium, phantomjs, watin, awesomium. Every of them has API to C#, Python etc.
 
Back
Top