From: Guillaume Pellerin Date: Wed, 24 Sep 2025 12:30:16 +0000 (+0200) Subject: upgrade some deps, fix invalid escape X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8126eae59a861ae2df39ef7d1b41b1bab1ec7807;p=deefuzzer.git upgrade some deps, fix invalid escape --- diff --git a/deefuzzer/tools/utils.py b/deefuzzer/tools/utils.py index b5728a0..8700bf3 100644 --- a/deefuzzer/tools/utils.py +++ b/deefuzzer/tools/utils.py @@ -25,10 +25,10 @@ mimetypes.add_type('application/x-yaml', '.yaml') def clean_word(word): """ Return the word without excessive blank spaces, underscores and characters causing problem to exporters""" - word = re.sub("^[^\w]+", "", word) # trim the beginning - word = re.sub("[^\w]+$", "", word) # trim the end - word = re.sub("_+", "_", word) # squeeze continuous _ to one _ - word = re.sub("^[^\w]+", "", word) # trim the beginning _ + word = re.sub(r"^[^\w]+", "", word) # trim the beginning + word = re.sub(r"[^\w]+$", "", word) # trim the end + word = re.sub(r"_+", "_", word) # squeeze continuous _ to one _ + word = re.sub(r"^[^\w]+", "", word) # trim the beginning _ # word = string.replace(word,' ','_') # word = string.capitalize(word) dict = '&[];"*:,' diff --git a/deefuzzer/version.py b/deefuzzer/version.py index 8969d49..1f04780 100644 --- a/deefuzzer/version.py +++ b/deefuzzer/version.py @@ -1 +1 @@ -__version__ = '0.9.1' +__version__ = '0.9.2' diff --git a/setup.py b/setup.py index c4221d4..fb88d13 100644 --- a/setup.py +++ b/setup.py @@ -21,16 +21,16 @@ setup( long_description=open('README.rst').read(), author="Guillaume Pellerin", author_email="yomguy@parisson.com", - version='0.9.1', + version='0.9.2', install_requires=[ 'setuptools', 'wheel', 'python-shout==0.2.8', 'python-twitter==3.5', 'mutagen==1.45.1', - 'pyliblo3==0.12.0', - 'pycurl==7.44.1', - 'pyyaml==6.0.1', + 'pyliblo3==0.16.4', + 'pycurl==7.45.6', + 'pyyaml==6.0.2', 'mysqlclient==2.0.3', ], platforms=['OS Independent'],