Jump to content
UBot Underground

Aymen

Fellow UBotter
  • Content Count

    1346
  • Joined

  • Last visited

  • Days Won

    57

Posts posted by Aymen

  1. Guys, 

     

    I'm currently working on another multithreading bot in combination with http post plugin.

    And I think that issue with local variables getting overwritten still exist in 5.5.12

     

    They fixed that global variable decrement / increment issue. 

     

    But for some odd reason, I'm still getting the same local variables data in multiple threads.

     

    So the question is:

     

    1. Do local variables share data when a plugin command like:

    set(#post,$plugin function("HTTP post.dll", "$http post", "https://login.xx.com/login", "", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.83 Safari/537.1", "https://www.xx.com/", #proxy, 30),"Local")

     

    Is used?

     

    Or is there a problem with http plugin that shares the data somehow when multithreading?

     

    @Aymen:  Could you give us some more details please?

     

    Is the fix really the local dictionary, or is the "http last response?" 

    Why do you use last response in your example? Just writing the http result to the dictionary should be enough right?

     

    Dan

     

    The problem is over a year old and that is the purpose i come up with the local dictionary technique , i believe Kev is using it too in one of his plugins , if threading works great in local dictionary and not in local variables , what do you think the problem is from ? :)

    It is a known bug that the local variables values get messed up all the time , at least that is what http users struggle with , i always thought i've done something wrong untill i started to test outside Ubot !

     

    about the last response thing , there was an issue with the http functions being assigned to the local dictionary as a child command rather than the http container , sooner after i improved the code to make the http functions work per thread not per http container!

  2. Im really sure Im following up to your tutorials and I am doing this correctly.

    As I suppose the dll I downloaded it was the correct?

    Here I add you some screenshots

    http://content.screencast.com/users/r0dvan/folders/Snagit/media/373e163e-d9d0-42ba-8b82-0a6fc87d6d6c/02.07.2015-19.28.png

    http://content.screencast.com/users/r0dvan/folders/Snagit/media/bcd7f2b7-9d00-4d8e-a137-f2a8faf85aa9/02.07.2015-19.29.png

     

    And this:

    http://content.screencast.com/users/r0dvan/folders/Snagit/media/81ac360a-8949-4cc2-98f2-cb21b2028775/02.07.2015-19.30.png

     

    By the way, there is a bug when you go from Datagrid to Browser and coming back to Datagrid, everything sets to grey.

    Thats a bummer because I need to switch views.

     

     

    That is really weird , just tested the latest version and it seems to be working fine here

    http://screencast.com/t/wEt341IlH

     

    Can you send me your code ?

  3. gmail don't connect.

     

    Gmail options :

    Pop Connect : accept

    imap connect : accept

     

    http://www.ubotstudio.com/forum/public/style_images/master/attachicon.gifmail2.png

    http://www.ubotstudio.com/forum/public/style_images/master/attachicon.gifmail.png

     

    And;

     

    yahoo account login : succes

     

    create table from emails(&email)   Commant Don't working.

     

    i'll check that out first thing in the morning , and let you know !

    Regards

  4. Aymen, just sent you an email

    The latest version I received by email is the v1.0.3

    It says it includes the check:bool and :int.

    But this is not working properly, I downloaded and replaced the dll, but seems its not refreshing.

    What can I do? Did I downloaded a past version?

     

    hey RodvaN , you need to add rows for it to work , it should be the same download link

    did you added rows first

    :bool column should either have true or false as value , :int column should have an integer as value

  5. Plugin hides "in new browser" bug.

    When you use grid table and switch back to browser using "browser container switch" it will messed up the in new browser command.

     

    Here's a sample code:

    in new browser {
        navigate("http://www.google.com","Wait")
        wait(2)
    }
    wait(1)
    plugin command("DataGridUI.dll", "show datagrid", "id|col")
    wait(2)
    plugin command("DataGridUI.dll", "browser container switch", "Browser")
    wait(2)
    in new browser {
        navigate("http://www.google.com","Wait")
        wait(2)
        save to file("C:\\Users\\Kojak\\Desktop\\source.txt",$document text)
    }
    
    

    Video http://screencast.com/t/YQfgL7jgV4

     

    I will check that out!

  6. Hi Aymen,

     

    just wanted to ask if you had some time during the last 3 months to look into the things we discussed:

     

    1. Performance issue

    2. Table to database command with update option. 

     

    Thanks in advance for your help.

     

    Kindest regards

    Dan

     

    about the performance issue , can't really have it reproduced properly , what i concluded is that it can be tied to ubot itself , i won't promise you anything about this , will see how things goes !

    about new features and options i'll have a look at them when releasing the next version which will be in a week or so from now!

    • Like 1
  7. Does anyone know this answer?

    I think i worked on an update so this doesn't happen!

     

    Hi aymen,

     

    http set headers error;

     

    http://i.hizliresim.com/31ML02.png

     

    You must've used a common http header , the only things you can set in this command are uncommon http headers , common http headers are the kind of headers that exists in every http requests , what is the header you are trying to set ?

    • Like 1
  8. I dont get it Aymen i know that there is a command just for that but how do i activate it i mean i have show Ubot table into datagrid and then it asks me to separate columns???

     

    Shouldn't this datagrid read directly from Debugger where my table is ???

     

    oh , you have to specify columns and call show datagrid command for the second command to work!

     

    Regards

  9. How do i convert table results from my scraping job into datagrid??

     

    I sent aymen Pm no reply still??

     

    Hey sorry didn't notice your pm (you have to see how much PMs i get :D )

    if you mean from a ubot table to the grid , did you try the command made for that ?

    if you mean directly from scraping then that's simple , add rows to the grid as you scrape your data!

     

    Aymen;

     

    When I use table to datagrid, my show datagrid command needs to have the exact same amount of Columns as my table.

    But when I want to add a checkbox (bool) this doesn't seem to work. 

     

    plugin command("DataGridUI.dll""show datagrid""Check:bool|Email|Passwort")

    plugin command("DataGridUI.dll""table to datagrid"&table1)

     

    My table has 3 columns in that case. I also tried with two. But it's not showing anything.

    As soon as I remove :bool it works fine. 

     

    Would it be possible to ignore the bool columns and just fill the others with the data from the table?

     

    Dan

     

    If you can submit a bug report about this , i'll make sure to consider fixing it in the next release (maybe ignoring bool columns)

×
×
  • Create New...