{ "info": { "author": "starwort", "author_email": "", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3.6" ], "description": "# mempy3\n\nPython 3 library using ctypes to search/edit windows/linux/OSX/SunOS programs' memory.\nPort of [memorpy](https://github.com/n1nj4sec/memorpy)\n\n## This library uses Semantic Versioning\n\nSee what this means [here](https://semver.org/)\n\n## Install\n\n```bash\npip install mempy3\n```\n\n(ensure that pip uses python3 - on some systems `pip3` or `python3 -m pip` is required)\n\n## Usage examples\n\nIn this example, open a notepad.exe and type in some text we will edit from memory!\n\n```python\n>>> from memorpy import *\n>>> mw = MemWorker(pid=3856) # you can also select a process by its name with the kwarg name=\n>>> l = [x for x in mw.umem_search(\"hello\")]\n>>> l\n[('', )]\n>>> a = l[0][1]\n>>> a\n\n>>> a+4\n\n>>> print(a)\n\n>>> a.dump()\n\"00328790: 46 00 72 00 61 00 6E 00 63 00 65 00 29 00 00 00 F.r.a.n.c.e.)...\\n003287A0: 00 00 00 00 00 00 00 00 F3 8F 57 0C 7F 6A 00 10 ..........W..j..\\n003287B0: 63 00 6F 00 75 00 63 00 6F 00 75 00 20 00 74 00 c.o.u.c.o.u. .t.\\n003287C0: 68 00 69 00 73 00 20 00 69 00 73 00 20 00 61 00 h.i.s. .i.s. .a.\\n003287D0: 20 00 6D 00 65 00 73 00 73 00 61 00 67 00 65 00 .m.e.s.s.a.g.e.\\n003287E0: 20 00 49 00 20 00 74 00 79 00 70 00 65 00 64 00 .I. .t.y.p.e.d.\\n003287F0: 20 00 69 00 6E 00 20 00 6E 00 6F 00 74 00 65 00 .i.n. .n.o.t.e.\\n00328800: 70 00 61 00 64 00 2E 00 65 00 78 00 65 00 20 00 p.a.d...e.x.e. .\\n00328810: 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 !...............\\n00328820: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\\n00328830: 00 00 00 00 04 00 27 00 F7 8F 74 2B 6A 6A 00 00 ......'...t+jj..\\n00328840: 30 7A 32 00 C0 8B 32 00 00 00 00 00 00 00 00 00 0z2...2.........\\n00328850: 01 00 01 00 01 01 00 00 00 00 00 00 00 00 00 00 ................\\n00328860: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\\n00328870: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\\n00328880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\\n00328890: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\\n003288A0: 01 00 00 01 00 00 01 00 00 00 00 01 00 00 00 00 ................\\n003288B0: 07 00 00 07 59 6A 00 00 B8 79 32 00 E8 35 32 00 ....Yj...y2..52.\\n003288C0: 50 54 9D ED E6 EB 55 42 82 89 F8 A3 1E 68 72 28 PT....UB.....hr(\\n003288D0: 03 00 00 03 7F 6A 00 00 C0 8B 32 00 E8 35 32 00 .....j....2..52.\\n003288E0: AA BA 43 9F 5C 80 8F 67 E2 8F 75 3F 6E 6A 00 0C ..C.\\..g..u?nj..\\n003288F0: F0 FE 30 00 70 FE 30 00 F0 FD 30 00 1D 17 ED 00 ..0.p.0...0.....\\n00328900: B6 8F 75 6B 7B 6A 00 08 00 00 00 00 00 00 00 00 ..uk{j..........\\n00328910: 11 10 0A 61 00 00 00 00 00 00 00 00 A0 00 00 00 ...a............\\n00328920: 0D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\\n00328930: 00 00 80 41 00 00 80 41 00 00 80 3D 00 00 80 3D ...A...A...=...=\\n00328940: 00 00 D0 00 00 00 30 00 1E FF 20 1F 00 00 00 00 ......0... .....\\n00328950: 71 80 0E 00 30 00 30 00 30 00 30 00 30 00 30 00 q...0.0.0.0.0.0.\\n00328960: 30 00 30 00 30 00 30 00 30 00 30 00 30 00 30 00 0.0.0.0.0.0.0.0.\\n00328970: 30 00 30 00 30 00 30 00 30 00 30 00 30 00 30 00 0.0.0.0.0.0.0.0.\\n00328980: 30 00 30 00 30 00 30 00 30 00 30 00 30 00 30 00 0.0.0.0.0.0.0.0.\"\n>>> a.read(100).decode(\"utf-16-le\")\n'hello this is a message I typed in notepad.exe !\\x00\\x00'\n>>> a.write(\"pwned\".encode(\"utf-16-le\"))\n1\n>>> a.read(100).decode(\"utf-16-le\")\n'pwned this is a message I typed in notepad.exe !\\x00\\x00'\n```\n\nLook back at your notepad and the text should be changed! :)\nA quicker way to do this could be:\n\n```python\n>>> mw.umem_replace(\"hello\",\"pwned\")\n```\n\nSome other interesting features like searching for different values types in memory and monitor their changes are also implemented through the Locator class. For example if you are looking to cheat in a game and you start with 200 ammo, you could do something like:\n\n```python\n>>> lo = Locator(mw)\n>>> lo.feed(200)\n...\n,\n,\n,\n...]}\n```\n\nUse some ammo and \"refeed\" the locator (do this a couple of times until there is one result left)\n\n```python\n>>> lo.feed(199)\n{'double': [], 'float': [], 'int': [], 'long': [], 'short': [], 'uint': [], 'ulong': [], 'ushort': []}\n>>> a = _[\"int\"][0]\n>>> a.read()\n199\n>>> a.write(999999)\n1\n```\n\nNow you have infinite ammo :o)\n\nI hope this code will be useful to someone.\n\nHave fun!", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/starwort/memorpy3", "keywords": "", "license": "MPL-2.0", "maintainer": "", "maintainer_email": "", "name": "mempy3", "package_url": "https://pypi.org/project/mempy3/", "platform": "", "project_url": "https://pypi.org/project/mempy3/", "project_urls": { "Homepage": "https://github.com/starwort/memorpy3" }, "release_url": "https://pypi.org/project/mempy3/0.0.3/", "requires_dist": null, "requires_python": "", "summary": "A python 3 port of memorpy, a library by n1nj4sec", "version": "0.0.3" }, "last_serial": 5588365, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "e20c03b3a26aec520d0195def1b88e55", "sha256": "c2716ef4c34d5f57cb2071b5fd4c9992de9317443207803b0d35abeb21e63c02" }, "downloads": -1, "filename": "mempy3-0.0.1.tar.gz", "has_sig": false, "md5_digest": "e20c03b3a26aec520d0195def1b88e55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18900, "upload_time": "2019-07-25T23:43:13", "url": "https://files.pythonhosted.org/packages/ab/0e/bad904c3408314ee8b93ef04a6232a0fb4907e8acfd6655e06da4a1d5f9a/mempy3-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "6e876ccc801fa428d2fa44cdfd884898", "sha256": "5ede1658ab8e020673257368f708ba97c05baec918cc9390b571b814bbed5cee" }, "downloads": -1, "filename": "mempy3-0.0.2.tar.gz", "has_sig": false, "md5_digest": "6e876ccc801fa428d2fa44cdfd884898", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18965, "upload_time": "2019-07-26T10:03:00", "url": "https://files.pythonhosted.org/packages/da/a0/6c2cd930dbcb552542745b3a69f7446b0619168dc7546b467f23fac771af/mempy3-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "20cd51727445ba873770b0c66025ff01", "sha256": "e23ae517ecf53703410890abd3afbbee2d76aae53c62edccca1ead81ef4bd22b" }, "downloads": -1, "filename": "mempy3-0.0.3.tar.gz", "has_sig": false, "md5_digest": "20cd51727445ba873770b0c66025ff01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18945, "upload_time": "2019-07-26T10:30:19", "url": "https://files.pythonhosted.org/packages/e6/d5/5c1e56ae785fa15f0a89c9cea2f6a6b951bcb0cccaa83fe421d2498bb3b3/mempy3-0.0.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "20cd51727445ba873770b0c66025ff01", "sha256": "e23ae517ecf53703410890abd3afbbee2d76aae53c62edccca1ead81ef4bd22b" }, "downloads": -1, "filename": "mempy3-0.0.3.tar.gz", "has_sig": false, "md5_digest": "20cd51727445ba873770b0c66025ff01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18945, "upload_time": "2019-07-26T10:30:19", "url": "https://files.pythonhosted.org/packages/e6/d5/5c1e56ae785fa15f0a89c9cea2f6a6b951bcb0cccaa83fe421d2498bb3b3/mempy3-0.0.3.tar.gz" } ] }