home.social

#adminer — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #adminer, aggregated by home.social.

fetched live
  1. 🚀 New #release · Adminer v6.0.0

    - Escape index type, algorithm and length in table structure (XSS)
    - Fix XSS in event schedule and non-numeric table status values

    Full release notes & setup → selfhost.directory/project/adm

    #opensourcesoftware #adminer #database #opensource #security

  2. CVE-2026-63771 - Cookie injection in Adminer <5.4.3. X-Forwarded-Prefix header abuse downgrades SameSite, enabling cross-origin auth bypass. CVSS 7.1. Update or mitigate immediately. #CVE #Adminer #infosec

    valtersit.com/cve/CVE-2026-637

  3. Do you use Adminer? It's the best PHP database management, since PHPMyAdmin has enshittified.

    But there has not been DuckDB / Parquet support, so here you go:
    ambience.sk/adminer-support-fo

    Both work in read-only mode and require external dependencies, but they work with Adminer!

  4. Just found out about adminer and holy shit is it goated. youre telling me mariadb,mysql and postrgesql database manager in one single php file thats not even a mb big. its crazy and lowkey is better with postgresql then heidisql

    #adminer #databse #php

  5. #LieblingsAddOns der #REDAXO Community

    heute: #Adminer
    Projekt-Lead: Gregor & FOR (Friends of Redaxo)

    Mit Adminer kannst Du direkt aus REDAXO heraus die Datenbank aufrufen, Einträge prüfen und korrigieren. Ferner kannst Du mit dem rex_sql-Code-Generator Code-Snippets erstellen. Ein kleines, nützliches Helferlein also im #WebDev-Alltag.

    github.com/FriendsOfREDAXO/adm

    Was ist Dein Lieblings-AddOn von REDAXO?

  6. **2 Moodle plugins that made my life easier**

    (direct link to post)

    In my other life (sometimes called ‘professional’ life) I’m using Moodle to host various courses.

    Last year I went to full self-hosting and I’m still exploring Moodle system. Not sure if I’ll ever figure it out completely.

    Recently I found 2 plugins that I find useful: Components 4 Learning and Admin Neo (Adminer).

    Components for Learning

    The first one is add-on for text editor: Components 4 Learning (C4L), available for both – Atto and Tiny editor. I’m using it to make learning content a bit less boring. C4L allows me to make various design snippets like this one (blue background with emphasised title and nice bullets):

    Or this one – purple snippet for ‘aha’ or ‘dont forget’ parts:

    Admin Neo plugin

    The other plugin is called Admin Neo (Adminer). It allows direct access to the Moodle database. Scary, right?

    I installed it because I couldn’t figure out how to make a report of users, who registered to the Moodle, but haven’t enrolled in any course yet. I couldn’t make it with built-in Custom Report tool.

    I installed this plugin and executed the following SQL query:

    SELECT     u.id AS user_id,    u.username,    u.firstname,    u.lastname,    u.email,    FROM_UNIXTIME(u.timecreated) AS registered_on,    FROM_UNIXTIME(u.lastaccess) AS last_accessFROM mdl_user uLEFT JOIN mdl_user_enrolments ue ON ue.userid = u.idWHERE ue.id IS NULL  AND u.deleted = 0  AND u.suspended = 0  AND u.confirmed = 1  AND u.id <> 1  -- exclude the main admin accountORDER BY u.timecreated, u.lastname, u.firstname

    It returns a list of users, sorted by registration date. Now I can quickly find the users who need a little bit of nudge to enroll in a course:

    If you know a better way (=without messing with SQL) to generate a similar report, please let me know.

    https://blog.rozman.info/2-moodle-plugins-that-made-my-life-easier/

    #adminer #c4l #moodle #selfhosting

  7. Question, my colleague want's a small database with only a few tables ( #Mariadb / #mysql #sql ) - Data pushed with PowerShell Scripts

    He also wants a small Web UI to search in this database with "basic" filtering

    I've found #Adminer (adminer.org/de/) which looks simpler then things like phpMyAdmin

    Is this a good choice ? thx