• Projects -
  • Rating -
  • Rating 888

Budget: 25 USD Deadline: 1 day

Hello, I am a Quantitative Software Engineer with an academic background in high-energy physics. My main specialization is the development of low-level trading infrastructure, R&D, and creating fast execution routers.
Although I focus on infrastructure in my portfolio, developing MEV strategies is intrinsically linked to reverse engineering. Therefore, conducting R&D on your target platform, deobfuscating the JS bundle, and extracting the mathematics for generating dynamic tokens to transfer into fast Python code is a clear task for me in the research phase.
I will respond briefly and directly to your requirements:

1. Experience in optimizing network requests: I developed a production MEV bot for liquidations on Arbitrum. In Web2 terms, this is a bot for automatic sniping with an e2e reaction budget of ~30-100ms (where the Internal Overhead of the engine itself was less than 1 ms, the rest being the physical network latency of public nodes).
Regarding the requirements specified in your terms of reference: I will implement a pool of hot connections with a background pulse through a reusable session manager, completely eliminating the costs of new TLS handshakes. I will solve the floating start task you described through a strict mathematical phase shift; sockets will poll the server with an ideal comb (as you mentioned). To enhance this logic, I will apply micro-jitter to the timers, which will hide the zero dispersion of intervals and protect against bans by behavioral filters of WAF for blind machine spam.

2. TLS fingerprint spoofing:
Standard SSL in Python will reveal the bot with its JA3 fingerprint. I will integrate a client based on BoringSSL (via curl_cffi or Rust). A hard configuration (GREASE signatures, the required cipher order) will make the traffic cryptographically indistinguishable from legitimate Chrome.

  • Projects -
  • Rating -
  • Rating 129

Budget: 100 USD Deadline: 2 days

Good day.

I am responding consciously: I understand that this is not about "another parser on requests + sleep," but about an isolated network engine with measurable internal overhead on Linux. The basic business logic in Python is already in place — I am ready to integrate and optimize the transport layer without breaking the existing JSON/XML assembly and authorization. NDA — okay.

1. Experience in optimizing network requests

I have worked with high-frequency and latency-sensitive scenarios on asyncio:

Connection pooling + Keep-Alive: one TCPConnector / custom pool with a limit per host, force_close=False, session reuse, control of ttl_dns_cache, connect/read timeouts separately.
Warming up the pool: a background coroutine with a legal heartbeat (HEAD/OPTIONS/light GET on the same hosts), so as not to pay TCP + TLS handshake for each shot before the "combat" window.

  • Projects 15
  • Rating 5.0
  • Rating 3 857

Budget: 25 USD Deadline: 1 day

Hello.

I am responding because I understand what is being discussed; I have been in parsing for many years and understand the nuances of socket connections (previously programmed in C++/Win API/TCP/UDP).

My last completed project involved Go parsing and monitoring of foreign classifieds (Vinted, Jofogas, Basoz, OLX) + Telegram bot.

I have reviewed the project description. I have experience in developing asynchronous services in Python (asyncio, aiohttp/httpx), working with HTTP connections, profiling latencies, and optimizing high-frequency requests.

From the description, I see several areas for analysis:
- the operation of the connection pool and Keep-Alive;

  • Projects 10
  • Rating 5.0
  • Rating 1 784

Budget: 100 USD Deadline: 1 day

Good day!

I have practical experience in developing high-load asynchronous services in Python using asyncio, aiohttp, and FastAPI, as well as optimizing network interactions, working with connection pools, and reducing internal execution delays.

I have worked on projects where response speed, effective use of the Event Loop, minimizing overhead, and stable operation under high load are critical.

I also have relevant projects in my portfolio: Freelancehunt

From the task description, I understand the main bottlenecks of the project: network delays, connection reuse, interaction with cryptographic modules, optimization of asynchronous execution, and control of internal system overheads.

  • Projects -
  • Rating -
  • Rating 655

Budget: 2000 USD Deadline: 12 days

