mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-13 02:28:09 +00:00
new commit - change strings
new commit - change strings
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user