├── .gitignore ├── Changelog ├── README ├── data ├── fntemplates.txt └── tftplist.txt ├── finder.py ├── lib ├── __init__.py ├── bruteforcehelper.py ├── common.py ├── construct │ ├── __init__.py │ ├── adapters.py │ ├── core.py │ ├── debug.py │ ├── lib │ │ ├── __init__.py │ │ ├── binary.py │ │ ├── bitstream.py │ │ ├── container.py │ │ ├── hex.py │ │ └── utils.py │ ├── macros.py │ └── text.py ├── contrib │ ├── __init__.py │ ├── construct │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── core.py │ │ ├── debug.py │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── binary.py │ │ │ ├── bitstream.py │ │ │ ├── container.py │ │ │ ├── hex.py │ │ │ └── utils.py │ │ ├── macros.py │ │ └── text.py │ └── progressbar │ │ ├── LICENSE │ │ ├── MANIFEST │ │ ├── MANIFEST.in │ │ ├── PKG-INFO │ │ ├── README │ │ ├── __init__.py │ │ ├── progressbar.py │ │ ├── setup.py │ │ └── testprogressbar.py ├── iphelper.py └── tftplib.py └── thief.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- 1 | v0.1 (20100526) 2 | 3 | First version out -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/README -------------------------------------------------------------------------------- /data/fntemplates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/data/fntemplates.txt -------------------------------------------------------------------------------- /data/tftplist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/data/tftplist.txt -------------------------------------------------------------------------------- /finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/finder.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/bruteforcehelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/bruteforcehelper.py -------------------------------------------------------------------------------- /lib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/common.py -------------------------------------------------------------------------------- /lib/construct/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/__init__.py -------------------------------------------------------------------------------- /lib/construct/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/adapters.py -------------------------------------------------------------------------------- /lib/construct/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/core.py -------------------------------------------------------------------------------- /lib/construct/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/debug.py -------------------------------------------------------------------------------- /lib/construct/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/lib/__init__.py -------------------------------------------------------------------------------- /lib/construct/lib/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/lib/binary.py -------------------------------------------------------------------------------- /lib/construct/lib/bitstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/lib/bitstream.py -------------------------------------------------------------------------------- /lib/construct/lib/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/lib/container.py -------------------------------------------------------------------------------- /lib/construct/lib/hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/lib/hex.py -------------------------------------------------------------------------------- /lib/construct/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/lib/utils.py -------------------------------------------------------------------------------- /lib/construct/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/macros.py -------------------------------------------------------------------------------- /lib/construct/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/construct/text.py -------------------------------------------------------------------------------- /lib/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/contrib/construct/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/__init__.py -------------------------------------------------------------------------------- /lib/contrib/construct/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/adapters.py -------------------------------------------------------------------------------- /lib/contrib/construct/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/core.py -------------------------------------------------------------------------------- /lib/contrib/construct/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/debug.py -------------------------------------------------------------------------------- /lib/contrib/construct/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/lib/__init__.py -------------------------------------------------------------------------------- /lib/contrib/construct/lib/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/lib/binary.py -------------------------------------------------------------------------------- /lib/contrib/construct/lib/bitstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/lib/bitstream.py -------------------------------------------------------------------------------- /lib/contrib/construct/lib/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/lib/container.py -------------------------------------------------------------------------------- /lib/contrib/construct/lib/hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/lib/hex.py -------------------------------------------------------------------------------- /lib/contrib/construct/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/lib/utils.py -------------------------------------------------------------------------------- /lib/contrib/construct/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/macros.py -------------------------------------------------------------------------------- /lib/contrib/construct/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/construct/text.py -------------------------------------------------------------------------------- /lib/contrib/progressbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/progressbar/LICENSE -------------------------------------------------------------------------------- /lib/contrib/progressbar/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/progressbar/MANIFEST -------------------------------------------------------------------------------- /lib/contrib/progressbar/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/progressbar/MANIFEST.in -------------------------------------------------------------------------------- /lib/contrib/progressbar/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/progressbar/PKG-INFO -------------------------------------------------------------------------------- /lib/contrib/progressbar/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/progressbar/README -------------------------------------------------------------------------------- /lib/contrib/progressbar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/contrib/progressbar/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/progressbar/progressbar.py -------------------------------------------------------------------------------- /lib/contrib/progressbar/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/progressbar/setup.py -------------------------------------------------------------------------------- /lib/contrib/progressbar/testprogressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/contrib/progressbar/testprogressbar.py -------------------------------------------------------------------------------- /lib/iphelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/iphelper.py -------------------------------------------------------------------------------- /lib/tftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/lib/tftplib.py -------------------------------------------------------------------------------- /thief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnableSecurity/tftptheft/HEAD/thief.py --------------------------------------------------------------------------------