From 9c1aed3f3bcbb06c246e1d0dddca1253304773cf Mon Sep 17 00:00:00 2001 From: Bernhard Kirchen Date: Sun, 20 Sep 2015 19:42:02 +0200 Subject: [PATCH] Add credits (sources of checksum calc method) --- fbchecksum | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/fbchecksum b/fbchecksum index 603ed7d..2d39b4c 100755 --- a/fbchecksum +++ b/fbchecksum @@ -1,10 +1,16 @@ #!/usr/bin/python +# The reverse engineering required to come up with the method to calculate the +# checksum so the Fritz!Box would accept altered config files is not my work. +# Here is a list of sources I gathered the required information from: +# - fb_tools.php.gz from http://www.mengelke.de/Projekte/FritzBoxTools +# - http://www.akk.org/~enrik/fbox/util/exportsum.pl +# - http://www.ip-phone-forum.de/showthread.php?t=77639 +# - https://github.com/olistudent/FBEditor + import binascii import sys, re -# TODO credits - ################################################################################ # global pre-compiled regex objects for later matching ################################################################################