You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2025. It is now read-only.
Came across an xshell sample that caused the LZNT1 compression to infinitely loop.
In the below code, len(tmp) was 0.
(line 85 ish)
if length >= bp:
tmp = u[-bp:]
while length >= len(tmp):
u += tmp
length -= len(tmp)
if not len(tmp): <- added in fixes the issue.
break
u += tmp[:length]
Came across an xshell sample that caused the LZNT1 compression to infinitely loop.
In the below code, len(tmp) was 0.
(line 85 ish)
Thanks.