Jump to content
UBot Underground

Aymen

Fellow UBotter
  • Content Count

    1346
  • Joined

  • Last visited

  • Days Won

    57

Posts posted by Aymen

  1. Aymen, Did you remove the "Clear Cookies" command? I am using that not just for http requests.

    "Download File" is missing as well. It broke the bot i am currently working on.

     

    For the Clear Cookies i may deleted it by mistake , i'll try to release a revised version soon , for the Download File command it was under discontinued commands so use http file download command instead!

    I did say before to move away from the discontinued commands because they will be deleted in future versions !

     

     

     

    aymen, please help me with the proxy questions

    first: when i set proxy credentials , and change ip in ubot

    do i still need to set proxy in http get/post

    if i need to set proxy in http get/post, the format should be    ip:port:user:password?

     

    second:

    when i deserialize cookies,   how can i make it work with private proxy?

     

     

    First the http post plugin takes http proxies only , second browser and http plugin are separate so setting proxies details in the browse won't change proxies details in the http post plugin , you will need to set the proxies details in the proxy input , and yes the format is ip:port:user:password !

     

    Deserializing cookies have nothing to do with proxies , just set your proxies like you usually do!

  2. Http Post Plugin Update 2.5.2 Log :

    -Removed container mode - plugin should work without the container (command still exists so you can update your current projects , but will be removed in the next version)
    -Fixed cookies duplication issue
    -Fixed cookies sometimes trimming second '=' in the cookie string
    -Added command http clear objects (used to collect used objects in threads to reduce memory usage , should be called just before closing a thread)
    -Some minor fixes and improvements

    PS : make sure to run a fair amount of tests on this version before deploying in your current projects , I've done my tests but there may be few problems i left behind!

  3. Aymen,

     

    how does that database lock feature work exactly? Will it retry read and write operations when the DB is locked from another thread? Or will it return an error?

    Does it support read and write?

     

    How many threads have you tested it with?

     

    Kindest regards

    Dan

     

    locking in .NET means multiple threads will have access at certain object once at a time!

  4. Test Results:

     

    Test with Plugin Version: 1.3.5.0

    Same results with Outlook.com / Hotmail

     

    POP Test with Gmail (SSL via 995)

     

    plugin command("emailplugin.dll""pop container""pop.gmail.com", 995, "xxx@gmail.com""xxx""yes""""") {

    WORKING :  alert($plugin function("emailplugin.dll""$pop test connection"))

    WORKING :  alert($plugin function("emailplugin.dll""$pop total messages"))

    NOT WORKING :  plugin command("emailplugin.dll""pop emails to table"&test2)

    NOT WORKING :  set(#downemail1$plugin function("emailplugin.dll""$pop download emails"), "Global")

    NOT WORKING :  set(#downemail2$plugin function("emailplugin.dll""$pop download filter""Email"""), "Global")

    }

     

    IMAPTest with Gmail (SSL via 993)

    plugin command("emailplugin.dll""imap container""imap.gmail.com", 993, "xxx@gmail.com""xxx""yes""""") {

    WORKING : alert($plugin function("emailplugin.dll""$imap test connection"))

    WORKING : alert($plugin function("emailplugin.dll""$imap mailbox list"))

    NOT WORKING :         plugin command("emailplugin.dll""Imap emails to table""Inbox"&test)

    WORKING :  set(#downemail1$plugin function("emailplugin.dll""$imap download filter""Inbox""ALL""Subject"""), "Global")

    WORKING :  set(#downemail2$plugin function("emailplugin.dll""$imap download emails""Inbox""ALL"), "Global")

    }

     

     

     

     

     

    Old Plugin Results (1.3.4.0)

    POP = All 5 Commands are working fine!

    IMAP = Same result.  Imap emails to table  still NOT working

     

     

    Thanks in advance for your help Aymen.

     

    Kindest regards

    Dan

     

    for the POP part , here is my test results !

    I'm not getting errors!

    http://screencast.com/t/k8Emo9Sg

     

    For the imap part it seems that you are right , it seems there are bugs in the imap to table!

  5. Someone here who tested this as well? Is this problem happening for you as well?

     

    How do you use the plugin to login to sites with multithreading successfully?

     

    Dan

     

    Indeed i found issues with the http container

    A version will be out soon where you won't have to use the http container any more!

     

    Regards,

    • Like 1
  6. HTTP Container Issue still exists with 2.5.1

     

    I wrote a very simple script to show you the error.

     

    I'm using your save to file method to store data.

    No proxies needed in this example. It's only download some stuff from a website via http get. 

     

    But I'm using an additional plugin in this example (threads counter) because local variables do not work for threading control. 

     

    I'm not sure if that plugin could cause problems with http container.

    BUT it's not used with the http container. 

     

    I hope this helps with testing.

     

    Here's a link to the threads control plugin (it's free):

    http://www.ubotstudio.com/forum/index.php?/topic/15441-free-plugin-threads-counter-ubot-v4-threading-fixed/

     

     

    Just in case you want to try out my example.

     

    Kindest regards

    Dan

     

    Ok will check that out Dan,

    • Like 1
×
×
  • Create New...