Giter Site home page Giter Site logo

rbw sync fails due to a JSON parse error about rbw HOT 3 CLOSED

doy avatar doy commented on August 23, 2024
rbw sync fails due to a JSON parse error

from rbw.

Comments (3)

simias avatar simias commented on August 23, 2024

I should add that I'm running a self-hosted bitwarden-rs as the backend, no idea if it's mangling something.

from rbw.

simias avatar simias commented on August 23, 2024

I managed a quick and dirty way to dump the json and found the culprit:

"PasswordHistory":[{"LastUsedDate":"2021-03-31T19:30:06.936Z","Password":null}]

I can find this empty entry in the bitwarden desktop app:

history

Note that I suspect that this was added by rbw itself when I used rbw edit on an entry without a password set, but I could be wrong since I can't reproduce it as long as my rbw is out of order.

So I managed to work around the issue using the following patch:

diff --git a/src/api.rs b/src/api.rs
index 99e12fd..ac35306 100644
--- a/src/api.rs
+++ b/src/api.rs
@@ -254,7 +254,7 @@ impl SyncResCipher {
                 .iter()
                 .map(|entry| crate::db::HistoryEntry {
                     last_used_date: entry.last_used_date.clone(),
-                    password: entry.password.clone(),
+                    password: entry.password.clone().unwrap_or_else(String::new),
                 })
                 .collect()
         } else {
@@ -459,7 +459,7 @@ struct SyncResPasswordHistory {
     #[serde(rename = "LastUsedDate")]
     last_used_date: String,
     #[serde(rename = "Password")]
-    password: String,
+    password: Option<String>,
 }

This way the sync command completes, but now I hit another problem:

rbw list: failed to decrypt: failed to parse encrypted secret: invalid cipherstring: couldn't find type

from rbw.

simias avatar simias commented on August 23, 2024

Ah it's actually the same issue: since above I replace the NULL password with an empty string, it then fails when it attempts to decrypt it.

So instead I'm going to filter out entries with no password.

from rbw.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.