One Day Sec

How did the author fix the 'No module named memorpy' error in LaZagne?

The error occurred because the original code had a typo, referencing `memorpy` instead of `memory_profiler`. However, simply installing `memory_profiler` and modifying the import allowed compilation but caused runtime errors. The correct fix was to install the real `memorpy` package from its GitHub repository using `pip install https://github.com/n1nj4sec/memorpy/archive/master.zip`. This resolved both the import and runtime issues. The experience highlights the importance of verifying third-party package sources when fixing bugs in security tools.
memorpybug fixLaZagneImportErrormemory_profilerpackage installation

Browse all Q&A →