Difference between revisions of "Widget:NTLMgenerator"

From Hackerspace ACKspace
Jump to: navigation, search
m (<sigh>)
m (firefix)
 
Line 51: Line 51:
 
{
 
{
 
     "use strict";
 
     "use strict";
     document.write( '<input size="40" type="password" onchange="generateNTLM()" onkeyup="generateNTLM()" onpaste="generateNTLM()" /><br/><input size="40" type="text" readonly="readonly" id="NTLM" />' );
+
     document.write( '<input size="40" type="password" onchange="generateNTLM(event)" onkeyup="generateNTLM(event)" onpaste="generateNTLM(event)" /><br/><input size="40" type="text" readonly="readonly" id="NTLM" />' );
 
}( ));
 
}( ));
 
</script>
 
</script>
 
</includeonly>
 
</includeonly>

Latest revision as of 16:36, 19 August 2018

This widget allows you to create an NTLM hash from a password (used in spacenet accounts)

Created by Xopr

Using this widget

To insert this widget, use the following code:

{{#widget:NTLMgenerator}}

This will give the following result:
NTLM hash generator
(note that there is no roundtrip involved, hash is generated client-side using utf8-to-utf16 little endian and md4 hash)

Copy to your site

To use this widget on your site, just install MediaWiki Widgets extension and copy full source code of this page to your wiki as Widget:NTLMgenerator article.