fancy45daddy

Results 13 comments of fancy45daddy

I try in wget ``` wget https://httpbin.org/ip -O - ``` sudo ecapture tls output: ``` ET /ip HTTP/1.1 Host: httpbin.org Accept: */* Accept-Encoding: identity Connection: Keep-Alive User-Agent: Wget/1.21.2 tls_2024/02/08 15:33:59...

the outpt of ldd `which curl`|grep -E "libssl|nspr|gnutls" is ``` libssl.so.3 => /lib/x86_64-linux-gnu/libssl.so.3 (0x00007f989a2c7000) libgnutls.so.30 => /lib/x86_64-linux-gnu/libgnutls.so.30 (0x00007f989994c000) ``` You means I need to change [ecapture/user/event/event_gnutls.go](https://github.com/gojue/ecapture/blob/d579a6534158726aa5c08069cc629973c1690206/user/event/event_gnutls.go#L103) Line 103 and compile...

OK, the minimal test is I want to get the final URL after all the redirect https://bit.ly/48b82fP the first redirect url is https://l.facebook.com/l.php?u=https://f.theloadedbaze.com/%3Ffbclid%3DIwAR09e4iW8r6DAGuJbtEfepgIwLKm1zsIcavDGWT7gbFqyX4E56N7fL9pQNQ&h=AT1dnnHhh3K5JfViDpurjF0I833b7Fs5ukXQIDMNju_dSkagEbhuGB1zjjrFKuOZF2k6IU9MSTTwz0FlSoW761RP7xoRXBay0mUmD5bJYggSXdVlLwb4vOVlNXcM3oRnYMlwr_sh4RQ the first redirect url will redirect to...

what reproducible code example you want? I test the case both node-fetch curl and python aiohttp can go to the last redirect url but undici just hang at the first...

Thank you, I do not have to use asyncssh tunnel. I just want to know how to finish my job in the framework in asyncssh. You said that: ``` Since...

I try to run the example as you shown: ``` import asyncio, asyncssh async def main(): async with asyncssh.connect('', username='u180599', known_hosts=None, proxy_command='ssh -oStrictHostKeyChecking=no -T [email protected]') as conn: result = await...

I apply the intel cloud in https://devcloud.intel.com/oneapi/home, maybe you can apply an account on that to test the ssh connection environment.

thank you the proxy_command finally work. now i want to know whether there are other options in asyncssh can do the same job without explicity call ssh command like ```ssh...

Now I want to use asyncssh forward_socks with tls_client ``` import asyncio, asyncssh, tls_client class SSHTunnel: async def create_connection(self, protocol_factory, _remote_host, _remote_port): conn = await asyncssh.connect('ssh.devcloud.intel.com', username='guest') return await conn.create_session(protocol_factory,...

for nodejs, I run LD_DEBUG=libs node and then ``` await globalThis.fetch('https://httpbin.org/ip').then(_ => _.json()) ``` ``` find library=libnss_mdns4_minimal.so.2 [0]; searching 225365: search cache=/etc/ld.so.cache 225365: trying file=/lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2 225365: 225365: 225365: calling init:...