using local DNS to resolve hostnames
-
Is there a way to force OpenBullet to use the local DNS when using proxies ?
-
In the URL, provide the IP directly instead of the domain name. That way the proxies will not look up their own DNS. You could see if you can manage to query the local DNS through the TCP block or you can simply use an online HTTP-based service that acts as DNS.
-
is there a page where I can learn how to use the TCP block ?
an example or a simple tutorial on how to do a get or post request with the TCP block
everything I tried seem to timeout or get me to a 400 error page
-
Nah, I did some research and found out that you cannot query the DNS through ascii-encoded commands. I will write a guide on how to do it using IronPython and will link the guide here once it's done.
-
-
I think you misunderstood me
this is an example of what I want to do
https://makandracards.com/makandra/1613-make-an-http-request-to-a-machine-but-fake-the-hostname
I can't use the ip directly, I have to pass through a hostname
-
Oh then you can simply make a custom HTTP request via TCP block like this
GET / HTTP/1.1\r\nHost: www.example.com\r\n\r\n
You need 3 blocks, TCP Connect, TCP Send (send the message above) and TCP Disconnect. Use SSL if it's an HTTPS site.
-
so this is perfectly what I need ! thank you
but can you tell me how to do a POST request ?
I have no idea how to send the params
-
I figured it out ! thank you again for your support