Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ariary/console.sh

Share terminal in your browser console
https://github.com/ariary/console.sh

browser-extension console golang hack reverse-shell shell websocket

Last synced: 8 days ago
JSON representation

Share terminal in your browser console

Awesome Lists containing this project

README

        

# console.sh


Execute shell command from browser console (developer tools)

## Usage

Launch websocket server:
```shell
console.sh
```

Open browser console (certainly with `Shift + CTRL + K` or `Shift + ⌘ + K`). Copy/paste within:
```javascript
s=new WebSocket("wss://localhost:8080/sh"),s.onmessage=function(ev){console.log(ev.data)};function sh(cmd){s.send(cmd)};function promptsh(){cmd=prompt();s.send(cmd)};Object.defineProperty(window, 'psh', { get: promptsh });
```

Now you are able to execute shell command from browser console with:
```javascript
> sh("[command]")
//OR (alternative)
> sh`[command]`
//OR (prompted version)
> psh
```

**N.B:**
* It is also possible to **connect to a remote shell** (`localhost` is not enforced). To do so use `--url` flag.
* **Visit home page is like a light [`gotty`](https://github.com/yudai/gotty)**. The home page automatically load the shell in your browser console.
* If you want terminal in HTML page instead of the console -> browse `/interactive` endpoint

## Why?

Why not! The need does not inspire the feature, it's the other way around *(s/o Apple philosophy)*

Otherwise, see [remote use](#remote-code-execution)

## Set-up

Install `console.sh`:
```shell
curl -lO -L https://github.com/ariary/console.sh/releases/latest/download/console.sh
chmod +x console.sh
# or with go
go install github.com/ariary/console.sh@latest
```

Then as you have to launch the websocket server with certificates (otherwise browsers won't accept connection). Create cert and key in the same directory:
```shell
mkcert -install
mkcert -key-file key.pem -cert-file cert.pem localhost 127.0.0.1 ::1 # Many way to do it, openssl etc => key: key.pem and cert: cert.pem
```

### Remote Code execution

`console.sh` can also be launched on a remote device. The main advantage of this is to browse internet while having a quick access to a kind of remote shell.

To make it works, Install `mkcert` CA in your local trust store and build `console.sh` like this before transfer it on remote:
```shell
mkcert -install
./build-embed.sh [REMOTE_URL] #directly embed cert,key in binary
```

#### Browser extension ***(WIP)***

Using the extension you can quickly run command on a remote host while browsing the web:

Some challenges still need to be overcome ([see](https://github.com/ariary/console.sh/issues/1))
## Notes
* SOP and CORS don't apply to websocket, **However** CSP does. Many websites specify `connect-src` CSP directive which restricts loaded URL from WebSocket (⇒ can't use `console.sh` on these websites, empty new tabs will do the job)
* Without `wss` (secure websocket) browser wouldn't authorize websocket communication ⇒ need certificate and key
* **⚠️ This project is not secure! Use it with parsimony and of course shut down the server when you are done using it**. Otherwise an XSS can easily become a RCE