mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 05:52:52 +00:00
Add support for importing decrypted Steam JSON blob
Some people have managed to snatch the OTP details from Steam using Xposed while it is being decrypted by the app. Aegis still won't be able to do the decryption part, but we can add support for importing the decrypted JSON blob, which only differs slightly from the old format.
This commit is contained in:
parent
adaae9e6d6
commit
ff233090f8
4 changed files with 39 additions and 10 deletions
|
@ -18,6 +18,10 @@ import org.json.JSONObject;
|
|||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.sql.Array;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
public class SteamImporter extends DatabaseImporter {
|
||||
private static final String _subDir = "files";
|
||||
|
@ -57,29 +61,43 @@ public class SteamImporter extends DatabaseImporter {
|
|||
try {
|
||||
byte[] bytes = IOUtils.readAll(stream);
|
||||
JSONObject obj = new JSONObject(new String(bytes, StandardCharsets.UTF_8));
|
||||
return new State(obj);
|
||||
|
||||
List<JSONObject> objs = new ArrayList<>();
|
||||
if (obj.has("accounts")) {
|
||||
JSONObject accounts = obj.getJSONObject("accounts");
|
||||
Iterator<String> keys = accounts.keys();
|
||||
while (keys.hasNext()) {
|
||||
String key = keys.next();
|
||||
objs.add(accounts.getJSONObject(key));
|
||||
}
|
||||
} else {
|
||||
objs.add(obj);
|
||||
}
|
||||
return new State(objs);
|
||||
} catch (IOException | JSONException e) {
|
||||
throw new DatabaseImporterException(e);
|
||||
}
|
||||
}
|
||||
|
||||
public static class State extends DatabaseImporter.State {
|
||||
private JSONObject _obj;
|
||||
private final List<JSONObject> _objs;
|
||||
|
||||
private State(JSONObject obj) {
|
||||
private State(List<JSONObject> objs) {
|
||||
super(false);
|
||||
_obj = obj;
|
||||
_objs = objs;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Result convert() {
|
||||
Result result = new Result();
|
||||
|
||||
try {
|
||||
VaultEntry entry = convertEntry(_obj);
|
||||
result.addEntry(entry);
|
||||
} catch (DatabaseImporterEntryException e) {
|
||||
result.addError(e);
|
||||
for (JSONObject obj : _objs) {
|
||||
try {
|
||||
VaultEntry entry = convertEntry(obj);
|
||||
result.addEntry(entry);
|
||||
} catch (DatabaseImporterEntryException e) {
|
||||
result.addError(e);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue