def strip_non_ascii()

in icedid/peloader/icedid_peloader.py [0:0]


    def strip_non_ascii(byte_str: bytes) -> str:
        res = ""
        for x in byte_str:
            if 32 < x < 128:
                res += chr(x)
        return res