GrapheneX


NameGrapheneX JSON
Version 1.6.0 PyPI version JSON
download
home_pagehttps://graphenex.github.io
SummaryAutomated System Hardening Framework for Linux & Windows
upload_time2024-01-02 11:59:48
maintainer
docs_urlNone
authorgrapheneX contributors
requires_python>=3.10,<4.0
licenseGPL-3.0-or-later
keywords hardening hardening-commands security
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![grapheneX](https://socialify.git.ci/grapheneX/grapheneX/image?description=1&font=Raleway&forks=1&issues=1&language=1&logo=https%3A%2F%2Fraw.githubusercontent.com%2FgrapheneX%2FgrapheneX%2Fmaster%2Fgraphenex%2Fcore%2Fweb%2Fstatic%2Fimages%2Fgraphenex_logo_white.png&owner=1&pulls=1&stargazers=1&theme=Dark)

# grapheneX [![Release](https://img.shields.io/github/release/grapheneX/grapheneX.svg?style=flat-square)](https://github.com/grapheneX/grapheneX/releases) [![License](https://img.shields.io/github/license/grapheneX/grapheneX.svg?style=flat-square)](./LICENSE)

> In computing, hardening is usually the process of securing a system by reducing its surface of vulnerability, which is larger when a system performs more functions; in principle a single-function system is more secure than a multipurpose one. Reducing available ways of attack typically includes changing default passwords, the removal of unnecessary software, unnecessary usernames or logins, and the disabling or removal of unnecessary services.

`grapheneX` project aims to provide a framework for securing the system with hardening commands automatically.
It's designed for the end user as well as the Linux and Windows developers due to the interface options. (interactive shell/web interface)
In addition to that, `grapheneX` can be used to secure a web server/application.

> The project name is derived from 'graphene'. Graphene is a one-atom-thick layer of carbon atoms arranged in a hexagonal lattice. In proportion to its thickness, it is about 100 times stronger than the strongest steel.

Hardening commands and the scopes of those commands are referred to `modules` and the `namespaces` in the project.
They exist at the `modules.json` file after installation. (`$PYPATH/site-packages/graphenex/modules.json`)
Additionally, it's possible to add, edit or remove modules and namespaces.
Also, the hardening operation can be automated with the presets that contain a list of modules.

Currently, grapheneX supports the hardening sections below. Each of these namespaces contains more than one module.

• Firewall  
• User  
• Network  
• Services  
• Kernel  
• Filesystem  
• Other

Listen to The Python Podcast.\_\_init\_\_: [Automate Your Server Security With GrapheneX - Episode 237](https://www.pythonpodcast.com/graphenex-server-security-episode-237/)

## Installation

You can install `grapheneX` with `pip`. Usually this is the easiest way:

```
pip install graphenex
```

Or if you get an error try:

```
python3 -m pip install graphenex
```

Additionally, [poetry](https://python-poetry.org/) can be used for development:

```
poetry install        # install the dependencies
poetry run grapheneX  # run grapheneX
```

### Dependencies

- [Flask-SocketIO](https://flask-socketio.readthedocs.io/en/latest/)
  - [Flask](http://flask.pocoo.org/)
- [coloredlogs](https://pypi.org/project/coloredlogs/)
- [colorama](https://pypi.org/project/colorama/)
- [terminaltables](https://pypi.org/project/terminaltables/)
- [PyInquirer](https://pypi.org/project/PyInquirer/)

## Usage

### Command Line Arguments

```
usage: grapheneX [-h] [-v] [-w] [--open] [host:port]
```

```
positional arguments:
  host:port      host and port to run the web interface

optional arguments:
  -h, --help     show this help message and exit
  -v, --version  show version information
  -w, --web      run the grapheneX web server
  --open         open browser on web server start
```

### Interactive Shell

Execute the `grapheneX` command in order to start the interactive shell.

![GrapheneX Interactive Shell](https://user-images.githubusercontent.com/24392180/61892273-16e7af80-af14-11e9-91d8-8c7682439f06.gif)

• Animated gifs and screenshots added for demonstration and include the test execution of the unversioned grapheneX. Use `grapheneX` or `python -m graphenex` command for the execution.  
• grapheneX currently supports [Python3.10](https://www.python.org/)

### Web Interface

Execute the `grapheneX` with the `-w` or `--web` argument in order to start the web server.

![Starting the Web Server](https://user-images.githubusercontent.com/24392180/61898426-f292cf80-af21-11e9-9edc-21f0351bbf5b.gif)

• Web interface has the authentication system that requires an `access token`. Once the user verifies her/his identity with the given token at the shell, grapheneX creates a session for further use.

![GrapheneX Web Interface I](https://user-images.githubusercontent.com/24392180/61898886-fd019900-af22-11e9-9d1e-e2a58bee6651.gif)

![GrapheneX Web Interface II](https://user-images.githubusercontent.com/24392180/60525198-9bb92200-9cf6-11e9-80c6-9b69b5d10c81.gif)

• The default host and port value are `localhost:8080`. It can be changed via the `host:port` argument as shown below.

```
python3 -m graphenex -w 192.168.1.36:8090
```

• Use `--open` argument to open the browser after the server start.

```
python3 -m graphenex -w --open
```

## CLI Commands

| Command | Description                                                                   |
| ------- | ----------------------------------------------------------------------------- |
| back    | Go back from namespace or module                                              |
| clear   | Clear the terminal                                                            |
| exit    | Exit interactive shell                                                        |
| harden  | Execute the hardening command                                                 |
| help    | List available commands with "help" or show detailed help with "help `<cmd>`" |
| info    | Show information about the module                                             |
| list    | List available hardening modules                                              |
| manage  | Add, edit or delete module                                                    |
| preset  | Show/execute the hardening module presets                                     |
| search  | Search for modules                                                            |
| switch  | Switch between modules or namespaces                                          |
| use     | Use a hardening module                                                        |
| web     | Start the grapheneX web server                                                |

### help

`help` or `?` shows the commands list above.  
`help [CMD]` shows the detailed usage of given command.

### list

Show the available modules in a table.
For example:

![List Command](https://user-images.githubusercontent.com/24392180/60528104-5e579300-9cfc-11e9-9a01-ac827fd365b1.gif)

### switch

`switch` command can be used to switch to a namespace or use a module. It's helpful if you want to see a list of modules in a namespace.

```
switch [NAMESPACE]
```

![Switch Command](https://user-images.githubusercontent.com/24392180/60528986-46810e80-9cfe-11e9-9870-00333657fdee.gif)

• Supports autocomplete for namespaces.

Also, using the `switch` command like this is possible:

```
switch [NAMESPACE]/[MODULE]
```

It's the equivalent of the `use` command in this situation.

### use

Serves the purpose of selecting a hardening module.

```
use [MODULE]
```

![Use Command](https://user-images.githubusercontent.com/24392180/60530449-69f98880-9d01-11e9-93a9-4f612e4ed7ad.gif)

• Supports autocomplete for modules.

### info

Shows information (namespace, description, OS command) about the selected module.

![Info Command](https://user-images.githubusercontent.com/24392180/60531173-02dcd380-9d03-11e9-9410-a59e6ed3d5a4.gif)

### harden

Executes the hardening command of the selected module.

![Harden Command](https://user-images.githubusercontent.com/24392180/60531788-67e4f900-9d04-11e9-8960-2d2f2a7289f0.gif)

### preset

grapheneX has presets that contain particular modules for automating the hardening operation. Presets can be customized with the `modules.json` file, and they can contain any supported module. `preset` command shows the available module presets and `preset [PRESET]` runs the hardening commands in a preset.

![Show Presets](https://user-images.githubusercontent.com/24392180/60548388-a097c900-9d2a-11e9-8927-bbbd90493430.gif)

An example `preset` command output is shown above. Below, a preset that contains 2 modules is selected and hardening modules executed.

![Preset Command](https://user-images.githubusercontent.com/24392180/60548929-0cc6fc80-9d2c-11e9-9bff-01882feb6b9f.gif)

`preset` command supports autocomplete for preset names. Also, it supports an option for asking permission between each hardening command execution so that the user knows what he/she is doing.

• Adding module presets

Presets are stored in the `presets` element inside the `modules.json` file. This JSON file can be edited for updating the presets.

```
"presets": [
        {
            "name": "Preset_1",
            "modules": [
                "namespace1/Module_Name1",
                "namespace2/Module_Name2",
            ],
            "target_os": "linux/win"
        },
        {
            "name": "Preset_2",
            "modules": [
                "namespace/All"
            ],
            "target_os": "linux/win"
        }
    ]
```

`namespace/All` means every hardening command in that `namespace` will be executed.

### search

```
search [QUERY]
```

![Search Command](https://user-images.githubusercontent.com/24392180/60532081-26a11900-9d05-11e9-87da-ee7eefd3ab90.gif)

### manage

`manage` command allows to add, edit or remove modules.

• Adding modules with `manage`

Follow the instructions for adding a new module. Choose the 'new' option in the namespace prompt for creating a new namespace.

![Adding Module](https://user-images.githubusercontent.com/24392180/60544556-b1900c80-9d21-11e9-8013-69be929fdf53.gif)

• Adding modules manually

grapheneX stores the modules and namespaces in `modules.json` file. It will show up as a new module when a new element is created in this JSON file. An example element is given below.

```
"namespace": [
        {
            "name": "Module_Name",
            "desc": "This is the module description.",
            "command": "echo 'hardening command'",
            "require_superuser": "True/False",
            "require_restart": "True/False",
            "target_os": "linux/win"
        }
    ]
```

It's recommended to add modules from CLI or the Web interface other than editing the `modules.json` file.

• Editing modules

Choose the `edit` option after the `manage` command for the editing the module properties.

![Editing Module](https://user-images.githubusercontent.com/24392180/60545208-30d21000-9d23-11e9-8b5d-e85a52521180.gif)

Or edit the `modules.json` manually.

• Removing modules

Choosing the `remove` option in the `manage` menu will be enough for removing the specified module. It's also possible to remove the module from `modules.json` manually.

![Removing Module](https://user-images.githubusercontent.com/24392180/60545589-18aec080-9d24-11e9-9e3f-2385f05ecf09.gif)

### web

Starts the grapheneX web server with the optional `host:port` argument.

```
web [host:port]
```

![Web Command](https://user-images.githubusercontent.com/24392180/60546423-f027c600-9d25-11e9-8d45-e9cd9373d9bd.gif)

### back

Go back from selected namespace or module.

### clear

Clear terminal

### exit

Exit interactive shell

## Web

Most of the command line features are accessible with the Web interface.

### Namespaces & Modules

It's easy to switch between namespaces and see details of modules.

![Namespaces and Modules](https://user-images.githubusercontent.com/24392180/60549923-02f2c880-9d2f-11e9-9ee2-b3f58afeb5fd.gif)

### Hardening

Just click `run` under the module properties for executing the hardening command.

![Hardening](https://user-images.githubusercontent.com/24392180/60551119-f2dce800-9d32-11e9-9e4b-126354778e9f.gif)

### Adding Modules

There's a menu available in the web interface for adding new modules.

![Adding Modules](https://user-images.githubusercontent.com/24392180/60551262-6c74d600-9d33-11e9-8c3e-f553fafdda74.gif)

### System Monitor

It's possible to display various system information such as disk usage and network state at the Web interface.

![System Monitor](https://user-images.githubusercontent.com/24392180/64130757-12dd6600-cdcd-11e9-9be8-39395e104974.gif)

## Docker

### Building the image

```sh
docker build -f docker/Dockerfile -t graphenex .
```

### Running the container

```sh
docker run -it --rm --name graphenex -p 8080:8080 --privileged graphenex
```

## Screenshots

![Screenshot I](https://user-images.githubusercontent.com/24392180/60615641-47866e80-9dd8-11e9-92fe-dfa8874db8fd.jpg)

![Screenshot II](https://user-images.githubusercontent.com/24392180/60601258-7e4d8c00-9dba-11e9-93e1-96411b76b462.png)

![Screenshot III](https://user-images.githubusercontent.com/24392180/60625283-9be51a80-9de7-11e9-99ea-46875d8b3ed8.JPG)

![Screenshot IV](https://user-images.githubusercontent.com/24392180/60625314-bae3ac80-9de7-11e9-98ef-e5fa69c3be38.JPG)

![Screenshot V](https://user-images.githubusercontent.com/24392180/60625373-eb2b4b00-9de7-11e9-9e9a-ab1869af9b1a.JPG)

## TODO(s)

- Add new modules for Linux and Windows.

## Contributing

For contributing to this project, see [CONTRIBUTING.md](./CONTRIBUTING.md)

## Contributors ✨

Thanks goes to these wonderful people ✨

<a href="https://github.com/grapheneX/grapheneX/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=grapheneX/grapheneX" />
</a>

Made with [contrib.rocks](https://contrib.rocks).

## Sponsors

We don't have any sponsors yet. Contact us with email if you want to help us improve the project.

## License

[GNU General Public License v3.0](./LICENSE)

            

Raw data

            {
    "_id": null,
    "home_page": "https://graphenex.github.io",
    "name": "GrapheneX",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10,<4.0",
    "maintainer_email": "",
    "keywords": "hardening,hardening-commands,security",
    "author": "grapheneX contributors",
    "author_email": "graphenex.project@protonmail.com",
    "download_url": "https://files.pythonhosted.org/packages/3f/d4/87b1099a0ccb2c3a8cfecbe25c43cd8ff7cc3a0e5e9f3581a24de1584ccd/graphenex-1.6.0.tar.gz",
    "platform": null,
    "description": "![grapheneX](https://socialify.git.ci/grapheneX/grapheneX/image?description=1&font=Raleway&forks=1&issues=1&language=1&logo=https%3A%2F%2Fraw.githubusercontent.com%2FgrapheneX%2FgrapheneX%2Fmaster%2Fgraphenex%2Fcore%2Fweb%2Fstatic%2Fimages%2Fgraphenex_logo_white.png&owner=1&pulls=1&stargazers=1&theme=Dark)\n\n# grapheneX [![Release](https://img.shields.io/github/release/grapheneX/grapheneX.svg?style=flat-square)](https://github.com/grapheneX/grapheneX/releases) [![License](https://img.shields.io/github/license/grapheneX/grapheneX.svg?style=flat-square)](./LICENSE)\n\n> In computing, hardening is usually the process of securing a system by reducing its surface of vulnerability, which is larger when a system performs more functions; in principle a single-function system is more secure than a multipurpose one. Reducing available ways of attack typically includes changing default passwords, the removal of unnecessary software, unnecessary usernames or logins, and the disabling or removal of unnecessary services.\n\n`grapheneX` project aims to provide a framework for securing the system with hardening commands automatically.\nIt's designed for the end user as well as the Linux and Windows developers due to the interface options. (interactive shell/web interface)\nIn addition to that, `grapheneX` can be used to secure a web server/application.\n\n> The project name is derived from 'graphene'. Graphene is a one-atom-thick layer of carbon atoms arranged in a hexagonal lattice. In proportion to its thickness, it is about 100 times stronger than the strongest steel.\n\nHardening commands and the scopes of those commands are referred to `modules` and the `namespaces` in the project.\nThey exist at the `modules.json` file after installation. (`$PYPATH/site-packages/graphenex/modules.json`)\nAdditionally, it's possible to add, edit or remove modules and namespaces.\nAlso, the hardening operation can be automated with the presets that contain a list of modules.\n\nCurrently, grapheneX supports the hardening sections below. Each of these namespaces contains more than one module.\n\n\u2022 Firewall  \n\u2022 User  \n\u2022 Network  \n\u2022 Services  \n\u2022 Kernel  \n\u2022 Filesystem  \n\u2022 Other\n\nListen to The Python Podcast.\\_\\_init\\_\\_: [Automate Your Server Security With GrapheneX - Episode 237](https://www.pythonpodcast.com/graphenex-server-security-episode-237/)\n\n## Installation\n\nYou can install `grapheneX` with `pip`. Usually this is the easiest way:\n\n```\npip install graphenex\n```\n\nOr if you get an error try:\n\n```\npython3 -m pip install graphenex\n```\n\nAdditionally, [poetry](https://python-poetry.org/) can be used for development:\n\n```\npoetry install        # install the dependencies\npoetry run grapheneX  # run grapheneX\n```\n\n### Dependencies\n\n- [Flask-SocketIO](https://flask-socketio.readthedocs.io/en/latest/)\n  - [Flask](http://flask.pocoo.org/)\n- [coloredlogs](https://pypi.org/project/coloredlogs/)\n- [colorama](https://pypi.org/project/colorama/)\n- [terminaltables](https://pypi.org/project/terminaltables/)\n- [PyInquirer](https://pypi.org/project/PyInquirer/)\n\n## Usage\n\n### Command Line Arguments\n\n```\nusage: grapheneX [-h] [-v] [-w] [--open] [host:port]\n```\n\n```\npositional arguments:\n  host:port      host and port to run the web interface\n\noptional arguments:\n  -h, --help     show this help message and exit\n  -v, --version  show version information\n  -w, --web      run the grapheneX web server\n  --open         open browser on web server start\n```\n\n### Interactive Shell\n\nExecute the `grapheneX` command in order to start the interactive shell.\n\n![GrapheneX Interactive Shell](https://user-images.githubusercontent.com/24392180/61892273-16e7af80-af14-11e9-91d8-8c7682439f06.gif)\n\n\u2022 Animated gifs and screenshots added for demonstration and include the test execution of the unversioned grapheneX. Use `grapheneX` or `python -m graphenex` command for the execution.  \n\u2022 grapheneX currently supports [Python3.10](https://www.python.org/)\n\n### Web Interface\n\nExecute the `grapheneX` with the `-w` or `--web` argument in order to start the web server.\n\n![Starting the Web Server](https://user-images.githubusercontent.com/24392180/61898426-f292cf80-af21-11e9-9edc-21f0351bbf5b.gif)\n\n\u2022 Web interface has the authentication system that requires an `access token`. Once the user verifies her/his identity with the given token at the shell, grapheneX creates a session for further use.\n\n![GrapheneX Web Interface I](https://user-images.githubusercontent.com/24392180/61898886-fd019900-af22-11e9-9d1e-e2a58bee6651.gif)\n\n![GrapheneX Web Interface II](https://user-images.githubusercontent.com/24392180/60525198-9bb92200-9cf6-11e9-80c6-9b69b5d10c81.gif)\n\n\u2022 The default host and port value are `localhost:8080`. It can be changed via the `host:port` argument as shown below.\n\n```\npython3 -m graphenex -w 192.168.1.36:8090\n```\n\n\u2022 Use `--open` argument to open the browser after the server start.\n\n```\npython3 -m graphenex -w --open\n```\n\n## CLI Commands\n\n| Command | Description                                                                   |\n| ------- | ----------------------------------------------------------------------------- |\n| back    | Go back from namespace or module                                              |\n| clear   | Clear the terminal                                                            |\n| exit    | Exit interactive shell                                                        |\n| harden  | Execute the hardening command                                                 |\n| help    | List available commands with \"help\" or show detailed help with \"help `<cmd>`\" |\n| info    | Show information about the module                                             |\n| list    | List available hardening modules                                              |\n| manage  | Add, edit or delete module                                                    |\n| preset  | Show/execute the hardening module presets                                     |\n| search  | Search for modules                                                            |\n| switch  | Switch between modules or namespaces                                          |\n| use     | Use a hardening module                                                        |\n| web     | Start the grapheneX web server                                                |\n\n### help\n\n`help` or `?` shows the commands list above.  \n`help [CMD]` shows the detailed usage of given command.\n\n### list\n\nShow the available modules in a table.\nFor example:\n\n![List Command](https://user-images.githubusercontent.com/24392180/60528104-5e579300-9cfc-11e9-9a01-ac827fd365b1.gif)\n\n### switch\n\n`switch` command can be used to switch to a namespace or use a module. It's helpful if you want to see a list of modules in a namespace.\n\n```\nswitch [NAMESPACE]\n```\n\n![Switch Command](https://user-images.githubusercontent.com/24392180/60528986-46810e80-9cfe-11e9-9870-00333657fdee.gif)\n\n\u2022 Supports autocomplete for namespaces.\n\nAlso, using the `switch` command like this is possible:\n\n```\nswitch [NAMESPACE]/[MODULE]\n```\n\nIt's the equivalent of the `use` command in this situation.\n\n### use\n\nServes the purpose of selecting a hardening module.\n\n```\nuse [MODULE]\n```\n\n![Use Command](https://user-images.githubusercontent.com/24392180/60530449-69f98880-9d01-11e9-93a9-4f612e4ed7ad.gif)\n\n\u2022 Supports autocomplete for modules.\n\n### info\n\nShows information (namespace, description, OS command) about the selected module.\n\n![Info Command](https://user-images.githubusercontent.com/24392180/60531173-02dcd380-9d03-11e9-9410-a59e6ed3d5a4.gif)\n\n### harden\n\nExecutes the hardening command of the selected module.\n\n![Harden Command](https://user-images.githubusercontent.com/24392180/60531788-67e4f900-9d04-11e9-8960-2d2f2a7289f0.gif)\n\n### preset\n\ngrapheneX has presets that contain particular modules for automating the hardening operation. Presets can be customized with the `modules.json` file, and they can contain any supported module. `preset` command shows the available module presets and `preset [PRESET]` runs the hardening commands in a preset.\n\n![Show Presets](https://user-images.githubusercontent.com/24392180/60548388-a097c900-9d2a-11e9-8927-bbbd90493430.gif)\n\nAn example `preset` command output is shown above. Below, a preset that contains 2 modules is selected and hardening modules executed.\n\n![Preset Command](https://user-images.githubusercontent.com/24392180/60548929-0cc6fc80-9d2c-11e9-9bff-01882feb6b9f.gif)\n\n`preset` command supports autocomplete for preset names. Also, it supports an option for asking permission between each hardening command execution so that the user knows what he/she is doing.\n\n\u2022 Adding module presets\n\nPresets are stored in the `presets` element inside the `modules.json` file. This JSON file can be edited for updating the presets.\n\n```\n\"presets\": [\n        {\n            \"name\": \"Preset_1\",\n            \"modules\": [\n                \"namespace1/Module_Name1\",\n                \"namespace2/Module_Name2\",\n            ],\n            \"target_os\": \"linux/win\"\n        },\n        {\n            \"name\": \"Preset_2\",\n            \"modules\": [\n                \"namespace/All\"\n            ],\n            \"target_os\": \"linux/win\"\n        }\n    ]\n```\n\n`namespace/All` means every hardening command in that `namespace` will be executed.\n\n### search\n\n```\nsearch [QUERY]\n```\n\n![Search Command](https://user-images.githubusercontent.com/24392180/60532081-26a11900-9d05-11e9-87da-ee7eefd3ab90.gif)\n\n### manage\n\n`manage` command allows to add, edit or remove modules.\n\n\u2022 Adding modules with `manage`\n\nFollow the instructions for adding a new module. Choose the 'new' option in the namespace prompt for creating a new namespace.\n\n![Adding Module](https://user-images.githubusercontent.com/24392180/60544556-b1900c80-9d21-11e9-8013-69be929fdf53.gif)\n\n\u2022 Adding modules manually\n\ngrapheneX stores the modules and namespaces in `modules.json` file. It will show up as a new module when a new element is created in this JSON file. An example element is given below.\n\n```\n\"namespace\": [\n        {\n            \"name\": \"Module_Name\",\n            \"desc\": \"This is the module description.\",\n            \"command\": \"echo 'hardening command'\",\n            \"require_superuser\": \"True/False\",\n            \"require_restart\": \"True/False\",\n            \"target_os\": \"linux/win\"\n        }\n    ]\n```\n\nIt's recommended to add modules from CLI or the Web interface other than editing the `modules.json` file.\n\n\u2022 Editing modules\n\nChoose the `edit` option after the `manage` command for the editing the module properties.\n\n![Editing Module](https://user-images.githubusercontent.com/24392180/60545208-30d21000-9d23-11e9-8b5d-e85a52521180.gif)\n\nOr edit the `modules.json` manually.\n\n\u2022 Removing modules\n\nChoosing the `remove` option in the `manage` menu will be enough for removing the specified module. It's also possible to remove the module from `modules.json` manually.\n\n![Removing Module](https://user-images.githubusercontent.com/24392180/60545589-18aec080-9d24-11e9-9e3f-2385f05ecf09.gif)\n\n### web\n\nStarts the grapheneX web server with the optional `host:port` argument.\n\n```\nweb [host:port]\n```\n\n![Web Command](https://user-images.githubusercontent.com/24392180/60546423-f027c600-9d25-11e9-8d45-e9cd9373d9bd.gif)\n\n### back\n\nGo back from selected namespace or module.\n\n### clear\n\nClear terminal\n\n### exit\n\nExit interactive shell\n\n## Web\n\nMost of the command line features are accessible with the Web interface.\n\n### Namespaces & Modules\n\nIt's easy to switch between namespaces and see details of modules.\n\n![Namespaces and Modules](https://user-images.githubusercontent.com/24392180/60549923-02f2c880-9d2f-11e9-9ee2-b3f58afeb5fd.gif)\n\n### Hardening\n\nJust click `run` under the module properties for executing the hardening command.\n\n![Hardening](https://user-images.githubusercontent.com/24392180/60551119-f2dce800-9d32-11e9-9e4b-126354778e9f.gif)\n\n### Adding Modules\n\nThere's a menu available in the web interface for adding new modules.\n\n![Adding Modules](https://user-images.githubusercontent.com/24392180/60551262-6c74d600-9d33-11e9-8c3e-f553fafdda74.gif)\n\n### System Monitor\n\nIt's possible to display various system information such as disk usage and network state at the Web interface.\n\n![System Monitor](https://user-images.githubusercontent.com/24392180/64130757-12dd6600-cdcd-11e9-9be8-39395e104974.gif)\n\n## Docker\n\n### Building the image\n\n```sh\ndocker build -f docker/Dockerfile -t graphenex .\n```\n\n### Running the container\n\n```sh\ndocker run -it --rm --name graphenex -p 8080:8080 --privileged graphenex\n```\n\n## Screenshots\n\n![Screenshot I](https://user-images.githubusercontent.com/24392180/60615641-47866e80-9dd8-11e9-92fe-dfa8874db8fd.jpg)\n\n![Screenshot II](https://user-images.githubusercontent.com/24392180/60601258-7e4d8c00-9dba-11e9-93e1-96411b76b462.png)\n\n![Screenshot III](https://user-images.githubusercontent.com/24392180/60625283-9be51a80-9de7-11e9-99ea-46875d8b3ed8.JPG)\n\n![Screenshot IV](https://user-images.githubusercontent.com/24392180/60625314-bae3ac80-9de7-11e9-98ef-e5fa69c3be38.JPG)\n\n![Screenshot V](https://user-images.githubusercontent.com/24392180/60625373-eb2b4b00-9de7-11e9-9e9a-ab1869af9b1a.JPG)\n\n## TODO(s)\n\n- Add new modules for Linux and Windows.\n\n## Contributing\n\nFor contributing to this project, see [CONTRIBUTING.md](./CONTRIBUTING.md)\n\n## Contributors \u2728\n\nThanks goes to these wonderful people \u2728\n\n<a href=\"https://github.com/grapheneX/grapheneX/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=grapheneX/grapheneX\" />\n</a>\n\nMade with [contrib.rocks](https://contrib.rocks).\n\n## Sponsors\n\nWe don't have any sponsors yet. Contact us with email if you want to help us improve the project.\n\n## License\n\n[GNU General Public License v3.0](./LICENSE)\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "Automated System Hardening Framework for Linux & Windows",
    "version": "1.6.0",
    "project_urls": {
        "Homepage": "https://graphenex.github.io",
        "Repository": "https://github.com/grapheneX/grapheneX"
    },
    "split_keywords": [
        "hardening",
        "hardening-commands",
        "security"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "558119782347f255854c189462d4d054ce56ebf7c8299624db595c7f1140f161",
                "md5": "ef8f9c69270a67b3ad58c262e94c0e80",
                "sha256": "51a8264c90464dbd02629bbdb2b6e5cb8b7c7b43de66380f10c4fd0f4af3e041"
            },
            "downloads": -1,
            "filename": "graphenex-1.6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ef8f9c69270a67b3ad58c262e94c0e80",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10,<4.0",
            "size": 1524411,
            "upload_time": "2024-01-02T11:59:46",
            "upload_time_iso_8601": "2024-01-02T11:59:46.434078Z",
            "url": "https://files.pythonhosted.org/packages/55/81/19782347f255854c189462d4d054ce56ebf7c8299624db595c7f1140f161/graphenex-1.6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fd487b1099a0ccb2c3a8cfecbe25c43cd8ff7cc3a0e5e9f3581a24de1584ccd",
                "md5": "be4e5dbfa549ca6a6c37aeda65c92303",
                "sha256": "591d72971c71acfa4790acf3518f3ad917ab79f1531fc08db869c6fcebf053d7"
            },
            "downloads": -1,
            "filename": "graphenex-1.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "be4e5dbfa549ca6a6c37aeda65c92303",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10,<4.0",
            "size": 1523529,
            "upload_time": "2024-01-02T11:59:48",
            "upload_time_iso_8601": "2024-01-02T11:59:48.487831Z",
            "url": "https://files.pythonhosted.org/packages/3f/d4/87b1099a0ccb2c3a8cfecbe25c43cd8ff7cc3a0e5e9f3581a24de1584ccd/graphenex-1.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-02 11:59:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "grapheneX",
    "github_project": "grapheneX",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "graphenex"
}
        
Elapsed time: 0.16686s