We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
好像nuclei的poc中包含中文时会报这个错,我把 try: self.yaml_template = binascii.unhexlify(self.yaml_template).decode() except binascii.Error: pass 改成 try: self.yaml_template = binascii.unhexlify(self.yaml_template).decode() except: pass 好像就可以
try: self.yaml_template = binascii.unhexlify(self.yaml_template).decode() except binascii.Error: pass
try: self.yaml_template = binascii.unhexlify(self.yaml_template).decode() except: pass
The text was updated successfully, but these errors were encountered:
已经在v2.0.1 版本修复,感谢 👍
v2.0.1
Sorry, something went wrong.
No branches or pull requests
好像nuclei的poc中包含中文时会报这个错,我把
try: self.yaml_template = binascii.unhexlify(self.yaml_template).decode() except binascii.Error: pass
改成
try: self.yaml_template = binascii.unhexlify(self.yaml_template).decode() except: pass
好像就可以
The text was updated successfully, but these errors were encountered: