byehack

Results 46 comments of byehack

@coder2020official opened https://github.com/eternnoir/pyTelegramBotAPI/pull/1742

@Badiboy @coder2020official I think by #1706 we can deprecate middleware functions, and remove it in next major version. You can open a draft PR to start deprecating middleware part. if...

```python while True: pass ``` also this is not work. without inside function or if-else

> Changing this requires changes to the bootloader. Maybe you want to provide a pull-request? you should support a bootloader to run from memory instead in tempfolder with `_MEIXXXX` name....

> As a temporary fix the following commit should help [rmaksimov@8a31de6](https://github.com/rmaksimov/impacket/commit/8a31de6563fbfded1f53f81d10cdb3736d31c2ec) i fixed before, i didn't send pull request bcz i think my solution is not py2 compatible, btw i...

for temporary workaround you can call `__aenter__` directly: ```py import asyncio import aiofiles async def test(): f = await aiofiles.open('filename.txt', mode='w').__aenter__() try: await f.write('123') # Now works finally: f.close() asyncio.run(test())...

Can dest server separate these junk fragments from valid ones?

> Yes, they will be dropped if these fragments are invalid in any sort of way like the wrong checksum Great, needs to be tested, maybe GFW is also drop...

Tested now. it seems junk fragments also avoid packet to be complete, it prevents next fragments to be accepted by server: `upstream: ConnectionAbortedError(10053, 'An established connection was aborted by the...

> https://github.com/ValdikSS/GoodbyeDPI/blob/master/src/fakepackets.c it seems that using full packet junks. please check [here](https://github.com/byehack/gfw_resist_tls_proxy/compare/NoClass...byehack:gfw_resist_tls_proxy:junk) if you want test junked `fragments`.