Jump to content
UBot Underground

bangali_beta

Members
  • Content Count

    133
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by bangali_beta

  1. Folks,

     

    Apart from Bootstrap (Twitter stuff), do you know of any free Mobile Responsive Design templates ?

    I got a pagination page. I need to convert that to Mobile responsive Design. Searching for a template so I can learn from it and convert my pagination page so it looks good on mobile phone browsers too as now it looks terrible as you need to scroll and the texts look too small, etc.

    Hence, need a Mobile Responsive Pagination page template.

    Also need Account Login, Account Registration Page (web forms), Account Home Page Mobile Responsive Design templates. 

    Must be in Html 5 and CSS.

     

    I am googling but no real luck.

    Any advice ?

     

    Thanks

  2. Ubotters! 

    Let us say you have a bot and I have a copy of that same bot. And, I want my one to connect to your one and transfer files or message each other like chat clients do. 

    Q1. Which port should we communicate through and which Commands and Functions to use to do this communication ?

     

    Q2. Which ports to use to send data and which ports to use to receive data ? And, which Commands and Functions to use to do this sending of data and receiving of data through specified ports ?

     

    Q3. How to see what data is getting sent through our specified ports when we are sending data ?

    And, how to see what data is getting received through our specified ports when we are receiving data ?

     

    If none of these things are possible then maybe Seth should add these new Commands and Functions onto Ubot 6 ? WHat you say fellows ? They will become handy and a whole lot of opportunities would arise when we use these Commands and Functions as we'd be able to build lots of new types of bots simply from these Commands and Functions I am looking for. Do not you think ?

     

    Ubot should have it's own protocol to send and receive data to/fro bot to bot built by Ubot. That way, we can build decentralised servers and even blockchains and DAPPs. Just think about it.

    Let Seth think about it!

    If you like my ideas then speakup so Seth can see!

     

    Cheers!

  3. Ubotees,

     

    Returning here after about 2yrs. Before was here for 6yrs nearly everyday!

     

    Which Commands and Functions to use to build a peer to peer client, like Napster, KazaA, etc. ?

    In short, I want to build peer to peer clients.

    So, whatever files I put inside my client (file host), you will be able to connect directly to my client (file host) with your client (file host) and download all my files or view them in your bot browser. 

    Likewise, whatever files you put inside your client (file host), I will be able to connect directly to your client (file host) with my client (file host) and download all your files. And others can connect to your client too.

    I want this connection to happen to each other direct and not through a medium (server) in the middle.

    So, which Commands and Functions to look into ?

    I haven't used Ubot for nearly 2.5yrs now. Downloading latest version. So not aware of all the updated features.

     

    Thanks

     

  4. Folks,

     

    I am trying to build a web bot with php and/or curl that auto fills-in html forms. If you know php or cURL then kindly respond.

     

    I need to auto submit urls one by one to my mysql db via my "Link Submission" form.
    The Link Submission form will belong to my future searchengine which I am currently coding with php for my php learning assignment.
    For simplicity's sake, let's forget my searchengine project and let's assume I have a web form on an external website and I need it filled with peoples' personal details. Say, the external website form looks like this:

        <form name = "login_form" method = "post" action="yourdomain.com/form.php" enctype = 
        "multipart/form-data"> 
        <fieldset>
        <legend>Log In</legend>
        <label>First Name: <input type="text"></label>
        <label>Surname: <input type="text"></label>        
        <input type="radio" name="sex" id="male">
        <label for="male">Male</label>
        <input type="radio" name="sex" id="female">
        <label for="female">Female</label>        
        <input type="checkbox" name="programming_laguages" 
        id="programming_laguages">
        <label for="php">Php</label>
        <input type="php" name="php" id="php">
        <label for="python">Python</label>
        <input type="python" name="python" id="python">
        <label for="country">Country:</label>
        <select name="country" id="country">
        <option value="usa">USA</option>
        <option value="uk">UK</option>
        </select>    
        <label for="address">Address:</label>
        <textarea rows="3" cols="30" name="comment" id="comment"></textarea>
        <label for="file-select">Upload:</label>
        <input type="file" name="upload" id="file-select">    
        <input type="submit" value="Submit">
        <input type="reset" value="Reset">    
        <input type="submit" value="Submit">
        </fieldset>
        </form>
    

    As you can see, the form has the following input fields: text, radio button, checkbox, dropdown, textarea, rest button and submit button.

    Now imagine I have peoples' personal details listed on an array like this:

            $first_name = array("Jack", "Jane");
            $surname = array("Smith", "Mills");
            $gender = array("Male", "Female");
            $programming_languages = array("Php", "Php");
            $country = array("USA", "USA");
            $address = array("101 Piper St, New Jersey, USA", "52 Alton Beech 
            Rd, 
            Califorinia, USA");
            $files_and_paths = array("C:\\Desktop\address.txt", "C:\\My 
            Documents\address.doc");
    

    Now, I need the php script to grab all the data from the array and submit them one by one on the form input fields and submit the form.
    In our example, the array has 2 values each and so the first person;s (eg. Jack) details must be submitted first on the first round and on the second round submit the female's (Jane) details.

    I do not know how to achieve my purpose and so kindly advise with php sample codes.

    I need to learn: 

    1. Which php and cURL functions type into text input fields;
    2. Which php and cURL functions select radio button options matching with the then array value;
    3. Which php and cURL functions select checkbox options matching with the then array value;
    4. Which php and cURL functions select dropdown options matching with the then array value;
    5. Which php and cURL functions click buttons (reset, submit, file upload);
    6. Which php and cURL functions auto upload file matching with the file name found in the file path that is listed in the then array value.

    I would appreciate any snippets of codes samples or better a code sample that teaches me how to do all this.
    I found no proper tutorial covering all these TASKS I mentioned. I need immediate attention.

     

    Thanks

  5. Thanks Jason!

     

    I had forgotten about this thread and issue! Have been trying to learn php ever since february and so have not been Ubotting. Have been Ubotting continuously 7 days/wk for 6.5yrs and then took a break now for 6 mnths. But now getting back to Ubotting on the side.

  6. Hi,

     

    Looking at this code of mine:

     

     

     
    plugin command("DatabaseCommands.dll", "connect to database", "server=\'example.com\';uid=\'username\'; pwd=\'password\'; database=\'id_database\'; port=\'3306\'; pooling=false") {
        divider
        plugin command("DatabaseCommands.dll", "query", "INSERT INTO history (Logging_Server_Dates_And_Times, Histories)
    VALUES (CURRENT_TIMESTAMP,\'{#current url}\');")
        divider
    }
     
    
  7. Ubotters,

     

    Didn't get any proper answers from php forums so trying here now as I know some of you know php.

     

    Trying to learn Php 7 as much as I can. I need your help to point me to the right direction.

    What kind of method in Php 7 is used to track urls belonging to a foreign domain ?

    I mean, you all know that searchengines track clicks to links presented by their SERPs. So, if ubotstudio.com is listed under the keywords "php forum" on Google SERP then when you click ubotstudio.com on the Google SERP then that link is bound to have Google's tracking link. In short, you'll click the Google tracking link and then get redirected to ubotstudio.com. But once you enter ubotstudio.com then the links you find on the site would not have Google's tracking links as Google has no control over the linking method inside ubotstudio.com.

    However, with anonymous web proxies the story is different. Let me show you how.

    First go to:


    and type 'loudgobs.com/blog' to anonymously browse the blog.

    Once the web proxy loads the blog, hover your mouse over the blog's links and you'll see all the links contain the web proxy's tracking links even though the blog itself does not house the web proxy's tracking links.

    Go to the blog direct and see for yourself and check it out:


    Now, view the blog via the web proxy:


    and hover your mouse over the blog links and see whether the web proxy's tracking links exist or not. I know the proxy is somehow tracking via the frame or iframe or cloaking technique but ....

     

    Q1. What php 7 technique is it using to create these tracking links so it looks as if the tracking links are hosted by the blog ? 

    I need to learn how to create these tracking links. 

     

    Q2. Which part of Php 7 do I need to learn and can you recommend some tutorial links ? 

     

    Q3. Are you aware of any video tutorials on youtube ? What keywords should I search for ?

    affiliate linking with php 7 ?

    referral linking with php 7 ?

    self replicating linking with php 7 ?

    tracking links with php 7 ?

    tracking via GET method ?

    tracking via POST method ?

    Anything else ?

     

    Tried these Keywords but no luck.

     

    Thank you for your help. Your answers would be helpful to all newbies who read your reply!

  8. you need to look for an ide that helps write php code, but there is much to learn in OOP php 7 in order to do anything such as automation framework using server side scripting.

     

     

    You will not find anything out of the box like that and better off hiring someone to build the framework for you for the backend

    otherwise can count on months of learning php 7 scripting for web scripts.

     

    the plugin of mine is for executing php code within ubot studio

     

    Even if your plugin ain't what I'm looking for, I reckon it is a great plugin to have that can execute php code. I might look into it in the future if I need to execute php in Ubot.

     

     

    @bangali

     

    have you check advanced ubot 2 plugin? the Communication command & function in particular..

     

    it's best to learn about one thing thoroughly.. just my 2 cent..

     

    No, I have not. What does it do and here is the link ?

     

    Thanks!

  9. Hi,

     

     

    This is a bot that scrapes all links from the following page that list links of WP blogs that till have their commenting open:


     

    The bot then visits to each link to verify the blogs' commenting sections are open yet.

    If it finds the form input fields (html attributes) for name, email and url then it counts the commenting section is still open and starts auto commenting and lists your link on the blog comments.

    Straight bot. 

    But the hassle occurs when the bot finds the attributes of the commenting section on a blog and Ubot unnecearily tries "converting value". I made no code for any form of conversion so don't know what on earth Ubot is trying to convert. That is one error. Another error I get is some json or boolean error which I do not understand atall! It is checking for $true or $false for nothing. I never used these $functions!

    And both these errors occur when the bot has navigated to a blog and is checking whether the name, email and url input fields are present on the page or not to determine whether the commenting section exists or not.

     

    I have attached 2 scripts. One that has DEFINES (DEFINE.ubot) so you can get an idea which DEFINE or part of the bot is yielding the error.

    The other script is without the DEFINE (No DEFINE.ubot) so you can see which particular Command is causing the problem. Best to test the DEFINE script first (DEFINE.ubot).

     



     

    post-28642-0-60211900-1485100936_thumb.png

    post-28642-0-13351700-1485100998_thumb.png

     

  10. Here is a link to be able to use php within your software

    http://www.botguru.net/ubot-studio-php-compiler-plugin/

     

    But not to make it web accessible.

    Ubot makes windows software not web based software.

     

    You could make your bot work off of a mysql database on your server and build a front end for users to use that logs there query to the database, then the software checks it periodically to process

     

    Am I correct that by using this plugin I can now write php 7 code in Ubot's script flow and w

    hen I compile the bot in Ubot then the php code would get compiled into native Ubot language/code ? If YES then that means I would have to know php. problem is, I don't know Php and struggling to learn it. Hence, the need for a php plugin so the plugin writes the php and not me.

    For example, right now, we do not know VB and so we just use visual drag and drop to build our bots and Ubot writes the VB code when we hit the compile button. Likewise, I want the plugin to write the php code when we hit the compile button. Is that what your plugin does ? If so, may we see a video example ? Better, may I forward you my bot so that you can hit the compile button (while screen recording) and turn it into a php or web version bot for us to see how your plugin works and how easy it is to use ?

    Which Ubot Commands & $Functions it converts to equivalent Php Functions etc. ?

  11. Hi,

     

    Has any Ubot developer ever thought of making a php plugin for Ubot ?

    This is where the plugin would read our Ubot code and then spit out php code. That way we can make php versions or web versions of our .exe bots. It won't be hard for you plugin experts to build it if you know php 7. You can replace the Ubot/compiled bot's UI with html UIs and so don't let that worry you or confuse you.

    You might make a lot of sales! The plugin, however, has to be able to convert every single bot we make into php or web version.

     

    I am trying to create web versions of my Ubot compiled bots but I do not know php 7 or php. Therefore, if any Ubotters here are interested in building web versions of your bots then LIKE this post as it would influence someone to build it.

    Look at it this way. A lot of people are wary to install computer softwares (.exe). If you build a web version here each user is given an account (membership) then they'd login everyday to use it. You can place ads on the member pages and earn money. Plus, you can save yourself from others sharing copies without your permission! You can one day sell your membership site due to lots of free or paid users and make money that way! Maybe $millions!

    I can think of many reasons a web version would bring Ubotters new income in a variety of ways! What-about you ?

     

    If converting all Ubot Commands & Functions to php 7 version is gonna be a nightmare then how-about the most used and important ones ? Just a handful, like 10-15 Commands and 20-30 Functions. If any developer is interested I can give a list but I guess you expert enough to realize which ones you use the most. Now, don't you ?

     

    The php 7 bot can look like this ....

     

    UIs on top frame while the browser that shows bot activity is in an iFrame. I think we are getting ideas now and getting somewhere. Correct ? I hope that is helpful to a plugin developer how to get things rolling!

    • Like 2
  12. When the proxies used are busy and so no pages get loaded. Then, when you want to drop the proxies so your ISP IP is used then how do you go about dropping the latest proxy to switch it back to your ISP IP without having to shut down Ubot or the compiled bot and then relaunching it again as that is a bothersome!

    Cheers!

  13. Hi,

     

    I think it would be best if there was a php plugin for Ubot. This is where the plugin would read our code and then spit out php code. That way we can make php versions or web versions of our .exe bots.

     

    I am trying to create a web version of my Google searcher bot. Here is how I built it. Does anyone know php here ? Can you give us all here the php 7 code to build the following bot ? It would help us learn php much faster and you'd get a post LIKE!

    On the other hand, if you'd rather not help for free then any chance you can build a plugin for not so high a price ? You might make a lot of sales! The plugin, however, has to be able to convert every single bot we make into php version.

     

     

     

    PSEUDOCODE START

    • -> NAVIGATE TO (CONSTANT): google.com
    • -> WAIT FOR SEARCH BOX HTML ATTRIBUTE TO LOAD ON PAGE
    • -> WAIT FOR SEARCH BUTTON HTML ATTRIBUTE TO LOAD ON PAGE

    • -> TYPE KEYWORDS (CONSTANT): "php 7 programming forums" ON SEARCH BOX
    • -> CLICK SEARCH BUTTON

    (LOOP WHILE NOT LIST ITEMS IN LIST "SEARCH RESULT" = 100
    START LOOP

    • -> WAIT FOR SERP LINKS TO LOAD ON PAGE
    • -> SCRAPE ALL SERP LINKS (fullhrefs) TO LIST: SEARCH RESULT
    • -> CLICK NEXT BUTTON
      END LOOP
      )

    END OF PSEUDOCODE

  14. Issue nearly solved.

    In short, Ubot suggests I use the class and title attributes to identify the video views, video likes and video unlikes numbers (data) but when you do that then it fails to find them on the page and so fails to scrape them.

     

    This time I ignored it's suggestion and used offsets instead that it started suggesting now. Working code:

     

     

     View Videos()
    define View Videos {
        divider
        set(#videos comment,$replace(#videos comment,"<KEYWORDS>",#keywords),"Global")
        set(#videos comment,$replace(#videos comment,"<PROMOTIONAL URL>",#promotional url),"Global")
        divider
        set(#current position on list_sers or videos,0,"Global")
        clear list(%channels subscribers numbers)
        clear list(%videos views numbers)
        clear list(%videos likes numbers)
        clear list(%videos dislikes numbers)
        navigate("https://www.youtube.com/watch?v=xJJ8qgK9Kvo","Wait")
        wait for element(<class="yt-subscription-button-subscriber-count-branded-horizontal yt-short-subscriber-count">,"","Appear")
        wait for element(<class="watch-view-count">,"","Appear")
        wait for element($element offset(<class="yt-uix-button-content">,14),"","Appear")
        wait for element($element offset(<class="yt-uix-button-content">,17),"","Appear")
        set(#current video channel subscribers number,$nothing,"Global")
        if($exists(<class="yt-subscription-button-subscriber-count-branded-horizontal yt-short-subscriber-count">)) {
            then {
                set(#current video channel subscribers number,$scrape attribute(<class="yt-subscription-button-subscriber-count-branded-horizontal yt-short-subscriber-count">,"innertext"),"Global")
                divider
            }
            else {
                set(#current video channel subscribers number,"N/A","Global")
                divider
            }
        }
        add item to list(%channels subscribers numbers,#current video channel subscribers number,"Don\'t Delete","Global")
        divider
        set(#current video views number,$nothing,"Global")
        if($exists(<outerhtml=w"<div class=\"watch-view-count\">*views</div>">)) {
            then {
                set(#current video views number,$scrape attribute(<outerhtml=w"<div class=\"watch-view-count\">*views</div>">,"innertext"),"Global")
                divider
            }
            else {
                set(#current video views number,"N/A","Global")
                divider
            }
        }
        add item to list(%videos views numbers,#current video views number,"Don\'t Delete","Global")
        divider
        set(#current video likes,$nothing,"Global")
        if($exists($element offset(<class="yt-uix-button-content">,14))) {
            then {
                set(#current video likes,$scrape attribute($element offset(<class="yt-uix-button-content">,14),"innertext"),"Global")
                divider
            }
            else {
                set(#current video likes,"N/A","Global")
                divider
            }
        }
        add item to list(%videos likes numbers,#current video likes,"Don\'t Delete","Global")
        divider
        set(#current video dislikes,$nothing,"Global")
        if($exists($element offset(<class="yt-uix-button-content">,17))) {
            then {
                set(#current video dislikes,$scrape attribute($element offset(<class="yt-uix-button-content">,17),"innertext"),"Global")
                divider
            }
            else {
                set(#current video dislikes,"N/A","Global")
                divider
            }
        }
        add item to list(%videos dislikes numbers,#current video dislikes,"Don\'t Delete","Global")
        divider
    }

×
×
  • Create New...