One other trick when the administrator had locked down the Registry Editor was to use the EDIT.COM program to modify REGEDIT.EXE and corrupt the "DisableRegistryTools" string, and save it in some directory you have write access to. Then it wouldn't read the value keyed by that string in the registry. If I remember correctly you'd have to open EDIT with a command line parameter that enabled binary mode, something like…
Reproducing the printer hack of Windows 95
21–30 of 51 posts
Re: Reproducing the printer hack of Windows 95
#22I always thought that GIF was of NT 4, not Win95, because the Logon box has a Domain field. Question mark ?
The NT4 login dialog looks like those of NT3.51 or Windows 2000 (and XP Pro if you switch do a domain-based login). See e.g. the one of Windows 2000 (on a machine visible not jointed to a domain) here: https://old.reddit.com/r/Windows10/comments/uyau0h/is_it_som.... And AFAIK there's no way to bypass NT login dialog.
Re: Reproducing the printer hack of Windows 95
#23I remember a similar thing with the Novell login at school on Windows XP. If you just unplugged the ethernet cable at the right time, you would login straight away and even with a higher permission account compared to a normal login. Nobody really cared about computer security back then.
Once the other students found out about this, there were many damaged Ethernet ports as they yanked the cables out of the ports violently. The school administrators eventually fixed the Internet filter vulnerability but the application one remained because not many people cared about it.
Re: Reproducing the printer hack of Windows 95
#24The rant about qemu/kvm at the bottom is weird. Has the author never heard of virt-manager or gnome-boxes?
virt-manager/gnome-boxes haven't achieved the same mindshare as, say, virtualbox, so it is entirely possible. I know when I took a break from VMs for awhile and came back, I found virt-manager about 3 days after I started trying to crack the nut of qemu/kvm from only the command line.
Re: Reproducing the printer hack of Windows 95
#25Security just wasn’t huge back then. I remember once not having log in credentials so I was able to create a new admin account at the start up and then delete the old password on the original account. It was rather trivial to break into a pc back then.
Re: Reproducing the printer hack of Windows 95
#26With .net ported back to 95, one should get his security ready too.
For the uninitiated, I present this masterpiece: https://youtu.be/CTUMNtKQLl8
Re: Reproducing the printer hack of Windows 95
#27Earlier quoted context omitted.
# create disk image qemu-img create -f qcow2 win95.img 10G # install win95 from iso qemu-system-x86_64 -m 256 -hda win95.img -cdrom windows95.iso -boot d # boot the disk qemu-system-x86_64 -m 256 -hda win95.img
Now configure the network card on that thing
-netdev user,id=net0 -device e1000,netdev=net0Re: Reproducing the printer hack of Windows 95
#28Cool. No substantial comment but found this quite entertaining to read. > * I prefer to use VirtualBox because I am unable to make QEMU/KVM work, since I am not a rocket scientist. I don't see the advantage of a package manager when I have to edit random config files and hunt for tutorials. Why this can't be managed by APT or explained by the developer/maintainer? Seriously, why this needs to be another Wine-like exp…
But it's getting deprecated, iirc ?
Re: Reproducing the printer hack of Windows 95
#29Cool. No substantial comment but found this quite entertaining to read. > * I prefer to use VirtualBox because I am unable to make QEMU/KVM work, since I am not a rocket scientist. I don't see the advantage of a package manager when I have to edit random config files and hunt for tutorials. Why this can't be managed by APT or explained by the developer/maintainer? Seriously, why this needs to be another Wine-like exp…
To be honest, the qemu command line became more and more arcane over the years due to the large number of supported features, and is not very stable across major versions.
For example, until a certain point you could start a VM and install DOS/Win9x with
qemu-system-i386 -m 32 -hda harddisk.img -cdrom cd.iso -fda floppy.img -boot a
if you try to boot it like this now, it will complain that the hard disk has been guessed as "raw": WARNING: Image format was not specified for 'harddisk.img' and probing guessed raw.
Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
Specify the 'raw' format explicitly to remove the restrictions.
So the actual incantation to use is qemu-system-i386 -m 32 -drive format=raw,file=harddisk.img -cdrom cd.iso -fda floppy.img -boot a
which is not as easy to remember, supports conflicting mnemonics (-cdrom and -hda vs -drive) and whatnot (for the added benefit of... what? I suppose the average qemu user can figure out that some stuff can be "dangerous". Why not print the warning and continue without bugging me?)... The network options are even more varied, and IIRC not even the official guide was up to date at some point.I put up with qemu, but when possible I am happy to avoid it.
Re: Reproducing the printer hack of Windows 95
#30Cool. No substantial comment but found this quite entertaining to read. > * I prefer to use VirtualBox because I am unable to make QEMU/KVM work, since I am not a rocket scientist. I don't see the advantage of a package manager when I have to edit random config files and hunt for tutorials. Why this can't be managed by APT or explained by the developer/maintainer? Seriously, why this needs to be another Wine-like exp…
Most of us here take for granted just how arcane CLI actually is.