Victor Vrantchan

Results 73 issues of Victor Vrantchan

the [StreamCampaignReuslts](https://github.com/kolide/fleet/blob/018b91ab2cf7891432840c2251cb2e6d7811f31c/server/service/service_campaigns.go#L84) method is kind of complex and can fail silently (sometimes due to connectivity issues, sometimes due to websocket/socksjs issues when communicating through a proxy. Add debug/info logging to...

Component: Technical Debt

Right now if the server returns `force_password_reset: true`, the user can still attempt to use the UI, even though the server will return a 403 error for every single request....

Bug
Component: Frontend

We use the `errors.Wrap(err, "additional info about the error")` patter to wrap increasingly more errors in the app. This is great, but the error is wrapped into a new type...

Component: Security
Component: Technical Debt
Good First Issue

I just tried to use `moxbuwTCqxfU4kZsyPYdGdv7d8E` as a password, but it was rejected because there's no symbol. IMO that's bad.

Component: Security
Feature: Authentication
Help Wanted
Good First Issue

today, the following error happened during `make generate` step on CircleCI ``` ERROR in ENOENT: no such file or directory, scandir '/go/src/github.com/kolide/kolide/node_modules/node-sass/vendor' @ ./frontend/index.scss 4:14-269 ERROR in ./frontend/index.scss Module build...

Component: Development Infrastructure

Right now serivce.NewService takes an explicit list of arguments, so when we have to add one more it affects changing code in a dozen other places. Refactor to support a...

Component: Technical Debt

kolide sets the default mysql username and password to `kolide` I created a new mysql instance which only has a user but no password: ``` export KOLIDE_MYSQL_PASSWORD="" ``` On linux(alpine...

Bug
Component: Databases

I'm having a hard time tracking the root cause of this, but noticing the behavior numerous times: it's possible for launcher to fail DNS resolution once, and then continue failing...

Bug

it's possible for the launcher to fail to re-enroll and never get back into a good state due to user error. Repro: 1. start with a good enroll secret at...

Bug

In osquery-go we have an enum for logs: ``` //LogType encodes the type of log osquery is outputting. type LogType int const ( LogTypeString LogType = iota LogTypeSnapshot LogTypeHealth LogTypeInit...

Transport
Osquery
Core Platform