diff --git a/README.md b/README.md index 8d06d5f..e68ae81 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,23 @@ With MISPBump it is easy to share events on your MISP instance with other instan # How does it work? +1. Gather your organisation information from your MISP instance +![Gather Information](./Screenshots/sync-profile.png) + +1. Scan your partners generated public key and at the same time share yours +![Scan Public Key](./Screenshots/scan-pub-key.png) + +2. Validate the public key you scanned +![Public Key Received](./Screenshots/pub-key-received.png) + +3. After another scan the information you need to synchronise is securely transmitted to your phone +![Secure Info Received](./Screenshots/org-info-received.png) + +4. Upload the information to your own MISP instance +![Upload](./Screenshots/upload.png) + +5. That's it! You are ready to share events across your instances +![Main Screen](./Screenshots/main.png) # Security diff --git a/Screenshots/main.png b/Screenshots/main.png new file mode 100644 index 0000000..7a020f5 Binary files /dev/null and b/Screenshots/main.png differ diff --git a/Screenshots/org-info-received.png b/Screenshots/org-info-received.png new file mode 100644 index 0000000..0c3662a Binary files /dev/null and b/Screenshots/org-info-received.png differ diff --git a/Screenshots/pub-key-received.png b/Screenshots/pub-key-received.png new file mode 100644 index 0000000..73ebf39 Binary files /dev/null and b/Screenshots/pub-key-received.png differ diff --git a/Screenshots/scan-pub-key.png b/Screenshots/scan-pub-key.png new file mode 100644 index 0000000..e6b8b6b Binary files /dev/null and b/Screenshots/scan-pub-key.png differ diff --git a/Screenshots/sync-profile.png b/Screenshots/sync-profile.png new file mode 100644 index 0000000..90a96d5 Binary files /dev/null and b/Screenshots/sync-profile.png differ diff --git a/Screenshots/upload.png b/Screenshots/upload.png new file mode 100644 index 0000000..56d4454 Binary files /dev/null and b/Screenshots/upload.png differ diff --git a/app/src/main/java/de/overview/wg/its/mispauth/MainActivity.java b/app/src/main/java/de/overview/wg/its/mispauth/MainActivity.java index b788ee6..bbc92a8 100644 --- a/app/src/main/java/de/overview/wg/its/mispauth/MainActivity.java +++ b/app/src/main/java/de/overview/wg/its/mispauth/MainActivity.java @@ -148,6 +148,7 @@ public class MainActivity extends AppCompatActivity { emptyPartnerListView.setVisibility(View.VISIBLE); syncedPartnerRecyclerView.setVisibility(View.GONE); } else { + emptyPartnerListView.setVisibility(View.GONE); syncedPartnerAdapter.setSyncedPartnerList(syncedPartnerList); } }