TABLE OF CONTENTS
- Main usage and tips
- Configuration examples
- Additional parameters
KinanCity-core main class accepts configuration from :
- a set of Command Line parameters given at runtime
- a config.properties file you can create and customize from config.example.properties
Note : A usage help is shown if called without any parameters or an invalid set of parameters.
About Captchas
KinanCity needs to solve captchas. It currently uses 2captcha which requires an apiKey that must be given each time or saved in the config file. If you want to help, please use our referral link : http://2captcha.com/?from=2219901
Running in command line
The examples below only give the arguments that will follow the launch command : java -jar KinanCity-core-<version>.jar
or start.sh
for unix and start.bat
for windows
Elements written between angle brackets (< >) are example values. Remove the brackets and use your own value.
For all these examples, the usernames and password must follow theses rules :
- username : between 6 and 16 characters with no spaces
- password : with lower and uppercase letters, numbers and at least a symbol
-m <[email protected]> -f <aa***bb> -p <Passw0rd!> -c 20
will create 20 accounts using the pattern given replacing the stars by a incremental number, giving usernames from aa001bb
to aa020bb
with matching + trick emails email+aa***[email protected]
-s 123
or -startnum 123
will make the sequence start at 123 instead of 0.
-a pathTo/accounts.csv
will create 1 account per line the the csv file.
Countries and birthdates can be customised when using a CSV file, as long as you include the correct header columns. Columns can be any order, but the header row must be the first line and start with #
.
dob
should be in the format YYYY-MM-DD
, and country
is the two letter country code. For example:
#username;password;email;dob;country
jill141235;fhJ3%hfsd;[email protected];1982-12-25;GB
jill141236;fhJ3%hfsd;[email protected];1992-04-19;GB
jill141237;fhJ3%hfsd;[email protected];1987-10-03;GB
-u <username> -m <[email protected]> -p <password>
will create 1 account with given parameters.
-ck <captchaKey>
or-captchaKey <captchaKey>
to give a specific apiKey add-px [proxy1,proxy2,...]
or-proxies [proxy1,proxy2,...]
to use multiple proxies.
Or set them in the config file asproxies=
anonymous proxy format isip:port
like127.0.0.1:80
proxy with auth format islogin:pass@ip:port
likeroot:[email protected]:80
-t <12>
or-thread <12>
to change the number of thread to 12 (default 5)-npc
or-noProxyCheck
will skip proxy check step at startup-nl
or-noLimit
will remove the policy that limits to 5 accounts per IP per 10 minutes