Register

BlackHatProTools :: The Best Private Black Hat SEO Forum - Premium SEO Tools, SEO Tutorials, E-Commerce Forum, Best CPA Niches, Making Money Online Methods, Backlinks, Affiliate Marketing, Dropshipping & Elite Proxies!

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.


BHPT VIP



Money Robot Submitter

Results 1 to 8 of 8
  1. #1
    βaZuReX ELITE TEAM



     REPUTATION
    29074

    Join Date
    Mar 2013
    Posts
    2,713

    [GET] UniBot 1.4 - A Complete Walkthrough





    What is UniBot?


    - UniBot is an unique program that is used for quick and easy creation of online bots, without knowledge of any programming language and without any torment from designing GUI.



    For what is it actually used?
    - You can create whatever thing comes to your mind, but most of it are some simple bots on which you will substantially lose time creating it in some IDE.


    Does that mean I can create any type of bot?
    - Yes, if you are skilled enough. You can create for example bots for voting or commenting, or you can make some bot that will rip out specific content from pages on some site, etc.


    I have opened the program and nothing seems to be clear to me.
    - That's why I decided to make this tutorial because interface of the program looks complicated, but once you begin to understand everything that I have presented in the following, it should be much clearer (at least I hope so).


    So, let's start...


    --- User interface ---


    As you have seen if you've already downloaded and run the program, the interface may seem a little hard to understand, but don't be afraid. The following picture should cover most of the things that you'll need to know:

    index - each index contains of one HTTP request (GET or POST) or solving logical statements (If-Then)
    strings - that is data which is gathered before or after the execution of the request, depending on where the string is actually used (on this topic I'll write most because it's very important to know)
    If clauses - a place to test strings if they meet certain conditions, and on that basis to decide what next to do (ie. which is next index or to stop the execution of the process)
    results - a place where the string results are shown (if that is enabled in their options)


    --- Indexes ---


    Like I said, indexes must contain at least one request or logical statement for solving. We'll focus on the first.
    As you know, the definition of each Internet bot is to assemble and send a specific HTTP requests, in order to achieve a specific goal. So in this program there are indexes, that present a separate templates of certain requests by which program is headed. As can be seen, each index can have a name for easier orientation.
    To complete the formation of an HTTP request, there are two important items: POST data and additional headers, which are starting to appear mostly from the second request by gathering the results of the strings. Don't be confused because I only mention HTTP requests - HTTPS is supported, too.


    --- Strings ---


    This is the key point of the program, so you should pay special attention in order to learn to make bots after finishing this.


    We'll begin with the facts:
    - strings usually occur after execution of the first request
    - each string should contain at least one command
    - command that determines what will be the result must be valid and in accordance with the request that was previously sent
    - most of the strings are essential for the continuation of the process
    - they're executed depending on where they are used - before or after sending request
    - their usage is %name% (where "name" is the name of the string)
    - the string will not be executed if it isn't public and if there is no place in the index where it is used


    If you understand this then we go into analysis of a string that contains one command:

    PHP Code:
    'Hey!'+rpl('Hello, world!','world','Miki'
    Now let's analyze its parts:


    'Hey!' - everything that is under normal apostrophe represents a constant, and this constant is located at the beginning of the string so that will be the first thing printed into it


    + - character for merging command with constant, or with another command


    rpl('Hello, world!','world','Miki') - it can be assumed that this is the command for replacing specific text, so in this case in the text "Hello, world!" it replaces the "world" with "Miki"


    The overall result would be:

    Code:
    Hey!Hello, Miki!
    These are actually some of the most basic things you need to know if you want to go into the world of programming, but I wouldn't call this real programming because you must know a lot more than working with strings. Anyway, moving on...


    If you haven't heard of regular expressions, then you should first look at them because they are very important for the formation of the string result. I will not talk about that, because you have a lot of examples and explanations all over the Internet.


    The basic command for executing them (which looks like previous) is as follows:

    PHP Code:
    rg(source,regex,replacement
    Example:

    PHP Code:
    rg('Hey!Hello, Miki!',', (.*?)!','$1'
    Result:

    Code:
    Miki
    Independent commands:
    These are commands that are processed even if they're located in the constants ie. under apostrophes.


    First and most important command is: [src]
    In its place there will be a complete page source (after completing request of course), with response headers at the beginning.


    Second important command is: [nl]
    Considering that the commands and the constants are written only in one line, I had to find a way to print the constants in multiple lines, so in place of this command a new line separator will be printed.


    Third: [rnd]
    In its place will be put random generated characters (upper and/or lower case letters, numbers and symbols), or a number from a given range.
    To determine the range of characters that will be included, between the last letter and ] you have to add some of these letters:
    U - since the default setting is to include only lowercase letters, this command specifies that only uppercase letters are considered
    M - mixed-case: mixed uppercase and lowercase letters
    L - includes only letters
    D - includes only numbers
    S - includes only symbols
    The last three letters that define a range of characters can be combined, so we have the following example to generate random email addresses:


    PHP Code:
    '[rndLD]@gmail.com' 
    Result would be:


    Code:
    6g4fog9bdl1fajn@gmail.com
    As you can see, there is a default number of characters to be printed, and it's 15. To change this, again at the end we add number of characters that we want to be printed:


    PHP Code:
    '[rndLD8]@gmail.com' 
    Result:


    Code:
    q6pxd1hp@gmail.com
    As I mentioned above, there is another thing about this command - and that is to generate a random number from the specified range. Its usage is very simple:

    PHP Code:
    '[rnd5-10]' 
    Obviously, this will generate some number between 5 and 10.


    Fourth: [inp]
    In the place of this command will be the user input, which usage is equivalent to the command above (except the U and M letters that are unnecessary in this case), so I will not say anything more about this.


    String options:
    After defining the string, the button next to it ("...") will be enabled which represent the options for that string. Click on it to get the following little window, where we choose which options will be used:



    Crucial - it is important for the continuation of the process
    Public - it is available in the other indexes for modification and usage
    Array - after processing the string, if more than one result occurs (when using regex or input), this option applies the template to each of them separately (by making sub-threads), but if the option is disabled then only the first result is used
    Output - this is the option that will show the string results in the main window


    DOWNLOAD LINKS & INSTALLATION :

    ** Exclusive VIP MEMBERS Content: Reply to see the content **

    Click here to become VIP Member to download or access it!

    ☆ βaZuReX ELITE TEAM ☆



    Sharing Vintage & No-Longer For Sale Tools

  2. #2
    V.I.P Premium Member


     REPUTATION
    30

    Join Date
    Aug 2015
    Posts
    144

    dankeeeeeeeeeeeeeeeeeeee

  3. #3
    V.I.P Premium Member


     REPUTATION
    1411

    Join Date
    Jul 2018
    Posts
    744

    Thank for share

  4. #4
    V.I.P Premium Member


     REPUTATION
    20

    Join Date
    Oct 2018
    Posts
    1,385

    Thank you.

  5. #5
    V.I.P Premium Member


     REPUTATION
    30

    Join Date
    Apr 2013
    Posts
    1,672

    thankssssssssssss

  6. #6
    V.I.P Premium Member


     REPUTATION
    5

    Join Date
    Mar 2020
    Posts
    864

    thanks for share

  7. #7
    V.I.P Premium Member


     REPUTATION
    5

    Join Date
    Jul 2018
    Location
    GB
    Posts
    577

    tanks for it

  8. #8
    V.I.P Premium Member


     REPUTATION
    5

    Join Date
    Jul 2018
    Location
    GB
    Posts
    577

    tank you very mux for sharing

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Back to Top