powermolegui


Namepowermolegui JSON
Version 0.2.16 PyPI version JSON
download
home_pagehttps://github.com/yutanicorp/powermolegui
Summarypowermole(gui) allows you to connect to a target destination host via one or more intermediaries, offering a variety of modes (FOR and TOR) and options (TRANSFER and COMMAND) to perform a variety of tasks
upload_time2023-08-31 21:53:39
maintainer
docs_urlNone
authorVincent Schouten
requires_python
licenseMIT
keywords powermole powermolegui ssh proxyjump forwarding tor gui security
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====================
powermole/gui
====================

This program will let you perform port forwarding, redirect internet traffic, and transfer files to, and issue commands on,
a host without making a direct connection (ie. via one or more intermediate hosts), which would undoubtedly compromise your privacy.
This solution can only work when you or your peers own one or more hosts as this program communicates with SSH servers.
This program can be viewed as a multi-versatile wrapper around SSH with the ProxyJump directive enabled.
Powermole automatically creates a ssh/scp configuration file to enable key-based authentication with the intermediate hosts.

Powermolegui provides two modes:

* TOR mode

  *  The target destination host acts as an exit node (in TOR terminology).

* FOR(warding) mode

  *  Connections are forwarded to the target destination host.

Regardless which mode is enabled, several options are presented when the tunnel is established:

* COMMAND

  * This option provides a rudimentary terminal interface to provide access to OS services on the target destination host.

* TRANSFER

  * This options allows selected files to be transferred to the target destination host.


How it works
============

Terminology
-----------

* **Tunnel** is an established connection from localhost to target destination host through intermediate hosts (called gateways).
* **Agent** is a python module running on the target destination host. It performs various functions.
* **Instructor** sends data and instructions to the *Agent* by utilizing a forwarded connection provided by *Tunnel*.

This cli package uses the lib package to create a Tunnel and models the specific Instructor to communicate with the Agent (on the target destination host).
The Agent communicates directly with the operating system of the host on which it resides.
The Agent is responsible to redirect internet traffic (TOR mode), put files (TRANSFER option), and issue commands (COMMAND option).
For port forwarding (FOR mode), the program simply relies on SSH itself. The Agent also responds to heartbeats send by localhost to check if connection is still intact.

.. image:: ../img/illustration_how_it_works.png

For more details, including illustrations, please consult the `powermole library <https://github.com/yutanicorp/powermolelib>`__ on GitHub.


Requirements (functional)
=========================

* The client program only works on macOS and Linux (tested Red Hat, CentOS, Fedora).
* The intermediate hosts (gateways) must be Linux.
* The client and all hosts have Python >3.9 as their default interpreter.
* You need *at least* 1 gateway.
* You have the associated SSH identification file (i.e. the private key) for these intermediaries.
* Due to security reasons, SSH password login is not supported.
* This program doesn't require root privileges on the client (*to be confirmed*).


Requirements (software)
=======================

Linux
-----

Follow these instructions to get Tkinter working on the *client*.

* Install Tk interface library

  * ``dnf install python3-tkinter``

macOS (Ventura 13.4)
--------------------

Follow these instructions to get Tkinter working with pyenv on the *client*.

* Install Xcode

* Install Brew

  * ``/bin/bash -c " $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh ")``

  * ``brew install pyenv``

* Download and install (ActiveTcl-8.6) Tcl/Tk libraries

  * The Tkinter module is included with core Python, but you'll need a version of Tcl/Tk on your system to compile it against.

    * Visit the ActiveState's website https://www.activestate.com/products/tcl/.
    * Register and download Tcl/Tk libraries for free.

* Edit Zsh shell file

  * Comment out any references to the system's Python interpreter

  * Add the following lines:

    * ``export PYENV_ROOT="$HOME/.pyenv"``
    * ``command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"``
    * ``eval "$(pyenv init -)"``

