├── .gitignore ├── README.md ├── libtoorchat.py ├── recv_loop.py ├── rflib ├── __init__.py ├── bits.py ├── cc1111client.py ├── cc111Xhparser.py ├── ccrecvdump.py ├── ccspecan.py ├── chipcon_nic.py └── chipcondefs.py ├── toorchat.py └── vstruct ├── __init__.py ├── builder.py ├── defs ├── __init__.py ├── elf.py ├── kdcom.py ├── macho │ ├── __init__.py │ ├── const.py │ ├── fat.py │ └── loader.py ├── pe.py ├── win32.py └── windows │ ├── __init__.py │ ├── win_5_1_i386 │ ├── __init__.py │ ├── ntdll.py │ ├── ntoskrnl.py │ └── win32k.py │ ├── win_6_1_amd64 │ ├── __init__.py │ └── ntdll.py │ └── win_6_1_wow64 │ ├── __init__.py │ └── ntdll.py └── primitives.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/README.md -------------------------------------------------------------------------------- /libtoorchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/libtoorchat.py -------------------------------------------------------------------------------- /recv_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/recv_loop.py -------------------------------------------------------------------------------- /rflib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/rflib/__init__.py -------------------------------------------------------------------------------- /rflib/bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/rflib/bits.py -------------------------------------------------------------------------------- /rflib/cc1111client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/rflib/cc1111client.py -------------------------------------------------------------------------------- /rflib/cc111Xhparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/rflib/cc111Xhparser.py -------------------------------------------------------------------------------- /rflib/ccrecvdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/rflib/ccrecvdump.py -------------------------------------------------------------------------------- /rflib/ccspecan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/rflib/ccspecan.py -------------------------------------------------------------------------------- /rflib/chipcon_nic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/rflib/chipcon_nic.py -------------------------------------------------------------------------------- /rflib/chipcondefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/rflib/chipcondefs.py -------------------------------------------------------------------------------- /toorchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/toorchat.py -------------------------------------------------------------------------------- /vstruct/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/__init__.py -------------------------------------------------------------------------------- /vstruct/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/builder.py -------------------------------------------------------------------------------- /vstruct/defs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/__init__.py -------------------------------------------------------------------------------- /vstruct/defs/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/elf.py -------------------------------------------------------------------------------- /vstruct/defs/kdcom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/kdcom.py -------------------------------------------------------------------------------- /vstruct/defs/macho/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/macho/__init__.py -------------------------------------------------------------------------------- /vstruct/defs/macho/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/macho/const.py -------------------------------------------------------------------------------- /vstruct/defs/macho/fat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/macho/fat.py -------------------------------------------------------------------------------- /vstruct/defs/macho/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/macho/loader.py -------------------------------------------------------------------------------- /vstruct/defs/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/pe.py -------------------------------------------------------------------------------- /vstruct/defs/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/win32.py -------------------------------------------------------------------------------- /vstruct/defs/windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/windows/__init__.py -------------------------------------------------------------------------------- /vstruct/defs/windows/win_5_1_i386/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vstruct/defs/windows/win_5_1_i386/ntdll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/windows/win_5_1_i386/ntdll.py -------------------------------------------------------------------------------- /vstruct/defs/windows/win_5_1_i386/ntoskrnl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/windows/win_5_1_i386/ntoskrnl.py -------------------------------------------------------------------------------- /vstruct/defs/windows/win_5_1_i386/win32k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/windows/win_5_1_i386/win32k.py -------------------------------------------------------------------------------- /vstruct/defs/windows/win_6_1_amd64/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vstruct/defs/windows/win_6_1_amd64/ntdll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/windows/win_6_1_amd64/ntdll.py -------------------------------------------------------------------------------- /vstruct/defs/windows/win_6_1_wow64/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vstruct/defs/windows/win_6_1_wow64/ntdll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/defs/windows/win_6_1_wow64/ntdll.py -------------------------------------------------------------------------------- /vstruct/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hathcox/ToorChat/HEAD/vstruct/primitives.py --------------------------------------------------------------------------------