Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2022-31185: Redis and Hide Email Address fixes · makedeb/mprweb@d13e3f2

mprweb is a hosting platform for the makedeb Package Repository. Email addresses were found to not have been hidden, even if a user had clicked the Hide Email Address checkbox on their account page, or during signup. This could lead to an account’s email being leaked, which may be problematic if your email needs to remain private for any reason. Users hosting their own mprweb instance will need to upgrade to the latest commit to get this fixed. Users on the official instance will already have this issue fixed.

CVE
#web#redis

@@ -270,7 +270,7 @@ async def account_register_post( request: Request, U: str = Form(default=str()), # Username E: str = Form(default=str()), # Email H: str = Form(default=False), # Hide Email H: str = Form(default="off"), # Hide Email BE: str = Form(default=None), # Backup Email R: str = Form(default=""), # Real Name HP: str = Form(default=None), # Homepage @@ -313,13 +313,19 @@ async def account_register_post( models.AccountType, models.AccountType.AccountType == “User” ).first()
# Check if we should turn on HideEmail. if H == "on": hide_email = 1 else: hide_email = 0
# Create a user given all parameters available. with db.begin(): user = db.create( models.User, Username=U, Email=E, HideEmail=H, HideEmail=hide_email, BackupEmail=BE, RealName=R, Homepage=HP,

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda