Forgot to switch from DEBUG=True

This commit is contained in:
Mariusz 2018-04-16 17:41:59 +02:00 committed by GitHub
parent 9278cd6892
commit cece81cdf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
# ReEncoder.py - script allowing for recursive encoding detection, decoding and then re-encoding.
# To be used for instance in fuzzing purposes. Imagine you want to fuzz XML parameters within
# **PaReq** packet of 3DSecure standard. This packet has been ZLIB compressed, then Base64 encoded,
# then URLEncoded. In order to modify the inner HTML you would need to peel off that encoding layers
# then URLEncoded. In order to modify the inner XML you would need to peel off that encoding layers
# and then reaplly them in reversed order. This script allows you to do that in an automated manner
#
# NOTICE:
@ -37,7 +37,7 @@ from collections import Counter
class ReEncoder:
# Switch this to show some verbose informations about decoding process.
DEBUG = True
DEBUG = False
class Utils:
@staticmethod