Jump to content
UBot Underground

ibins

Members
  • Content Count

    13
  • Joined

  • Last visited

Posts posted by ibins

  1. On 4/19/2015 at 10:20 PM, Bot-Factory said:

    That thread is 1 year old... The issue was fixed a long time ago :-)

    Having the same issue at moment, 

    i have set it, nevertheless it doesn't arrive. 

    Going through a proxy, it does get sent on each of the previous and following requests, but not at this request: http upload.

    instead of the accept-language i'll get this: Accept-Charset: ISO-8859-1,utf-8;q=0.7,*; q=0.7

    Already tried many things up down, left right, add some, remove some, my current request looks like

    plugin command("HTTP post.dll", "http clear headers")
    plugin command("HTTP post.dll", "http settings headers", "Content Type", $nothing)
    plugin command("HTTP post.dll", "http set headers", "Accept", "application/json;format=camelcase")    
    plugin command("HTTP post.dll", "http set headers", "Accept-Language", "en-US,en;q=0.5")
    plugin command("HTTP post.dll", "http set headers", "Accept-Encoding", "gzip;q=0,deflate")        
    plugin command("HTTP post.dll", "http set headers", "Origin", "https://www.somesite.com")    
    plugin command("HTTP post.dll", "http settings headers", "Host", "www.somesite.com")
    plugin command("HTTP post.dll", "http set headers", "X-CSRF", #xcsrftoken)    
    plugin command("HTTP post.dll", "http set headers", "Authorization", "Bearer {#apitoken}")
    plugin command("HTTP post.dll", "http settings headers", "Content-Type", "multipart/form-data;")
    plugin command("HTTP post.dll", "http settings headers", "Content-Disposition", #content)
    set(#json,$plugin function("HTTP post.dll", "$http upload", "https://www.somesite.com/...", #not, #uplolol, "file", #ft, #ua, "https://www.somesite.com/...", #prx, #utimeout),"Local")


    which gives


    POST https://www.somesite.com HTTP/1.1
    Content-Type: multipart/form-data; boundary=---------------------------bla
    User-Agent: bla
    Referer: https://www.somesite.com
    Accept-Encoding: gzip,deflate
    Upgrade-Insecure-Requests: 1
    Authorization: Bearer bla
    Accept: application/json;format=camelcase
    Origin: https://www.somesite.com
    X-CSRF: bla.bla
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*; q=0.7
    Host: www.somesite.com
    Cookie: sid=bla
    Content-Length: 14241532


    -----------------------------bla
    Content-Disposition: form-data; name="file"; filename="C:\also_here_it_noted\the_full_path\but_i_\sent_only_the_filename\image.jpg"
    Content-Type: image/jpeg

    Will anybody remember what the solution was, after all this years? Many thanks in advance!

    cheers

  2. Hi Everyone,

     

    I am trying to "click" the accept button with http request and HTTP post.dll plugin.

    On tumblrcom there is that overlay, that appears when you have an EU IP and cleared cookies.

     

    This popup is showing only with EU IP, and blocks me from further actions.

    There appears to be some kind of javascript, which i was unable to find out how to send that http request.

     

    There exist afaik 3 same popups when using EU IP:

     

    1) when clicking Login

    zOujRFU.jpg

    ==========================

    1. goto tumblrcom

    2. click login

    3. accept popup shows

     

    2) same with signup

    zOujRFU.jpg

    ==========================

    1. goto tumblrcom

    2. click signup

    3. accept popup shows

     

    3) appears only when logged in on dashboard

    rCn6xFZ.jpg

    ==========================

    1. goto tumblrcom

    2. login, nothing shows

    3. dashboard logged in, accept popup shows

     

    I have already checked with Fiddler what is going on, but didnt find a way, it seems to complex for me, for now.

     

    Maybe anybody know how to send the right http request to "click that button"?

     

    Any help much appreciated!

     

    Many thanks in advance,

    ibins

  3. if i get it right, you are looking for

     

    increment(#charCountPos1)

     

    if not, and if you want to just add some text to a text, you could do it like

     

    set(#new,$nothing,"Global")
    set(#one,0,"Global")
    set(#rand,$rand(3,9),"Global")
    loop(#rand) {
        increment(#one)
        set(#addd,$text length(#new),"Global")
        set(#new,$insert text(#new,"{#one}|",#addd),"Global")
    }
    alert(#new)

  4. Many thanks for your reply! I found a way,
     
    instead adressing the nonexistent value, i adress the delimiter itself and remove it afterwards.
     
    clear list(%my list)
    set(#in,"list item 1,,list item 3,list item 4,list item 5,list item 6","Global")
    set(#in,$replace(#in,",","|,|"),"Global")
    add list to list(%my list,$list from text(#in,","),"Don\'t Delete","Global")
    set list position(%my list,0)
    set(#value1,$next list item(%my list)
    set(#value1,$replace(#value1,"|",""),"Global")
    set(#value2,$next list item(%my list)
    set(#value2,$replace(#value2,"|",""),"Global")
    ..
    ..
    

    Thanks again!

  5. Hello,

     

    having problem with following code:

    clear list(%my list)
    add list to list(%my list,$list from text("list item 1,,list item 3,list item 4,list item 5,list item 6",","),"Don\'t Delete","Global")
    

    which gives me:

     

    yI0B80t.png

    its declared "Don\'t Delete", but it deletes.

     

    Expected Bevavior:

    xrbGxL5.png

    How do i overcome this issue?

     

    I cannot modify input to put a "0" / "space" or something, i need to use it that way.

     

    Many Thanks in advance for your help.

  6. Hello guys,

     

    What is the 2018 way to go, when appending to 1 file at multiple threads? I have fear my bot is crashing because of that.

     

    i dont want to collect all data in a variable because when bot crashes all is gone.

     

    The recommendation from Dan can only save and not append.

    plugin command("File Management.dll""locked save to file"""""),

    i dont want to read the file first and then save it, over multiple threads, this is not practicable for me.

     

    for the tiny mce usage i did not have found any demo code yet.

     

    The other old plugin, with the lock{ function, didnt appear in the plugins.

     

    Many thanks, any help much appreciated!  :)

×
×
  • Create New...