Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
DPAW2Z2OZAAACAAAAAAAAAAAAA
C7TG5QWJLDBGGAAAAAAAAAAAAA
02:AD:33:AF:61:21:63:8C:50:87:FA:F2:E6:32:FD:1B:8E:2B:1C:30:A3:C7:65:6C:38:70:B0:F7:89:F6:C9:04
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The addition of a colon-separated fingerprint in a file with a .properties extension can lead to parsing issues. In the standard Java Properties format, the colon (:) is a reserved key-value delimiter. If this file is loaded using standard tools like java.util.Properties, this line will be incorrectly split into a key (02) and a value. Additionally, this entry is inconsistent with the format of the first two lines which appear to be Base32-encoded identifiers. If the application reads this file as a plain text list, consider renaming it to .txt to avoid misleading developers. If it must remain a .properties file, you should either escape the colons (e.g., 02\:AD\:...) or use a key=value structure.