##// END OF EJS Templates
security: limit the maximum password lenght to 72 characters to prevent possible...
security: limit the maximum password lenght to 72 characters to prevent possible server side resource consumption attack. - bcrypt heavy computation can lead to DOS using a very long password .eg 10**8 lenght. - we allowed this on registration or on password update

File last commit:

r1489:d29f4cdc default
r2128:f22a9ea9 default
Show More
patch-celery-dateutil.diff
12 lines | 464 B | text/x-diff | DiffLexer
/ pkgs / patch-celery-dateutil.diff
diff -rup celery-2.2.10-orig/setup.py celery-2.2.10/setup.py
--- celery-2.2.10-orig/setup.py 2017-02-25 15:30:34.000000000 +0100
+++ celery-2.2.10/setup.py 2017-02-25 15:30:34.000000000 +0100
@@ -48,7 +48,7 @@ try:
except ImportError:
install_requires.append("importlib")
install_requires.extend([
- "python-dateutil>=1.5.0,<2.0.0",
+ "python-dateutil>=1.5.0,<2.2.0",
"anyjson>=0.3.1",
"kombu>=1.1.2,<2.0.0",
"pyparsing>=1.5.0,<2.0.0",