{ "info": { "author": "Ori Shamir", "author_email": "Epsexecnoreply@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: Microsoft :: Windows", "Programming Language :: Python :: 3.7", "Topic :: System :: Systems Administration" ], "description": "#### !!!!!!!!!! Use \"help(PsPc)\" This will show you the available methods. (This usage form will contain it, but it is yet to be completed.) !!!!!!!!!!\n\n### About\nepsexec (Enhanced psexec) uses [Microsoft's Sysinternals PsExec](https://docs.microsoft.com/en-us/sysinternals/downloads/psexec) utility that uses SMB to execute programs on remote systems.\nPsExec is a light-weight telnet replacement. \nIf you find any bugs, PLEASE report to ***`EpsexecNoReply@gmail.com`*** \n\n### Installation\nRun the following to install: \n```\npip install Enhanced-PsExec\n```\n\n# Requirements\n**Attacker Machine:** \n1) You MUST have [psexec install](https://docs.microsoft.com/en-us/sysinternals/downloads/psexec)ed \n **If you have A 32-bit installation, install psexec to `C:\\windows\\sysWOW64`.** \n Else, to `C:\\windows\\system32` \n **Recommended:** \n *The `PsPc` class has a static method `download_psexec` that can automate the process for you.* \n *Run: `PsPc.download_psexec()`* \n2) You MUST run python as administrator (Ctrl+Esc, type \"python\", Ctrl+Shift+Enter,Alt-Y).\n\n**The Remote PC:** \nThe remote pc (The pc that you are attacking) have very few requirements;\n1) SMBv2 needs to be up and running on the Windows port. Run this CMD script on the remote computer:\n`powershell.exe Set-SmbServerConfiguration -EnableSMB2Protocol $true`\n2) The ADMIN$ share to be enabled with read/write access of the user configured. \n Unless the machine already has an administrator user with password, I recommend making Another user that is administrator. \n CMD: \n`net user /add usernameToHack passToBeUsed` \nTo enable administrator: \n`net localgroup administrators usernameToHack /add` \n\n3) You'll need to add A registry key. \nThis is because UAC is set up to deny connections like this, so you will get an `ACCESS_IS_DENIED` error when attempting to connect. \nFix: run CMD as administrator and run: \n`reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\system /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f` \n\n4) RECOMMENDED: Disable firewall on the remote machine. \nThis will allow for a faster experience while connecting. \nThere is also A method to do this, so you dont need to go to the remote PC NOW. \nyou can do it remotely using: `pc.firewallChange(state=\"rule\")` \nOr, run on this on the remote machine in administrator CMD: \n`netsh advfirewall firewall set rule name=\"File and Printer Sharing (SMB-In)\" dir=in new enable=Yes` \nOr, you can just disable the firewall entirely administrator CMD: \n`netsh advfirewall set allprofiles state off`\n\n5) Restart the system. \n\n## Import\nTo import the package, use `from epsexec import PsPc`. \n\n# Usage\n1) Create a PsPc class instance. \n```python\npc1 = PsPc(ip=\"IPv4\", username=\"username\", password=\"password\") \n```\nOr, if you want to import from a file:\n```python\npc1 = PsPc(file=\"name_of_file.txt\")\n```\nGeneral settings: \n\n**`delay_before`** --- This pauses the operation {delay_before} millisecond before starting the operation. (Default 100) \n**`run_as_admin`** --- If true, it will run the operation in administrative privileges. (default True) \n\n## firewallChange\nThis is probably the most important method. why? \nWell, because firewall makes the psexec process extremely slow (It takes about 12 seconds instead of 1). \nSo, it becomes very frustrating. \nModes:\n1. \"on\" to enable firewall on the remote machine.\n2. \"off\" to disable firewall on the remote machine.\n3. \"smb\" to add a SMB-only rule. This will allow connections from port 445 (smb)\n4. \"rdp\" to add a remote desktop rule to make connections from remote desktop easier. \n\n## download_nir\n[NirCMD](https://www.nirsoft.net/utils/nircmd.html) is A windows command-line utility that allows you to do useful tasks without displaying any user interface. \nUnfortunately, NirCMD is NOT installed by default on windows systems. \nThats why this method exists. all this method do, is download NirCMD on the remote PC using powershell. \nNircmd is required for the following methods: \n1. beep \n2. sendScreenshot \n3. set_volume \n4. textToSpeech \n\n## beep\n**Requires Nircmd** \nThe beep method takes frequency(hz) and duration(millisecond) parameters. \nThen it plays A sound at the given frequency and duration. \n\n## getShell\nThe getShell method is the most basic method. \nIt takes A shell to open as and administration privileges. (default \"cmd.exe\",True) \nThis is your everyday remote shell on another PC. \nYou can also choose powershell instead of cmd \n\n## set_by_config_file\nThis method is to takes a file name which includes a pre-made list of computers infomation. \nThis text file is the same as the one used by `openurl` to get a list of \npre-made urls except, this is for computers. \n**Example:**\n```python\nconfig:\n IP USERNAME PASSWORD\n 10.0.0.15 user p@assword\nendconfig\n\nurls:\n name URL\n youtube https://www.youtube.com\nendurl\n```\nYou can also include a delimiter, like `,` (comma) instead of ' ' (space) \n\n## close_process\nThe close_process method takes A process name or processID, and delay_before to wait before the program closes the process. \nThen it uses taskkill (CMD command) to close it. \n\n\n## close_chrome\nThis method closes every chrome tab on the remote machine. \nIt takes 2 parameters: runAsAdmin, and delay_before. (Default True) \n\n\n## textToSpeech\n**Requires Nircmd** \nThe textToSpeech method takes A string to speak, and MaleVoice as a boolean. (default True) \nThen it uses NirCMD to speak the text on the remote PC. \n\n## set_volume\n**Requires Nircmd** \nThe set_volume method takes a number from 0 to 100 as the percentage And delay_before. \nThen it opens NirCMD in the remote pc and uses \"setsysvolume\" to set the computer's volume. \nIf the volume is set to zero, it will mute the remote pc.\nIf the volume is set to 101, it will un-mute the remote pc (A pc can be muted, but the volume is high.)\n\n\n## send_screenshot\n**Requires Nircmd** \nThe sendScreenshot takes email address and delay_before. \nIt uses NirCMD to take A screenshot, save it to C:\\epsexecScreenshot.png \nThen, it uses powershell SMTPClient.send() to send an email to the given Email Address \n\n# openurl \nThis method is the most complicated method. \nIt can potentially take multiple parameters. \nRECOMMENDED: Go to `chrome://extensions` on the remote machine. then go to your AdBlocker's settings. \nClick **\"Allow in incognito\"**. This will allow your AdBlocker on incognito. \nSo YouTube songs will not load ads, making for better experience. \n\nI will now explain every parameter: \n**`URL`** --- This is the URL to be opened in the remote machine. If `fromFile` parameter is used, it must be: `'*://*/*'`, its default \n\n**`fromFile`** --- This parameter is used to take A text file and get every URL and its shotcut name. \n**[See more](https://github.com/orishamir/Epsexec/blob/master/fromFile.md)** \n\n**`delimiter`** --- This is only if you also specified `fromFile` - How to seperate each name,url\n\n**`tabs`** --- This parameter is responsible for the amount of tabs to open on the remote machine. (Default=1) \n\n**`delayBeforeOpening`** --- This parameter decides how much time in millisecond the program should pause before starting the operation. (Default=100) \n\n**`delayBetweenTabs`** --- This parameter decides how much time in millisecond the program should pause BETWEEN every time it opens A new tab.\n\n**`new_window`** --- This parameter decides whether or not to open the tab(s) in new window each time. (Default=False) \n\n**`incognito`** --- This parameter decides if the tab(s) would be opened in Incognito mode. (Default=False) \n\n**`invisible`** --- This parameter decides if the tab(s) would be opened invisibly, and not interactive, so the user would not notice its opened, unless the window plays sound (Default=False). \n\n\nAvailable class methods: \n```python\nHelp on class PsPc in module epsexec:\n\nclass PsPc(builtins.object)\n | PsPc(**kwargs)\n |\n | Methods defined here:\n |\n | __getitem__(self, item)\n |\n | __init__(self, **kwargs)\n | Initialize self. See help(type(self)) for accurate signature.\n |\n | __repr__(self)\n | Return repr(self).\n |\n | __setitem__(self, key, value)\n |\n | beep(self, frequency, duration_ms, delay_before=0)\n |\n | close_chrome(self, delay_before=0)\n |\n | close_process(self, proc_name, delay_before=0)\n | proc_name --- The process to close (could be either a name, or an ID).\n | delay_before --- The amount (in milliseconds) to pause before closing the process.\n |\n | download_nir(self)\n |\n | enable_remote_desktop(self)\n |\n | firewallChange(self, state='smb', delay_before=0)\n | state --- Controls the operation to perform.\n | off/on - Turn off/on the firewall.\n | smb - Add a rule to allow smb connections (recommended).\n | rdp - Add a rule to allow remote desktop connections.\n |\n | delay_before --- The amount (in milliseconds) to pause before performing the operation.\n |\n | getShell(self, shell='cmd.exe', run_as_admin=True)\n | shell --- program to open (default \"cmd.exe\")\n | run_as_admin --- Should the shell be ran with administrative privileges (default True)\n |\n | openurl(self, url='*://*/*', fromFile='fileName.txt', delimiter=' ', tabs=1, new_window=False, delay_before=0, delay_between=10, incognito=False, invisible=False)\n | URL --- This is the URL to be opened in the remote machine. If `fromFile` parameter is used, it must be: `'*://*/*'`, its default\n |\n | fromFile --- This parameter is used to take A text file and get every URL and its shotcut name.\n | See more: https://github.com/orishamir/Epsexec/blob/master/fromFile.md\n |\n | delimiter --- This is only if you also specified `fromFile` - How to seperate each name,url\n |\n | tabs --- This parameter is responsible for the amount of tabs to open on the remote machine. (Default=1)\n |\n |\n |\n |\n | incognito --- This parameter decides if the tab(s) would be opened in Incognito mode. (Default=False)\n |\n | invisible --- This parameter decides if the tab(s) would be opened invisibly, and not interactive, so the user would not notice its opened, unless the window plays sound (Default=False).\n |\n | run_command(self, program, arguments, delay_before=0, run_as_admin=True, invisible=False)\n |\n | send_screenshot(self, email_recipient_addr, delay_before=0)\n |\n | set_by_config_file(self, file_name, delimiter=' ', extern=False)\n |\n | set_volume(self, percent, delay_before=0)\n |\n | startRemoteDesktop(self)\n |\n | textToSpeech(self, text, male_voice=True, delay_before=0)\n |\n | ----------------------------------------------------------------------\n | Static methods defined here:\n |\n | download_psexec()\n |\n | ----------------------------------------------------------------------\n | Data descriptors defined here:\n |\n | __dict__\n | dictionary for instance variables (if defined)\n |\n | __weakref__\n | list of weak references to the object (if defined)\n\n```\n\n### Credits\nEpsexec was created by Ori Shamir. \nIf you find any bugs, PLEASE report to ***`EpsexecNoReply@gmail.com`***\n\n\n### Changelog:\n**0.4.9** - Fixed openurl delayBetweenTabs not working properly. \n\n**0.5.1:** \n* Added this changelog. \n* Added static method `download_psexec`. This is to download PsExec on your machine.\n* openurl method now automatically gets the installation folder of google chrome. \n* PEP 8:\n * Changed `downloadNirCMD` method name to `download_nir`. \n * Changed `sleepBefore` parameter name to `delay_before`. \n * Changed `durationMs` parameter name to `duration_ms` in `beep` method. \n\n\n**0.5.3:** \n* Now, openurl saves the installation folder to `globals` dictionary, so you wont do the search process twice. \n\n**0.5.5:**\n* `get_installation_folder` is A nested function inside `openurl`. \n It gets called if `globals()` dictionary does NOT contain Chrome installation location. \n\n**0.5.6:** \n* PEP 8:\n * Changed `sendScreenshot` method name to `send_screenshot`. \n * Changed `newWindow` parameter name to `new_window`.\n\n**0.5.7:** \n* Added `enable_remote_desktop` method.\n* Added value `\"rdp\"` to the `firewallChange` method to allow rdp connections. \n* Change value `\"rule\"` to `\"smb\"` in the `firewallChange` method to allow smb connections. \n* PEP 8:\n * When importing, use `from` **`e`**`psexec import PsPc` \n instead of \n `from Epsexec import PsPc`. \n * Changed `maleVoice` parameter name to `male_voice` in the method `textToSpeech`.\n * Changed `URL` parameter name to `url` in the method `openurl`.\n\n\n**0.5.9:**\n* **`Enhanced-PsExec Now supports 32-bit version of python`**\n* Removed `runAsAdmin` parameter from the `close_chrome` method\n* PEP 8: \n * Changed `isAdmin` parameter name to `run_as_admin` in the method `getShell` \n\n**0.6.0:**\n* **Added method `set_by_config_file`.** \n This method takes at least one parameter: \n 1. `file_name` - string, The name of the file.\n 3. `delimiter` - character, what to seperate ip,username,password with. \n 3. `extern` - boolean. \n The `extern` parameter needs to be included with a `True` value if \n You want to change pc information AFTER initializing the object. \n To Initialize a object with information by a file, do this: \n `pc = PsPc(file=\"file_name.txt\")`\n* Added a `delimiter` parameter to the openurl function.\n\n**0.6.1:**\n* PEP 8:\n * Changed `closeProcess` method name to `close_process`.\n * Changed `procNameOrID` parameter name to `proc_name` in the `close_process` method.\n\n**0.6.2:**\n* PEP 8:\n * Changed `closeChrome` method name to `close_chrome`\n\n**0.6.3:**\n* Added `run_command` method\n* PEP 8:\n * Chagned `setVolume` method name to `set_volume`\n\n## **0.6.4:**\n* Changed class name from `psPc` to `PsPc`\n* Changed `procNameOrID` parameter name to `proc_name` in the `close_process` method.\n* Code changes to make the `set_by_config_file` method better.\n* Added `__repr__`, `__setitem__` and __getitem__`. How to use:\n ```python\n from epsexec import PsPc \n pc = PsPc(i=\"IP\", u=\"username\", p=\"pass\")\n print(pc[0])\n # Output:\n # IP\n pc[0] = \"127.0.0.1\"\n # Sets the ip to 127.0.0.1\n ```\n\n### TODO:\n1) Add a method to import computers from a config file (like in `urls.txt`) \n1.1) DONE!\n2) Give me suggestions! at `EpsexecNoReply@gmail.com`\n\n\n", "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/orishamir/", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "Enhanced-PsExec", "package_url": "https://pypi.org/project/Enhanced-PsExec/", "platform": "", "project_url": "https://pypi.org/project/Enhanced-PsExec/", "project_urls": { "Homepage": "https://github.com/orishamir/" }, "release_url": "https://pypi.org/project/Enhanced-PsExec/0.6.8/", "requires_dist": [ "colorama" ], "requires_python": "", "summary": "Perform miscellaneous operations on A remote computer with Enhanced PsExec", "version": "0.6.8" }, "last_serial": 5692665, "releases": { "0.3.4": [ { "comment_text": "", "digests": { "md5": "88fd37944c7a9a7d709e29627b4691f3", "sha256": "53c6e54667bdf636d6ba9edc05b8b56c79358cb655a911f4071d9bb60d7e1301" }, "downloads": -1, "filename": "Enhanced_PsExec-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "88fd37944c7a9a7d709e29627b4691f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6510, "upload_time": "2019-07-24T22:38:55", "url": "https://files.pythonhosted.org/packages/31/d0/813b2895b56e324e358f20e72e84bd3573897bcbe12f53b6d0566bb77a21/Enhanced_PsExec-0.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fca250ce3c99a51cc3aaf2006c65b3c5", "sha256": "83784f1e8b0f841e8f51f5159fa02386182ce2e0279252f601eda6406e50a9a1" }, "downloads": -1, "filename": "Enhanced PsExec-0.3.4.tar.gz", "has_sig": false, "md5_digest": "fca250ce3c99a51cc3aaf2006c65b3c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5586, "upload_time": "2019-07-24T22:38:57", "url": "https://files.pythonhosted.org/packages/21/21/5f3c68b5b40e0516bee32c6e31918c2f47aa3b0bc2cf8dcc33519f5d12a2/Enhanced%20PsExec-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "fd7503c842ee2556bbf873dd47a8efcc", "sha256": "4de13b497bb7a7064132e7495746653814788306685ea34ab8ea3dcdc4b125c2" }, "downloads": -1, "filename": "Enhanced_PsExec-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "fd7503c842ee2556bbf873dd47a8efcc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6718, "upload_time": "2019-07-25T10:10:25", "url": "https://files.pythonhosted.org/packages/a6/d2/136c2103a40241db0a977d6e6e9e3755211876b307097a49fe028d905aa2/Enhanced_PsExec-0.3.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88bca389861a5c6f271f70c1c83ef38e", "sha256": "edf0cd05ffe112c3949404e3b8dbf08c3d68d9db742c08f972b4e9e9872e4f01" }, "downloads": -1, "filename": "Enhanced PsExec-0.3.5.tar.gz", "has_sig": false, "md5_digest": "88bca389861a5c6f271f70c1c83ef38e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5855, "upload_time": "2019-07-25T10:10:28", "url": "https://files.pythonhosted.org/packages/b0/af/6df64b10dc0b6b4741398d14218ad85dc4defe47e09b71d75b326379b551/Enhanced%20PsExec-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "1a81a0d49149f98b96a298b45318aa69", "sha256": "0cf0ba7f14bb8fec6b5c50eb5ca9da55dd408621b578eb8091070d0c4e2285b0" }, "downloads": -1, "filename": "Enhanced_PsExec-0.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "1a81a0d49149f98b96a298b45318aa69", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6957, "upload_time": "2019-07-25T10:43:23", "url": "https://files.pythonhosted.org/packages/f6/cc/7e504996d14cc99404f28f5e466ef244b2d26e382b69a950a5f919e1a565/Enhanced_PsExec-0.3.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67c5b45cdaf65d4bffa9785e0ee18400", "sha256": "5b324c49e6ad935e1853f88e9e12f37dc6063d87288adfa11a15f36784a85de6" }, "downloads": -1, "filename": "Enhanced PsExec-0.3.6.tar.gz", "has_sig": false, "md5_digest": "67c5b45cdaf65d4bffa9785e0ee18400", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6121, "upload_time": "2019-07-25T10:43:25", "url": "https://files.pythonhosted.org/packages/fd/4d/b1afe5e7362ba317a043bfaf014411398a219ae7a6f7f141948da3fd8bf6/Enhanced%20PsExec-0.3.6.tar.gz" } ], "0.3.7": [], "0.3.8": [], "0.3.9": [ { "comment_text": "", "digests": { "md5": "de38b79f5ed2e56ffa632259ee3f6b58", "sha256": "898cd4a60eb7275430f6118f8cd6f24b9b5703f107e29cc28ce1039d27ba7f1d" }, "downloads": -1, "filename": "Enhanced PsExec-0.3.9.tar.gz", "has_sig": false, "md5_digest": "de38b79f5ed2e56ffa632259ee3f6b58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7188, "upload_time": "2019-07-27T12:05:57", "url": "https://files.pythonhosted.org/packages/a3/9a/79a1fb6ec5d126ae3b15293b7d8e6fb4a74aabdbba583a404d6f1f27b290/Enhanced%20PsExec-0.3.9.tar.gz" } ], "0.4.4": [], "0.4.5": [], "0.4.6": [], "0.5.1": [], "0.5.2": [], "0.5.6": [ { "comment_text": "", "digests": { "md5": "1c2ab7b251b5a64190166c479b9d4865", "sha256": "50fb374ff2700ae862c1466e678ae291e771f0e986199d6c8e9ea3a8ab0d0885" }, "downloads": -1, "filename": "Enhanced_PsExec-0.5.6-py3-none-any.whl", "has_sig": false, "md5_digest": "1c2ab7b251b5a64190166c479b9d4865", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9528, "upload_time": "2019-08-01T13:16:58", "url": "https://files.pythonhosted.org/packages/b2/66/2193ca3bc38697232537f83527094cc1caba318ef8bc15b0c04afd96330b/Enhanced_PsExec-0.5.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d184c4fb02ad87ad10d00eae2a746bed", "sha256": "983b90b6905752362ede1f2fdd45a39e22bc18bfadb22331574f96541d1a9f8c" }, "downloads": -1, "filename": "Enhanced PsExec-0.5.6.tar.gz", "has_sig": false, "md5_digest": "d184c4fb02ad87ad10d00eae2a746bed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8819, "upload_time": "2019-08-01T13:16:59", "url": "https://files.pythonhosted.org/packages/26/0c/3f1336d407bc469872b8be90a5abd1c7c7ac5f9c6026c8155279bc0d87ed/Enhanced%20PsExec-0.5.6.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "187c2c2d976f59fd5db4ef2b50161d7f", "sha256": "d8ccb76d5be13316342809801dc433520c39a62c2309f28a9fe16829d450cc9f" }, "downloads": -1, "filename": "Enhanced_PsExec-0.5.7-py3-none-any.whl", "has_sig": false, "md5_digest": "187c2c2d976f59fd5db4ef2b50161d7f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9840, "upload_time": "2019-08-01T14:32:46", "url": "https://files.pythonhosted.org/packages/6e/f1/8b0eb4910b6fe3b27c5f7219a9ae50c7d91d76f756232600af696a67fc52/Enhanced_PsExec-0.5.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2648897d8428c49dce744697fa65ba5", "sha256": "bbea3060d4bdf7a24b6fc36bfcff16293b4dd16c552f3d0479bfd2d0e7151eb6" }, "downloads": -1, "filename": "Enhanced PsExec-0.5.7.tar.gz", "has_sig": false, "md5_digest": "c2648897d8428c49dce744697fa65ba5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9203, "upload_time": "2019-08-01T14:32:48", "url": "https://files.pythonhosted.org/packages/84/54/3bd5c1c469c46b424639dfe5d5e7cf9225e2bc1a7b0475188bce9f96542c/Enhanced%20PsExec-0.5.7.tar.gz" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "ca0da91916bfb636cffa91f51739952d", "sha256": "59938a0d1c683e450f8b7d6e3a820fdefbea4112b094520cbed69bef549dade8" }, "downloads": -1, "filename": "Enhanced_PsExec-0.5.8-py3-none-any.whl", "has_sig": false, "md5_digest": "ca0da91916bfb636cffa91f51739952d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9876, "upload_time": "2019-08-01T14:56:29", "url": "https://files.pythonhosted.org/packages/45/b5/0fa6ed7b443a32d04f9c99935a1b843529fda1759b30b9cb2e942c65b499/Enhanced_PsExec-0.5.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3341013f67453db86f09daa2245333ee", "sha256": "dc4a81c411d58c511776b6477eb34fa1163eca9513b466c6fdf13a6606b7bec5" }, "downloads": -1, "filename": "Enhanced PsExec-0.5.8.tar.gz", "has_sig": false, "md5_digest": "3341013f67453db86f09daa2245333ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9211, "upload_time": "2019-08-01T14:56:31", "url": "https://files.pythonhosted.org/packages/bb/1a/b4ed58846602608e081abd50d273df8794d133a7031d88972cb3d5cb2bfe/Enhanced%20PsExec-0.5.8.tar.gz" } ], "0.5.9": [ { "comment_text": "", "digests": { "md5": "18c75876df5aa85d104cac64b5404d49", "sha256": "2663da40761528aa0a03b53107c850648c181d4ec137d4391857bc7c993e6c50" }, "downloads": -1, "filename": "Enhanced_PsExec-0.5.9-py3-none-any.whl", "has_sig": false, "md5_digest": "18c75876df5aa85d104cac64b5404d49", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10029, "upload_time": "2019-08-01T20:19:11", "url": "https://files.pythonhosted.org/packages/92/9e/09f6d4de1ea35a9283ed4b8bdef63762b1b73bbc685ee9b0994d69261919/Enhanced_PsExec-0.5.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7cfb11b3e45ebbbbb6d532f6ae1d8d30", "sha256": "0c32dcecf2b455448b87efca31effa5cb0fd9022ec65f862765c05610d201e77" }, "downloads": -1, "filename": "Enhanced PsExec-0.5.9.tar.gz", "has_sig": false, "md5_digest": "7cfb11b3e45ebbbbb6d532f6ae1d8d30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9425, "upload_time": "2019-08-01T20:19:13", "url": "https://files.pythonhosted.org/packages/f5/c1/95050ecb737d21e390758eadd2fbb80c94474ac43eda6e9813600546fbf4/Enhanced%20PsExec-0.5.9.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "bbdf1ea175a0b7b78a716ffb59b72555", "sha256": "574ee4905280996dab6b672b3dc4d6fe78383bad8793e40b7d6e3b24c10426b8" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bbdf1ea175a0b7b78a716ffb59b72555", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11267, "upload_time": "2019-08-01T23:23:11", "url": "https://files.pythonhosted.org/packages/77/2c/6e4153211b411d225e4cdc23cb5db770dcde8e893ba3177d65d9f41d8298/Enhanced_PsExec-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35d3ca407f754b3ef9aa9bd30b22d060", "sha256": "7be9630c36e64afc8bb2b5f45a8c07d31087148e56d0e8ff6529f4d2c54c75a8" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.0.tar.gz", "has_sig": false, "md5_digest": "35d3ca407f754b3ef9aa9bd30b22d060", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11934, "upload_time": "2019-08-01T23:23:13", "url": "https://files.pythonhosted.org/packages/9f/89/598c564bc73a731fcab3e9d14fcd2d1bb7c011cb3af2add5b85b4a8feef4/Enhanced%20PsExec-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "3e950e2005416a2ed57ab9c90d021fe2", "sha256": "b3f1c8c169cb821988daed9f94391c624df10092fa14fae9eb2b1d69a972674a" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3e950e2005416a2ed57ab9c90d021fe2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11279, "upload_time": "2019-08-01T23:28:11", "url": "https://files.pythonhosted.org/packages/22/cb/41824a84d9bae1cdcd7a994b569138458eddb1dfdebbbedc2ae7c377d1e4/Enhanced_PsExec-0.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efd278dad601b309ee9f5963ce192a2f", "sha256": "c343d93dcd4f6db8a1e79deefff1a20f4dda4b43516dbabc4841585378df82f2" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.1.tar.gz", "has_sig": false, "md5_digest": "efd278dad601b309ee9f5963ce192a2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11979, "upload_time": "2019-08-01T23:28:13", "url": "https://files.pythonhosted.org/packages/0f/e7/74fd20f046cd9aeac85def47f100a68804ac049d075b91b178afc4a66649/Enhanced%20PsExec-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "184e0825afcd17c49c5c1762647860da", "sha256": "562731903289b7e035f4d8700c825e5655d104515ff09468b15a3ed351b2469b" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "184e0825afcd17c49c5c1762647860da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11295, "upload_time": "2019-08-01T23:30:50", "url": "https://files.pythonhosted.org/packages/00/dd/535d80ba13ae24fbb454573567b7df3c64073ab9df9a04bd0ec834423cef/Enhanced_PsExec-0.6.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28ce0ec84e073af3e107029716560a6e", "sha256": "8d1879de9703d84dbedda930b70d5cfb9dbf2e502e0bb5ecfed428eb8536ce9e" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.2.tar.gz", "has_sig": false, "md5_digest": "28ce0ec84e073af3e107029716560a6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12006, "upload_time": "2019-08-01T23:30:51", "url": "https://files.pythonhosted.org/packages/f3/9f/6135c24eefd55738ed2c48ceb64ad36ab4b8d9d12de9a93bd5b452991989/Enhanced%20PsExec-0.6.2.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "8d7fca165c702a82eae8f22c916c483f", "sha256": "aeee1f15d5309d32c844e6777372ec20d5e851173188e52b8dd4e546ab6aa288" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.4-py3-none-any.whl", "has_sig": false, "md5_digest": "8d7fca165c702a82eae8f22c916c483f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13135, "upload_time": "2019-08-16T15:05:38", "url": "https://files.pythonhosted.org/packages/96/28/8d01d4e30f7bba252f39f0018caf23d9b6def207356f6bd92d7c66079eae/Enhanced_PsExec-0.6.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "63842e7b8c0c5478c4033c4adbe9f5f8", "sha256": "0c391320ffc0eebc3c54054da675d52a7fca463be9a7c10cbd9c12edd9bd051a" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.4.tar.gz", "has_sig": false, "md5_digest": "63842e7b8c0c5478c4033c4adbe9f5f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13758, "upload_time": "2019-08-16T15:05:40", "url": "https://files.pythonhosted.org/packages/61/86/e187e3ea8c7baa91000919ff72e6e2d4634e888cb029e4d6def38697f8a7/Enhanced%20PsExec-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "12c88edddcf5c8776305c6912005767d", "sha256": "64562d5f7c5f456d244857aed85500e15db91943b4cafd9d0a5e3c1713184fbe" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.5-py3-none-any.whl", "has_sig": false, "md5_digest": "12c88edddcf5c8776305c6912005767d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13144, "upload_time": "2019-08-17T10:17:10", "url": "https://files.pythonhosted.org/packages/b4/62/dfe64e646fead6def0027ad8094929c996dc249756674b90303b816b7033/Enhanced_PsExec-0.6.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4165d2b9d75a75ffc0166af4cbf54bac", "sha256": "4a495eecc99ae304856a2310ab56acdbc6e1fbad947d48be3ee4b36fbd306cb0" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.5.tar.gz", "has_sig": false, "md5_digest": "4165d2b9d75a75ffc0166af4cbf54bac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13854, "upload_time": "2019-08-17T10:17:12", "url": "https://files.pythonhosted.org/packages/82/52/d4288aafa458f04cab5b52ea6bcf5ed76a501309248aa1a12d83cc109ea2/Enhanced%20PsExec-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "0c8f3e615b3aa2cbac4eca0c601724ea", "sha256": "5cc316e2e0384b48619d8d182c4e0b540d13763a9c5e3a90f1a289649d3bd41b" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.6-py3-none-any.whl", "has_sig": false, "md5_digest": "0c8f3e615b3aa2cbac4eca0c601724ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13142, "upload_time": "2019-08-17T19:28:05", "url": "https://files.pythonhosted.org/packages/ae/26/cc767183c6f8837776c5f6f0d5f6d24ec8ed4e11811976523fba93e7e975/Enhanced_PsExec-0.6.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "287610cf4308ba9a4eeb980724115bba", "sha256": "ec3582027a522ac9ee7e901cda73d2159fa5516c3a1126155b80fc542142989d" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.6.tar.gz", "has_sig": false, "md5_digest": "287610cf4308ba9a4eeb980724115bba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14580, "upload_time": "2019-08-17T19:28:07", "url": "https://files.pythonhosted.org/packages/e6/fa/7b9582990c47dc880c60a4e33e500da173752b889098e90fca9b5eae089b/Enhanced%20PsExec-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "0b55261b1ed81110d7240a2d4d56af9d", "sha256": "22bd05d7538fcd81b2119133ec707ccf76cc079b49c570b7a69bfa253a25e02b" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.7-py3-none-any.whl", "has_sig": false, "md5_digest": "0b55261b1ed81110d7240a2d4d56af9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13143, "upload_time": "2019-08-17T19:31:22", "url": "https://files.pythonhosted.org/packages/c6/c3/7257a9fe0295d09b8d9b3a9f21b3cc3b61421083818dfb0570686fd51ad3/Enhanced_PsExec-0.6.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8d9e9e93ea9971ac9e30c4310860b802", "sha256": "7ae6b7416726f5ffdade163ced1e71ff9e5d4c465c2fccb24ab023666d33c3e5" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.7.tar.gz", "has_sig": false, "md5_digest": "8d9e9e93ea9971ac9e30c4310860b802", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14585, "upload_time": "2019-08-17T19:31:23", "url": "https://files.pythonhosted.org/packages/28/85/097d9a3a6dd7d9112a305cc3628a9d3ffe2f0a0667ba4f8eab43a9ec58ef/Enhanced%20PsExec-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "c424aff00fb581a8a4141f4717ccc908", "sha256": "1b9ea774f1e812d15df1edcb9f99b77be44b95f2dc410178f1aae670d3ccc755" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.8-py3-none-any.whl", "has_sig": false, "md5_digest": "c424aff00fb581a8a4141f4717ccc908", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13144, "upload_time": "2019-08-17T19:42:15", "url": "https://files.pythonhosted.org/packages/19/e0/e84b7ec7870e2628f4443a5bebd49ab2c0d1b4830d726ffef8b408054944/Enhanced_PsExec-0.6.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ed3bdb8da37dcedfedb27456d3ec940", "sha256": "5d312440d8b99f7c0957d71ddfb6329de8f58a23798e8d3037c95eeae0f35a12" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.8.tar.gz", "has_sig": false, "md5_digest": "2ed3bdb8da37dcedfedb27456d3ec940", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14577, "upload_time": "2019-08-17T19:42:16", "url": "https://files.pythonhosted.org/packages/a0/0a/4186f8482e9c24b7311b5098b749af48a34710ffb12dc698e2e6b73ae086/Enhanced%20PsExec-0.6.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c424aff00fb581a8a4141f4717ccc908", "sha256": "1b9ea774f1e812d15df1edcb9f99b77be44b95f2dc410178f1aae670d3ccc755" }, "downloads": -1, "filename": "Enhanced_PsExec-0.6.8-py3-none-any.whl", "has_sig": false, "md5_digest": "c424aff00fb581a8a4141f4717ccc908", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13144, "upload_time": "2019-08-17T19:42:15", "url": "https://files.pythonhosted.org/packages/19/e0/e84b7ec7870e2628f4443a5bebd49ab2c0d1b4830d726ffef8b408054944/Enhanced_PsExec-0.6.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ed3bdb8da37dcedfedb27456d3ec940", "sha256": "5d312440d8b99f7c0957d71ddfb6329de8f58a23798e8d3037c95eeae0f35a12" }, "downloads": -1, "filename": "Enhanced PsExec-0.6.8.tar.gz", "has_sig": false, "md5_digest": "2ed3bdb8da37dcedfedb27456d3ec940", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14577, "upload_time": "2019-08-17T19:42:16", "url": "https://files.pythonhosted.org/packages/a0/0a/4186f8482e9c24b7311b5098b749af48a34710ffb12dc698e2e6b73ae086/Enhanced%20PsExec-0.6.8.tar.gz" } ] }