Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colearendt/shiny-shell
A Shiny app that exposes a simple (and not secure) shell
https://github.com/colearendt/shiny-shell
experiment r shell shiny
Last synced: 21 days ago
JSON representation
A Shiny app that exposes a simple (and not secure) shell
- Host: GitHub
- URL: https://github.com/colearendt/shiny-shell
- Owner: colearendt
- Created: 2017-12-16T20:44:06.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-07T16:20:18.000Z (3 months ago)
- Last Synced: 2024-10-11T18:23:17.493Z (about 1 month ago)
- Topics: experiment, r, shell, shiny
- Language: R
- Homepage:
- Size: 82 KB
- Stars: 11
- Watchers: 2
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - colearendt/shiny-shell - A Shiny app that exposes a simple (and not secure) shell (R)
README
# Shiny Shell #
A Shiny app that provides a simple shell into the underlying operating system by passing input to the `system2` command.
# WARNING #
_This is extremely unsecure_. Use at your own risk. By exposing this functionality to your users, you allow them the opportunity to execute arbitrary code on your operating system. It can be useful for education, exploration, or as a simple example, but is generally recommended against at other times. This functionality would make it much easier for a malicious user to fill up your server, crash your server, or hack your server. As such, the execution environment would ideally be contained and controlled with a non-privileged user.
If you are going deeper into the realm of education, I recommend using the [`learnr`](https://rstudio.github.io/learnr/) package to build helpful tutorials with similar interactive functionality.
Have fun and stay safe!!