VictorNine / bitwarden-go

A Bitwarden-compatible server written in Golang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Which features do you cover ?

Pschittt opened this issue · comments

Hello,

To be curious, which feature do you cover with your api version ?
Do you cover :

  • the web vault
  • The import tool
  • the collection/team
  • folders relationship

I've tried to understand your code, but i'm not familiar with Go.

One more question :

  • Do you check each parameters sent to avoid SQL injection ?
  • How do you manager user session ? Cookie ?

Implemented

  • web vault
  • import tool (Only ciphers)
  • Folders

Not Implemented

  • collection/team

User sessions is handled the same way as the core server (JWT)
As stated in the read me it's still a work in progress

Thanks

One more question :

Do you check each parameter to avoid sql injection attacks ?

No guaranties, but I've tested on the "unauthorized" endpoints and could not exploit it.