gitextract_rh6z8oxz/ ├── .github/ │ └── workflows/ │ ├── WinCompile.yml │ └── lint_python.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── Linux/ │ ├── hook-sys.py │ ├── laZagne.py │ ├── lazagne/ │ │ ├── __init__.py │ │ ├── config/ │ │ │ ├── __init__.py │ │ │ ├── constant.py │ │ │ ├── crypto/ │ │ │ │ ├── __init__.py │ │ │ │ ├── pbkdf2.py │ │ │ │ ├── pyDes.py │ │ │ │ └── pyaes/ │ │ │ │ ├── __init__.py │ │ │ │ ├── aes.py │ │ │ │ ├── blockfeeder.py │ │ │ │ └── util.py │ │ │ ├── dico.py │ │ │ ├── homes.py │ │ │ ├── lib/ │ │ │ │ ├── __init__.py │ │ │ │ └── memorpy/ │ │ │ │ ├── Address.py │ │ │ │ ├── BaseProcess.py │ │ │ │ ├── LinProcess.py │ │ │ │ ├── LinStructures.py │ │ │ │ ├── Locator.py │ │ │ │ ├── MemWorker.py │ │ │ │ ├── OSXProcess.py │ │ │ │ ├── Process.py │ │ │ │ ├── SunProcess.py │ │ │ │ ├── WinProcess.py │ │ │ │ ├── WinStructures.py │ │ │ │ ├── __init__.py │ │ │ │ ├── structures.py │ │ │ │ ├── utils.py │ │ │ │ ├── version.py │ │ │ │ └── wintools.py │ │ │ ├── manage_modules.py │ │ │ ├── module_info.py │ │ │ ├── run.py │ │ │ ├── soft_import_module.py │ │ │ └── write_output.py │ │ └── softwares/ │ │ ├── __init__.py │ │ ├── browsers/ │ │ │ ├── __init__.py │ │ │ ├── chromium_based.py │ │ │ ├── chromium_browsers.py │ │ │ ├── firefox_browsers.py │ │ │ ├── mozilla.py │ │ │ └── opera.py │ │ ├── chats/ │ │ │ ├── __init__.py │ │ │ ├── pidgin.py │ │ │ └── psi.py │ │ ├── databases/ │ │ │ ├── __init__.py │ │ │ ├── dbvis.py │ │ │ ├── sqldeveloper.py │ │ │ └── squirrel.py │ │ ├── git/ │ │ │ ├── __init__.py │ │ │ └── gitforlinux.py │ │ ├── mails/ │ │ │ ├── __init__.py │ │ │ ├── clawsmail.py │ │ │ └── thunderbird_mails.py │ │ ├── memory/ │ │ │ ├── __init__.py │ │ │ ├── memorydump.py │ │ │ └── mimipy.py │ │ ├── sysadmin/ │ │ │ ├── __init__.py │ │ │ ├── apachedirectorystudio.py │ │ │ ├── aws.py │ │ │ ├── cli.py │ │ │ ├── docker.py │ │ │ ├── env_variable.py │ │ │ ├── filezilla.py │ │ │ ├── fstab.py │ │ │ ├── gftp.py │ │ │ ├── grub.py │ │ │ ├── keepassconfig.py │ │ │ ├── rclone.py │ │ │ ├── shadow.py │ │ │ └── ssh.py │ │ ├── wallet/ │ │ │ ├── __init__.py │ │ │ ├── kde.py │ │ │ └── libsecret.py │ │ └── wifi/ │ │ ├── __init__.py │ │ ├── wifi.py │ │ └── wpa_supplicant.py │ └── lazagne.spec ├── Mac/ │ ├── hook-sys.py │ ├── laZagne.py │ ├── lazagne/ │ │ ├── __init__.py │ │ ├── config/ │ │ │ ├── __init__.py │ │ │ ├── constant.py │ │ │ ├── crypto/ │ │ │ │ ├── __init__.py │ │ │ │ ├── pyDes.py │ │ │ │ └── pyaes/ │ │ │ │ ├── __init__.py │ │ │ │ ├── aes.py │ │ │ │ ├── blockfeeder.py │ │ │ │ └── util.py │ │ │ ├── dico.py │ │ │ ├── manage_modules.py │ │ │ ├── module_info.py │ │ │ ├── run.py │ │ │ ├── soft_import_module.py │ │ │ └── write_output.py │ │ └── softwares/ │ │ ├── __init__.py │ │ ├── browsers/ │ │ │ ├── __init__.py │ │ │ ├── chrome.py │ │ │ ├── firefox_browsers.py │ │ │ └── mozilla.py │ │ ├── mails/ │ │ │ ├── __init__.py │ │ │ └── thunderbird.py │ │ └── system/ │ │ ├── __init__.py │ │ ├── chainbreaker.py │ │ ├── chainbreaker_module/ │ │ │ ├── Schema.py │ │ │ ├── __init__.py │ │ │ ├── chainbreaker.py │ │ │ └── pbkdf2.py │ │ ├── hashdump.py │ │ └── system.py │ └── lazagne.spec ├── README.md ├── Windows/ │ ├── hook-sys.py │ ├── laZagne.py │ ├── lazagne/ │ │ ├── __init__.py │ │ ├── config/ │ │ │ ├── DPAPI/ │ │ │ │ ├── __init__.py │ │ │ │ ├── blob.py │ │ │ │ ├── credfile.py │ │ │ │ ├── credhist.py │ │ │ │ ├── crypto.py │ │ │ │ ├── eater.py │ │ │ │ ├── masterkey.py │ │ │ │ ├── system.py │ │ │ │ └── vault.py │ │ │ ├── __init__.py │ │ │ ├── change_privileges.py │ │ │ ├── constant.py │ │ │ ├── crypto/ │ │ │ │ ├── __init__.py │ │ │ │ ├── md4.py │ │ │ │ ├── pyDes.py │ │ │ │ ├── pyaes/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aes.py │ │ │ │ │ ├── blockfeeder.py │ │ │ │ │ └── util.py │ │ │ │ └── rc4.py │ │ │ ├── dico.py │ │ │ ├── dpapi_structure.py │ │ │ ├── execute_cmd.py │ │ │ ├── lib/ │ │ │ │ ├── __init__.py │ │ │ │ └── memorpy/ │ │ │ │ ├── Address.py │ │ │ │ ├── BaseProcess.py │ │ │ │ ├── LinProcess.py │ │ │ │ ├── LinStructures.py │ │ │ │ ├── Locator.py │ │ │ │ ├── MemWorker.py │ │ │ │ ├── OSXProcess.py │ │ │ │ ├── Process.py │ │ │ │ ├── SunProcess.py │ │ │ │ ├── WinProcess.py │ │ │ │ ├── WinStructures.py │ │ │ │ ├── __init__.py │ │ │ │ ├── structures.py │ │ │ │ ├── utils.py │ │ │ │ ├── version.py │ │ │ │ └── wintools.py │ │ │ ├── manage_modules.py │ │ │ ├── module_info.py │ │ │ ├── run.py │ │ │ ├── soft_import_module.py │ │ │ ├── users.py │ │ │ ├── winstructure.py │ │ │ └── write_output.py │ │ └── softwares/ │ │ ├── __init__.py │ │ ├── browsers/ │ │ │ ├── __init__.py │ │ │ ├── chromium_based.py │ │ │ ├── chromium_browsers.py │ │ │ ├── firefox_browsers.py │ │ │ ├── ie.py │ │ │ ├── mozilla.py │ │ │ └── ucbrowser.py │ │ ├── chats/ │ │ │ ├── __init__.py │ │ │ ├── pidgin.py │ │ │ ├── psi.py │ │ │ └── skype.py │ │ ├── databases/ │ │ │ ├── __init__.py │ │ │ ├── dbvis.py │ │ │ ├── postgresql.py │ │ │ ├── robomongo.py │ │ │ ├── sqldeveloper.py │ │ │ └── squirrel.py │ │ ├── games/ │ │ │ ├── __init__.py │ │ │ ├── galconfusion.py │ │ │ ├── kalypsomedia.py │ │ │ ├── roguestale.py │ │ │ └── turba.py │ │ ├── git/ │ │ │ ├── __init__.py │ │ │ └── gitforwindows.py │ │ ├── mails/ │ │ │ ├── __init__.py │ │ │ ├── outlook.py │ │ │ └── thunderbird_mails.py │ │ ├── maven/ │ │ │ ├── __init__.py │ │ │ └── mavenrepositories.py │ │ ├── memory/ │ │ │ ├── __init__.py │ │ │ ├── keepass.py │ │ │ ├── keethief.py │ │ │ ├── libkeepass/ │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── crypto.py │ │ │ │ ├── hbio.py │ │ │ │ ├── kdb4.py │ │ │ │ └── pureSalsa20.py │ │ │ ├── memorydump.py │ │ │ └── onepassword.py │ │ ├── multimedia/ │ │ │ ├── __init__.py │ │ │ └── eyecon.py │ │ ├── php/ │ │ │ ├── __init__.py │ │ │ └── composer.py │ │ ├── svn/ │ │ │ ├── __init__.py │ │ │ └── tortoise.py │ │ ├── sysadmin/ │ │ │ ├── __init__.py │ │ │ ├── apachedirectorystudio.py │ │ │ ├── coreftp.py │ │ │ ├── cyberduck.py │ │ │ ├── d3des.py │ │ │ ├── filezilla.py │ │ │ ├── filezillaserver.py │ │ │ ├── ftpnavigator.py │ │ │ ├── iisapppool.py │ │ │ ├── iiscentralcertp.py │ │ │ ├── keepassconfig.py │ │ │ ├── mRemoteNG.py │ │ │ ├── opensshforwindows.py │ │ │ ├── openvpn.py │ │ │ ├── puttycm.py │ │ │ ├── rclone.py │ │ │ ├── rdpmanager.py │ │ │ ├── unattended.py │ │ │ ├── vnc.py │ │ │ ├── winscp.py │ │ │ └── wsl.py │ │ ├── wifi/ │ │ │ ├── __init__.py │ │ │ └── wifi.py │ │ └── windows/ │ │ ├── __init__.py │ │ ├── autologon.py │ │ ├── cachedump.py │ │ ├── creddump7/ │ │ │ ├── __init__.py │ │ │ ├── addrspace.py │ │ │ ├── newobj.py │ │ │ ├── object.py │ │ │ ├── types.py │ │ │ └── win32/ │ │ │ ├── __init__.py │ │ │ ├── domcachedump.py │ │ │ ├── hashdump.py │ │ │ ├── lsasecrets.py │ │ │ └── rawreg.py │ │ ├── credfiles.py │ │ ├── credman.py │ │ ├── hashdump.py │ │ ├── lsa_secrets.py │ │ ├── ppypykatz.py │ │ ├── vault.py │ │ ├── vaultfiles.py │ │ └── windows.py │ └── lazagne.spec └── requirements.txt