Skip to content

A keygen rewritten to JavaScript for Doors 95 and every Macroshaft software in the period.

License

Notifications You must be signed in to change notification settings

xproot/95-KEYGEN-JS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

95-KEYGEN-JS

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

Usage

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.

Quickly install it in your website

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>

imageimageimage

and you should have something like this (I also recommend seeing the index.html as that works as an example website too.)

About

A keygen rewritten to JavaScript for Doors 95 and every Macroshaft software in the period.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published