* Install Python interpreters (eg. 3.10.11)

  * ``pyenv install 3.10.11``
  * ``pyenv global 3.10.11``

* Test successful build of Python

  * ``python -m tkinter -c 'tkinter._test()'``


Installation
============

If you use the standard packet manager:

.. code-block:: bash

    $ pip install powermolegui

or if you use pipx:

.. code-block:: bash

    $ pipx install powermolegui


Usage
=====

Issue this command to actually execute the program.

.. code-block:: bash

    $ powermolegui

Powermole allows you to enter one of the modes listed below.
This is done by opening a `Configuration <https://github.com/yutanicorp/powermolegui#configuration>`__ file.

The JSON file contains directives to enter one of the modes listed below:

* TOR mode
* FOR(warding) mode

In TOR mode, the target destination host acts as an exit node (in TOR terminology).

.. image:: ../img/illustration_tor.png

In FOR(warding) mode, connections are forwarded to the target destination host, on which, for example, an email server (e.g. Postfix) is running and a local email client want to connect to its listening ports.

.. image:: ../img/illustration_forwarding.png


Configuration
=============

To enable TOR mode
------------------

Edit the JSON document in the configuration file to incorporate the keywords **mode**, **gateways**, **destination**, and *optionally* **application** (shown below) and **port**.
When **application** is specified, powermole will start the application of choice once the tunnel is ready.
Please note, if an instance of that application (eg. Firefox) is already running, powermole will terminate immediately.
In the example below, powermole drills through 2 intermediate hosts.
Hitting Ctrl-C in terminal will dismantle the Tunnel (and stop the application).

.. code-block:: JSON

    {
    "mode":         "TOR",
    "gateways":    [{"host_ip": "192.168.56.10",
                     "user": "root",
                     "identity_file": "/Users/vincent/.ssh/id_rsa_pl"},
                    {"host_ip": "192.168.56.11",
                     "user": "root",
                     "identity_file": "/Users/vincent/.ssh/id_rsa_cz"}],
    "destination": {"host_ip": "192.168.56.12",
                    "user": "root",
                    "identity_file": "/Users/vincent/.ssh/id_rsa_nl"},
    "application": {"binary_name": "firefox",
                    "binary_location": "/usr/bin/firefox"}
    }


To enable FOR(warding) mode
---------------------------

Edit the JSON document to incorporate the keywords **mode**, **gateways**, **destination**, **forwarders**, and *optionally* **application** and **port** (shown below).
In the example below, powermole drills through 1 intermediate host.
Hitting Ctrl-C in terminal will dismantle the Tunnel.

.. code-block:: JSON

    {
    "mode":         "FOR",
    "gateways":    [{"host_ip": "192.168.56.10",
                     "port": 22,
                     "user": "root",
                     "identity_file": "/Users/vincent/.ssh/id_rsa_pl"}],
    "destination": {"host_ip": "192.168.56.11",
                    "port": 22,
                    "user": "root",
                    "identity_file": "/Users/vincent/.ssh/id_rsa_cz"},
    "forwarders": [{"local_port": 1587,
                    "remote_interface": "localhost",
                    "remote_port": 587},
                   {"local_port": 1995,
                    "remote_interface": "localhost",
                    "remote_port": 995}]
    }


Error
=====

When running into issues, consider investigating the log messages of type 'debug' sent to the shell and/or
consult the log file in /tmp on destination host.

Development Workflow
====================

The workflow supports the following steps

 * lint
 * test
 * build
 * document
 * upload
 * graph

These actions are supported out of the box by the corresponding scripts under _CI/scripts directory with sane defaults based on best practices.
Sourcing setup_aliases.ps1 for windows powershell or setup_aliases.sh in bash on Mac or Linux will provide with handy aliases for the shell of all those commands prepended with an underscore.

The bootstrap script creates a .venv directory inside the project directory hosting the virtual environment. It uses pipenv for that.
It is called by all other scripts before they do anything. So one could simple start by calling _lint and that would set up everything before it tried to actually lint the project

