Birdwatch Archive

Birdwatch Note

2024-07-31 13:50:00 UTC - MISINFORMED_OR_POTENTIALLY_MISLEADING

Storing plaintext passwords is insecure. Always hash passwords using bcrypt, Argon2, or PBKDF2 at least. Example: ```python import bcrypt hashed = bcrypt.hashpw(password.encode('utf-8'), bcrypt.gensalt()) bcrypt.checkpw(password.encode('utf-8'), hashed) ``` https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html https://pages.nist.gov/800-63-3/sp800-63b.html#sec5

Written by 6EAF350CBA2B80293A10C6D5F7EF7F8DF784F7366B5BEE6257871ED210365D1B
Participant Details

Original Tweet

Tweet embedding is no longer reliably available, due to the platform's instability (in terms of both technology and policy). If the Tweet still exists, you can view it here: https://twitter.com/foo_bar/status/1818508697124872404

Please note, though, that you may need to have your own Twitter account to access that page. I am currently exploring options for archiving Tweet data in a post-API context.

All Information

  • ID - 1818645287994638557
  • noteId - 1818645287994638557
  • participantId -
  • noteAuthorParticipantId - 6EAF350CBA2B80293A10C6D5F7EF7F8DF784F7366B5BEE6257871ED210365D1B Participant Details
  • createdAtMillis - 1722433800111
  • tweetId - 1818508697124872404
  • classification - MISINFORMED_OR_POTENTIALLY_MISLEADING
  • believable -
  • harmful -
  • validationDifficulty -
  • misleadingOther - 0
  • misleadingFactualError - 1
  • misleadingManipulatedMedia - 0
  • misleadingOutdatedInformation - 1
  • misleadingMissingImportantContext - 1
  • misleadingUnverifiedClaimAsFact - 1
  • misleadingSatire - 0
  • notMisleadingOther - 0
  • notMisleadingFactuallyCorrect - 0
  • notMisleadingOutdatedButNotWhenWritten - 0
  • notMisleadingClearlySatire - 0
  • notMisleadingPersonalOpinion - 0
  • trustworthySources - 1
  • summary
    • Storing plaintext passwords is insecure. Always hash passwords using bcrypt, Argon2, or PBKDF2 at least. Example: ```python import bcrypt hashed = bcrypt.hashpw(password.encode('utf-8'), bcrypt.gensalt()) bcrypt.checkpw(password.encode('utf-8'), hashed) ``` https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html https://pages.nist.gov/800-63-3/sp800-63b.html#sec5

Note Ratings

rated at rated by
2024-08-01 05:25:21 -0500 Rating Details
2024-08-01 04:06:17 -0500 Rating Details
2024-08-01 03:46:48 -0500 Rating Details
2024-07-31 22:40:10 -0500 Rating Details
2024-07-31 13:26:59 -0500 Rating Details
2024-07-31 13:18:01 -0500 Rating Details
2024-07-31 12:01:30 -0500 Rating Details
2024-07-31 11:19:04 -0500 Rating Details
2024-07-31 10:41:24 -0500 Rating Details
2024-07-31 10:12:24 -0500 Rating Details
2024-07-31 09:45:35 -0500 Rating Details
2024-07-31 09:32:07 -0500 Rating Details
2024-07-31 09:04:09 -0500 Rating Details
2024-08-06 19:03:48 -0500 Rating Details