Good day!
I understand the task. A high-performance network engine is needed for a sniping bot with strict requirements for minimal latency, bypassing WAF, and maintaining stability under load.
I specialize in such tasks — optimizing critical network paths in a competitive environment.
Answers to your questions:
Experience in optimizing network requests
I have experience creating high-load snipers and HFT-like systems. I have optimized several bots where every millisecond was critical. Main techniques: connection pooling with keep-alive, session reuse, fine-tuning TCP sockets, custom HTTP client based on aiohttp + asyncio, controlling concurrency limits, jitter + staggered requests.
How I would solve the task of replacing TLS fingerprints
I would use curl_cffi (the best option available today) or httpx + tls-client with real browser fingerprints (Chrome 124+, Edge, Firefox).
Additionally:
I generate unique JA3 / HTTP2 fingerprints for each stream

  • Projects 30
  • Rating 5.0
  • Rating 1 867

Budget: 80 USD Deadline: 4 days

Hello! I have relevant experience with similar tasks, and I can help with your project. I can quickly familiarize myself with the requirements, propose the best solution, and execute the work meticulously. I am ready to discuss the details and get started.

  • Projects 14
  • Rating 5.0
  • Rating 7 752

Budget: 200 USD Deadline: 4 days

Hello! I am the manager of FullStack developer Valentin. We specialize in high-load systems, automation, and SaaS development. Valentin has carefully reviewed your technical specifications. Here are his technical responses to your questions:

Experience in optimization: He has worked with HFT and custom parsers. He knows how to squeeze milliseconds. To maintain the "hot" pool, we will write a custom connection manager that will send lightweight dummy requests (heartbeat) in the background so that the WAF does not drop the session.

Bypassing WAF (TLS): Using raw aiohttp or requests here is pointless — JA3/JA4 fingerprints will immediately reveal the bot. We will use curl_cffi (a loop with assembly for Chrome/Firefox formatting) or build a custom SSL context through ctypes / cython if native Python process speed is important without overhead from C calls.

Non-blocking cryptography: Moving signing to ProcessPoolExecutor (as others suggest) incurs overhead on data serialization between processes (IPC), which will kill the speed of sniping. Valentin suggests implementing signing through a non-blocking loop.run_in_executor based on ThreadPoolExecutor (if the signing library releases GIL) or writing a microservice in Go/C++ purely for signature generation, communicating with the main engine via Unix Domain Sockets (UDS). This will provide minimal Internal Overhead.

Regarding the conditions: We understand the criticality of speed metrics. We are ready to sign an NDA. We will provide exact timelines and costs (approximately within your budget) immediately after you specify the target metrics for Internal Overhead in private correspondence.

  • Projects -
  • Rating -
  • Rating 321

Budget: 180 USD Deadline: 8 days

Hello! The task is hardcore and requires an understanding of I/O and networking in Linux at a low level. My main profile is backend development in Python (FastAPI, asynchronous architecture, Docker) and extensive work with Linux environments, so I am very familiar with the specifics of network optimization.

I will immediately answer your questions from the technical specifications:

1. Experience in optimizing network requests (Connection Pooling):
To maintain a pool of "hot" connections, it is advisable to use aiohttp.TCPConnector with fixed limits (limit_per_host) and active Keep-Alive. This will prevent wasting precious time on TCP/TLS handshakes during a live request.

2. TLS fingerprint spoofing to bypass WAF:
Standard modules (ssl, aiohttp, requests) will be banned due to default JA3 fingerprints. To bypass aggressive WAFs (for example, Cloudflare), I use the curl_cffi library (or tls-client). It allows simulating TLS signatures at the C library level, making requests indistinguishable from legitimate traffic from Chrome or Edge.

  • Projects 9
  • Rating 5.0
  • Rating 726

Budget: 200 USD Deadline: 3 days

Hello! Having reviewed your project, I am ready to start working on it. I can offer optimal solutions to achieve the best results.

Proposals concealed

The list does not show proposals concealed by the client or freelancer with a Plus profile, as well as proposals violating rules

Current freelance projects in the category Data Parsing

13 July
12 July