A keygen rewritten to JavaScript for Doors 95 and every Macroshaft software in the period. Live Demo - Original Python Version - Thanks to this amazing source too
generateMsSerial(ver);
Where ver can be "oem", "11", or anything else (anything else will be interpreted as a retail serial).
once ran, it will return a serial.
Download 95keygen.js from here and add <script src="95keygen.js"></script>
in a convienent place or you can skip downloading and uploading a js file by adding
<script src="https://xproot.neocities.org/projects/js/95keygen.js"></script>
(only HTTPS though, not perfect) and after you've properly inserted the script make a quick function that takes the return value of generateMsSerial() or generateMsSerial('oem') and puts it somewhere
EXAMPLE
<script>
function generateSerial(version) {
document.getElementById("serial").innerText = generateMsSerial(version);
}
</script>
... (and somewhere in your body) ...
<p id="serial"></p>
<button onClick="generateSerial()">get a retail serial!</button>
<button onClick="generateSerial('oem')">get a oem serial!</button>
<button onClick="generateSerial('11')">get a 11-digit serial!</button>
and you should have something like this (I also recommend seeing the index.html as that works as an example website too.)