Once the code is ready to be delivered the _tag script should be called accepting one of three arguments, patch, minor, major following the semantic versioning scheme.
So for the initial delivery one would call

    $ _tag --minor

which would bump the version of the project to 0.1.0 tag it in git and do a push and also ask for the change and automagically update HISTORY.rst with the version and the change provided.


So the full workflow after git is initialized is:

 * repeat as necessary (of course it could be test - code - lint :) )
   * code
   * lint
   * test
 * commit and push
 * develop more through the code-lint-test cycle
 * tag (with the appropriate argument)
 * build
 * upload (if you want to host your package in pypi)
 * document (of course this could be run at any point)


Important Information
=====================

This template is based on pipenv. In order to be compatible with requirements.txt so the actual created package can be used by any part of the existing python ecosystem some hacks were needed.
So when building a package out of this **do not** simple call

    $ python setup.py sdist

**as this will produce an unusable artifact with files missing.**
Instead use the provided build and upload scripts that create all the necessary files in the artifact.


Documentation
=============

* Documentation: https://powermolegui.readthedocs.org/en/latest

Contributing
============

Please read `CONTRIBUTING.md <https://gist.github.com/PurpleBooth/b24679402957c63ec426>`_ for details on our code of conduct, and the process for submitting pull requests to us.


Authors
=======

* **Vincent Schouten** - `LINK <https://github.com/yutanicorp>`_

See also the list of `contributors <https://github.com/your/project/contributors>`_ who participated in this project.


License
=======

This project is licensed under the MIT License - see the `LICENSE.md <LICENSE.md>`_ file for details


Acknowledgments
===============

* Costas Tyfoxylos
* MisterDaneel (developer of pysoxy)




History
-------

0.0.1 (08-10-2020)
---------------------

* First code creation


0.1.0 (26-03-2021)
------------------

* Add several modules, add feature to create effects for canvas items, reword documentation, refactor two main window canvas attributes


0.2.0 (30-03-2021)
------------------

* Add feature for a user to send commands, add code for changing the state of menu bar entries, document more comments and docstrings


0.2.1 (11-04-2021)
------------------

* Add docstrings for adapter classes, bump dependency to latest powermole library package


0.2.2 (18-05-2021)
------------------

* Refactor main window code for simplicity and readability


0.2.3 (25-05-2021)
------------------

* Redraw Agent's movement to be more accurate, refactor a bunch of public methods into protected ones, add docstrings for all canvas items, remove the creation of the canvas item objects during initialization, remove the scaling feature


0.2.4 (01-06-2021)
------------------

* Reword status messages in status banner, reword documentation, bump dependency to latest powermole library package, add feature to set heartbeat interval value


0.2.5 (06-06-2021)
------------------

* Bump dependency to latest powermole library package, fix bug to terminate the right thread, redraw animation for demo purposes, reword commit messages associated with releases, add instructions how to execute powermolegui, reword list of keywords for PyPi


0.2.6 (02-12-2021)
------------------

* Bump dependency to latest powermole library package


0.2.7 (28-12-2021)
------------------

* Bump dependency to latest powermole library package, reword email address, and fix bug responsible for crashing when user hits Ctrl+C in shell


0.2.8 (20-08-2022)
------------------

* Document paragraph Requirements for macOS Monterey


0.2.9 (21-08-2022)
------------------

* Fix unexpected indentation in README


0.2.10 (29-12-2022)
-------------------

* Fix security vulnerability in 3rd party package


0.2.11 (19-02-2023)
-------------------

* Fix development workflow


0.2.12 (31-03-2023)
-------------------

* Fix security vulnerability, fix linting errors, bump dependency


0.2.13 (07-06-2023)
-------------------

* Fix development workflow, and document paragraph about software requirements


0.2.14 (08-06-2023)
-------------------

* Fix syntax error in documentation


