• 21-01-2023, 02:05:15
    #1
    selamlar.

    nodejs ile socks4 proxy kullanarak http2 istegi atıcak bir scripte ihtiyacım var. yapabilecek arkadaşlar pm atarsa sevinirim
  • 21-01-2023, 02:08:05
    #2
    const http2 = require('http2');
    const SocksProxyAgent = require('socks-proxy-agent');

    const proxy = 'socks4://10.10.10.10:1080'; // SOCKS4 proxy
    const agent = new SocksProxyAgent(proxy);

    const client = http2.connect('https://example.com', { agent });

    client.on('error', (err) => console.error(err));

    const req = client.request({ 'ath': '/' });

    req.on('response', (headers) => {
    console.log(headers);
    });

    req.end();
  • 21-01-2023, 02:12:29
    #3
    Elimde hazır var ücretli bir şekilde satabilirim pm iletmen yeterli fakat socks4 yerine http kullanıyorum http isteği yapılacak ise bu şekilde olması daha sağlıklı

    recaptcha , hcaptcha gibi etkenleri solve edebilir