Jump to content
UBot Underground

[Buy] Transfer C# Http Post To Ubot Http Post


Recommended Posts

I am looking for someone to transfer 5 websites HTTP Post from C# to ubot. I know that is not hard because i have already transferred 4 others.

I just need the post scripts without Threads, Logs

Tell me price and days. Thanks.

Site example

    string str = "";
    string str2 = "";
    string str3 = "";
    str = str3 = "http://www.finishline.com/store/checkout/cart.jsp";
    str2 = this.Req.GetRequest(str, null, null, true);
    str = "http://www.finishline.com/store/checkout/cart.jsp?_DARGS=/store/checkout/fragments/cart_body.jsp.2";
    Dictionary<string, string> hiddenFormFieldsDictionary = HttpExtensions.GetHiddenFormFieldsDictionary(str2, "form[name=cartForm]");
    CQ list = CSQueryExtensions.CQSelect(str2, "#cartContainer .quantitySelect");
    if (!list.IsAny<IDomObject>())
    {
        throw new Exception("Cart is empty.");
    }
    foreach (IDomObject obj2 in list)
    {
        hiddenFormFieldsDictionary[obj2.GetAttribute("name")] = "1";
    }
    hiddenFormFieldsDictionary["Checkout"] = "Checkout";
    str2 = this.Req.PostRequest(str, hiddenFormFieldsDictionary, str3, "application/x-www-form-urlencoded", new string[] { "HTTPS: 1" }, true);

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...