0.2.15 (18-06-2023)
-------------------

* Document introductory paragraph and bump dependency to latest powermole library package


0.2.16 (31-08-2023)
-------------------

* Add Read The Docs configuration file v2, fix development workflow step _upload, fix command-option, bump dependencies

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/yutanicorp/powermolegui",
    "name": "powermolegui",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "powermole powermolegui ssh proxyjump forwarding tor gui security",
    "author": "Vincent Schouten",
    "author_email": "powermole@protonmail.com",
    "download_url": "https://files.pythonhosted.org/packages/5c/9f/bce00fc9438b0ec7edf5478a95ff245256bdb63d6aaaedd7f70b4a4eb791/powermolegui-0.2.16.tar.gz",
    "platform": null,
    "description": "====================\npowermole/gui\n====================\n\nThis program will let you perform port forwarding, redirect internet traffic, and transfer files to, and issue commands on,\na host without making a direct connection (ie. via one or more intermediate hosts), which would undoubtedly compromise your privacy.\nThis solution can only work when you or your peers own one or more hosts as this program communicates with SSH servers.\nThis program can be viewed as a multi-versatile wrapper around SSH with the ProxyJump directive enabled.\nPowermole automatically creates a ssh/scp configuration file to enable key-based authentication with the intermediate hosts.\n\nPowermolegui provides two modes:\n\n* TOR mode\n\n  *  The target destination host acts as an exit node (in TOR terminology).\n\n* FOR(warding) mode\n\n  *  Connections are forwarded to the target destination host.\n\nRegardless which mode is enabled, several options are presented when the tunnel is established:\n\n* COMMAND\n\n  * This option provides a rudimentary terminal interface to provide access to OS services on the target destination host.\n\n* TRANSFER\n\n  * This options allows selected files to be transferred to the target destination host.\n\n\nHow it works\n============\n\nTerminology\n-----------\n\n* **Tunnel** is an established connection from localhost to target destination host through intermediate hosts (called gateways).\n* **Agent** is a python module running on the target destination host. It performs various functions.\n* **Instructor** sends data and instructions to the *Agent* by utilizing a forwarded connection provided by *Tunnel*.\n\nThis cli package uses the lib package to create a Tunnel and models the specific Instructor to communicate with the Agent (on the target destination host).\nThe Agent communicates directly with the operating system of the host on which it resides.\nThe Agent is responsible to redirect internet traffic (TOR mode), put files (TRANSFER option), and issue commands (COMMAND option).\nFor port forwarding (FOR mode), the program simply relies on SSH itself. The Agent also responds to heartbeats send by localhost to check if connection is still intact.\n\n.. image:: ../img/illustration_how_it_works.png\n\nFor more details, including illustrations, please consult the `powermole library <https://github.com/yutanicorp/powermolelib>`__ on GitHub.\n\n\nRequirements (functional)\n=========================\n\n* The client program only works on macOS and Linux (tested Red Hat, CentOS, Fedora).\n* The intermediate hosts (gateways) must be Linux.\n* The client and all hosts have Python >3.9 as their default interpreter.\n* You need *at least* 1 gateway.\n* You have the associated SSH identification file (i.e. the private key) for these intermediaries.\n* Due to security reasons, SSH password login is not supported.\n* This program doesn't require root privileges on the client (*to be confirmed*).\n\n\nRequirements (software)\n=======================\n\nLinux\n-----\n\nFollow these instructions to get Tkinter working on the *client*.\n\n* Install Tk interface library\n\n  * ``dnf install python3-tkinter``\n\nmacOS (Ventura 13.4)\n--------------------\n\nFollow these instructions to get Tkinter working with pyenv on the *client*.\n\n* Install Xcode\n\n* Install Brew\n\n  * ``/bin/bash -c \" $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh \")``\n\n  * ``brew install pyenv``\n\n* Download and install (ActiveTcl-8.6) Tcl/Tk libraries\n\n  * The Tkinter module is included with core Python, but you'll need a version of Tcl/Tk on your system to compile it against.\n\n    * Visit the ActiveState's website https://www.activestate.com/products/tcl/.\n    * Register and download Tcl/Tk libraries for free.\n\n* Edit Zsh shell file\n\n  * Comment out any references to the system's Python interpreter\n\n  * Add the following lines:\n\n    * ``export PYENV_ROOT=\"$HOME/.pyenv\"``\n    * ``command -v pyenv >/dev/null || export PATH=\"$PYENV_ROOT/bin:$PATH\"``\n    * ``eval \"$(pyenv init -)\"``\n\n* Install Python interpreters (eg. 3.10.11)\n\n  * ``pyenv install 3.10.11``\n  * ``pyenv global 3.10.11``\n\n* Test successful build of Python\n\n  * ``python -m tkinter -c 'tkinter._test()'``\n\n\nInstallation\n============\n\nIf you use the standard packet manager:\n\n.. code-block:: bash\n\n    $ pip install powermolegui\n\nor if you use pipx:\n\n.. code-block:: bash\n\n    $ pipx install powermolegui\n\n\nUsage\n=====\n\nIssue this command to actually execute the program.\n\n.. code-block:: bash\n\n    $ powermolegui\n\nPowermole allows you to enter one of the modes listed below.\nThis is done by opening a `Configuration <https://github.com/yutanicorp/powermolegui#configuration>`__ file.\n\nThe JSON file contains directives to enter one of the modes listed below:\n\n* TOR mode\n* FOR(warding) mode\n\nIn TOR mode, the target destination host acts as an exit node (in TOR terminology).\n\n.. image:: ../img/illustration_tor.png\n\nIn FOR(warding) mode, connections are forwarded to the target destination host, on which, for example, an email server (e.g. Postfix) is running and a local email client want to connect to its listening ports.\n\n.. image:: ../img/illustration_forwarding.png\n\n\nConfiguration\n=============\n\nTo enable TOR mode\n------------------\n\nEdit the JSON document in the configuration file to incorporate the keywords **mode**, **gateways**, **destination**, and *optionally* **application** (shown below) and **port**.\nWhen **application** is specified, powermole will start the application of choice once the tunnel is ready.\nPlease note, if an instance of that application (eg. Firefox) is already running, powermole will terminate immediately.\nIn the example below, powermole drills through 2 intermediate hosts.\nHitting Ctrl-C in terminal will dismantle the Tunnel (and stop the application).\n\n.. code-block:: JSON\n\n    {\n    \"mode\":         \"TOR\",\n    \"gateways\":    [{\"host_ip\": \"192.168.56.10\",\n                     \"user\": \"root\",\n                     \"identity_file\": \"/Users/vincent/.ssh/id_rsa_pl\"},\n                    {\"host_ip\": \"192.168.56.11\",\n                     \"user\": \"root\",\n                     \"identity_file\": \"/Users/vincent/.ssh/id_rsa_cz\"}],\n    \"destination\": {\"host_ip\": \"192.168.56.12\",\n                    \"user\": \"root\",\n                    \"identity_file\": \"/Users/vincent/.ssh/id_rsa_nl\"},\n    \"application\": {\"binary_name\": \"firefox\",\n                    \"binary_location\": \"/usr/bin/firefox\"}\n    }\n\n\nTo enable FOR(warding) mode\n---------------------------\n\nEdit the JSON document to incorporate the keywords **mode**, **gateways**, **destination**, **forwarders**, and *optionally* **application** and **port** (shown below).\nIn the example below, powermole drills through 1 intermediate host.\nHitting Ctrl-C in terminal will dismantle the Tunnel.\n\n.. code-block:: JSON\n\n    {\n    \"mode\":         \"FOR\",\n    \"gateways\":    [{\"host_ip\": \"192.168.56.10\",\n                     \"port\": 22,\n                     \"user\": \"root\",\n                     \"identity_file\": \"/Users/vincent/.ssh/id_rsa_pl\"}],\n    \"destination\": {\"host_ip\": \"192.168.56.11\",\n                    \"port\": 22,\n                    \"user\": \"root\",\n                    \"identity_file\": \"/Users/vincent/.ssh/id_rsa_cz\"},\n    \"forwarders\": [{\"local_port\": 1587,\n                    \"remote_interface\": \"localhost\",\n                    \"remote_port\": 587},\n                   {\"local_port\": 1995,\n                    \"remote_interface\": \"localhost\",\n                    \"remote_port\": 995}]\n    }\n\n\nError\n=====\n\nWhen running into issues, consider investigating the log messages of type 'debug' sent to the shell and/or\nconsult the log file in /tmp on destination host.\n\nDevelopment Workflow\n====================\n\nThe workflow supports the following steps\n\n * lint\n * test\n * build\n * document\n * upload\n * graph\n\nThese actions are supported out of the box by the corresponding scripts under _CI/scripts directory with sane defaults based on best practices.\nSourcing setup_aliases.ps1 for windows powershell or setup_aliases.sh in bash on Mac or Linux will provide with handy aliases for the shell of all those commands prepended with an underscore.\n\nThe bootstrap script creates a .venv directory inside the project directory hosting the virtual environment. It uses pipenv for that.\nIt is called by all other scripts before they do anything. So one could simple start by calling _lint and that would set up everything before it tried to actually lint the project\n\nOnce the code is ready to be delivered the _tag script should be called accepting one of three arguments, patch, minor, major following the semantic versioning scheme.\nSo for the initial delivery one would call\n\n    $ _tag --minor\n\nwhich would bump the version of the project to 0.1.0 tag it in git and do a push and also ask for the change and automagically update HISTORY.rst with the version and the change provided.\n\n\nSo the full workflow after git is initialized is:\n\n * repeat as necessary (of course it could be test - code - lint :) )\n   * code\n   * lint\n   * test\n * commit and push\n * develop more through the code-lint-test cycle\n * tag (with the appropriate argument)\n * build\n * upload (if you want to host your package in pypi)\n * document (of course this could be run at any point)\n\n\nImportant Information\n=====================\n\nThis template is based on pipenv. In order to be compatible with requirements.txt so the actual created package can be used by any part of the existing python ecosystem some hacks were needed.\nSo when building a package out of this **do not** simple call\n\n    $ python setup.py sdist\n\n**as this will produce an unusable artifact with files missing.**\nInstead use the provided build and upload scripts that create all the necessary files in the artifact.\n\n\nDocumentation\n=============\n\n* Documentation: https://powermolegui.readthedocs.org/en/latest\n\nContributing\n============\n\nPlease read `CONTRIBUTING.md <https://gist.github.com/PurpleBooth/b24679402957c63ec426>`_ for details on our code of conduct, and the process for submitting pull requests to us.\n\n\nAuthors\n=======\n\n* **Vincent Schouten** - `LINK <https://github.com/yutanicorp>`_\n\nSee also the list of `contributors <https://github.com/your/project/contributors>`_ who participated in this project.\n\n\nLicense\n=======\n\nThis project is licensed under the MIT License - see the `LICENSE.md <LICENSE.md>`_ file for details\n\n\nAcknowledgments\n===============\n\n* Costas Tyfoxylos\n* MisterDaneel (developer of pysoxy)\n\n\n\n\nHistory\n-------\n\n0.0.1 (08-10-2020)\n---------------------\n\n* First code creation\n\n\n0.1.0 (26-03-2021)\n------------------\n\n* Add several modules, add feature to create effects for canvas items, reword documentation, refactor two main window canvas attributes\n\n\n0.2.0 (30-03-2021)\n------------------\n\n* Add feature for a user to send commands, add code for changing the state of menu bar entries, document more comments and docstrings\n\n\n0.2.1 (11-04-2021)\n------------------\n\n* Add docstrings for adapter classes, bump dependency to latest powermole library package\n\n\n0.2.2 (18-05-2021)\n------------------\n\n* Refactor main window code for simplicity and readability\n\n\n0.2.3 (25-05-2021)\n------------------\n\n* Redraw Agent's movement to be more accurate, refactor a bunch of public methods into protected ones, add docstrings for all canvas items, remove the creation of the canvas item objects during initialization, remove the scaling feature\n\n\n0.2.4 (01-06-2021)\n------------------\n\n* Reword status messages in status banner, reword documentation, bump dependency to latest powermole library package, add feature to set heartbeat interval value\n\n\n0.2.5 (06-06-2021)\n------------------\n\n* Bump dependency to latest powermole library package, fix bug to terminate the right thread, redraw animation for demo purposes, reword commit messages associated with releases, add instructions how to execute powermolegui, reword list of keywords for PyPi\n\n\n0.2.6 (02-12-2021)\n------------------\n\n* Bump dependency to latest powermole library package\n\n\n0.2.7 (28-12-2021)\n------------------\n\n* Bump dependency to latest powermole library package, reword email address, and fix bug responsible for crashing when user hits Ctrl+C in shell\n\n\n0.2.8 (20-08-2022)\n------------------\n\n* Document paragraph Requirements for macOS Monterey\n\n\n0.2.9 (21-08-2022)\n------------------\n\n* Fix unexpected indentation in README\n\n\n0.2.10 (29-12-2022)\n-------------------\n\n* Fix security vulnerability in 3rd party package\n\n\n0.2.11 (19-02-2023)\n-------------------\n\n* Fix development workflow\n\n\n0.2.12 (31-03-2023)\n-------------------\n\n* Fix security vulnerability, fix linting errors, bump dependency\n\n\n0.2.13 (07-06-2023)\n-------------------\n\n* Fix development workflow, and document paragraph about software requirements\n\n\n0.2.14 (08-06-2023)\n-------------------\n\n* Fix syntax error in documentation\n\n\n0.2.15 (18-06-2023)\n-------------------\n\n* Document introductory paragraph and bump dependency to latest powermole library package\n\n\n0.2.16 (31-08-2023)\n-------------------\n\n* Add Read The Docs configuration file v2, fix development workflow step _upload, fix command-option, bump dependencies\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "powermole(gui) allows you to connect to a target destination host via one or more intermediaries, offering a variety of modes (FOR and TOR) and options (TRANSFER and COMMAND) to perform a variety of tasks",
    "version": "0.2.16",
    "project_urls": {
        "Homepage": "https://github.com/yutanicorp/powermolegui"
    },
    "split_keywords": [
        "powermole",
        "powermolegui",
        "ssh",
        "proxyjump",
        "forwarding",
        "tor",
        "gui",
        "security"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c9fbce00fc9438b0ec7edf5478a95ff245256bdb63d6aaaedd7f70b4a4eb791",
                "md5": "a446dcb1466ad1a482fbcaf6d04dce27",
                "sha256": "668d9d2a1112fb78d9acfe9d7b10ed67b5d49aef736b02759354fb63fe89ace7"
            },
            "downloads": -1,
            "filename": "powermolegui-0.2.16.tar.gz",
            "has_sig": false,
            "md5_digest": "a446dcb1466ad1a482fbcaf6d04dce27",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 116104,
            "upload_time": "2023-08-31T21:53:39",
            "upload_time_iso_8601": "2023-08-31T21:53:39.540032Z",
            "url": "https://files.pythonhosted.org/packages/5c/9f/bce00fc9438b0ec7edf5478a95ff245256bdb63d6aaaedd7f70b4a4eb791/powermolegui-0.2.16.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-31 21:53:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yutanicorp",
    "github_project": "powermolegui",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "powermolegui"
}
        
Elapsed time: 0.10516s