├── LICENSE ├── README.md ├── Section 1 ├── impacket_demo.py └── scapy_demo.py ├── Section 2 ├── directory_scan.py ├── file_properties.py └── registry.py ├── Section 3 ├── access_journal.py ├── hash.py ├── parse_journal.py ├── recurs_file.py └── recursive_dir_scan.py └── Section 5 ├── exfiltrate.py ├── ping_sweep.py ├── port_scanner.py └── reverse_shell.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/README.md -------------------------------------------------------------------------------- /Section 1/impacket_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 1/impacket_demo.py -------------------------------------------------------------------------------- /Section 1/scapy_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 1/scapy_demo.py -------------------------------------------------------------------------------- /Section 2/directory_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 2/directory_scan.py -------------------------------------------------------------------------------- /Section 2/file_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 2/file_properties.py -------------------------------------------------------------------------------- /Section 2/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 2/registry.py -------------------------------------------------------------------------------- /Section 3/access_journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 3/access_journal.py -------------------------------------------------------------------------------- /Section 3/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 3/hash.py -------------------------------------------------------------------------------- /Section 3/parse_journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 3/parse_journal.py -------------------------------------------------------------------------------- /Section 3/recurs_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 3/recurs_file.py -------------------------------------------------------------------------------- /Section 3/recursive_dir_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 3/recursive_dir_scan.py -------------------------------------------------------------------------------- /Section 5/exfiltrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 5/exfiltrate.py -------------------------------------------------------------------------------- /Section 5/ping_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 5/ping_sweep.py -------------------------------------------------------------------------------- /Section 5/port_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 5/port_scanner.py -------------------------------------------------------------------------------- /Section 5/reverse_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Digital-Forensics/HEAD/Section 5/reverse_shell.py --------------------------------------------------------------------------------