Merge branch 'master' into ui_tweaks

pull/123/head
Simon Let 6 years ago
commit b31aa890e4
  1. 2
      README.md
  2. 2
      cmd/daemon/run-server.go

@ -116,7 +116,7 @@ In order to be able to develop a good history tool I will need to get some insig
This project is also my Master thesis so I need to be a bit scientific and base my design decisions on evidence/data.
Running `reshctl sanitize` creates a sanitized version of recorded history.
In sanitized history, all sensitive information is replaced with its SHA1 hashes.
In sanitized history, all sensitive information is replaced with its SHA256 hashes.
If you tried sanitizing your history and you think the result is not sanitized enough then please create an issue or message me.

@ -64,7 +64,7 @@ func runServer(config cfg.Config, reshHistoryPath, bashHistoryPath, zshHistoryPa
mux.Handle("/inspect", &inspectHandler{sesshistDispatch: sesshistDispatch})
mux.Handle("/dump", &dumpHandler{histfileBox: histfileBox})
server := &http.Server{Addr: ":" + strconv.Itoa(config.Port), Handler: mux}
server := &http.Server{Addr: "localhost:" + strconv.Itoa(config.Port), Handler: mux}
go server.ListenAndServe()
// signalhandler - takes over the main goroutine so when signal handler exists the whole program exits

Loading…
Cancel
Save