diff options
author | microsvuln <55649192+Microsvuln@users.noreply.github.com> | 2021-04-03 15:47:22 +0400 |
---|---|---|
committer | microsvuln <55649192+Microsvuln@users.noreply.github.com> | 2021-04-03 15:47:22 +0400 |
commit | 70e975704465672f49273da9f4a8f7e56f745e20 (patch) | |
tree | d642f907d755c791c51d96c3495a5806ef4bc34b /utils/autodict_ql/strcmp-strings.py | |
parent | 6c88b6b362ddc06effd8d99c32375ab34028665c (diff) | |
download | afl++-70e975704465672f49273da9f4a8f7e56f745e20.tar.gz |
new commit - change strings
new commit - change strings
Diffstat (limited to 'utils/autodict_ql/strcmp-strings.py')
-rw-r--r-- | utils/autodict_ql/strcmp-strings.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/autodict_ql/strcmp-strings.py b/utils/autodict_ql/strcmp-strings.py index a1b7e27c..1852b947 100644 --- a/utils/autodict_ql/strcmp-strings.py +++ b/utils/autodict_ql/strcmp-strings.py @@ -46,9 +46,8 @@ def do_string_analysis(corpdir, infile1): str11 = str11.replace("\n","") str11 = str11.lstrip() str11 = str11.rstrip() - print("all strings : %s" % str11) str11 = str(str11) - if ((" " in str11 ) or (")" in str11) or ("(" in str11)): + if ((" " in str11 ) or (")" in str11) or ("(" in str11) or ("<" in str11) or (">" in str11)) : print("Space / Paranthesis String : %s" % str11) else : with open(corpdir+'/strcmp-str{0}'.format(n), 'w') as file: |