0% found this document useful (0 votes)
197 views2 pages

Random Number Generator

This document contains a random number generator that generates a 32-character hexadecimal number when submitted. The number is displayed below the submitted AID value. The document also includes scripts that modify form submission events for tracking purposes.

Uploaded by

fallenczar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
197 views2 pages

Random Number Generator

This document contains a random number generator that generates a 32-character hexadecimal number when submitted. The number is displayed below the submitted AID value. The document also includes scripts that modify form submission events for tracking purposes.

Uploaded by

fallenczar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!-- saved from url=(0044)http://cma.henkaku.xyz/?

aid=212e40fa5ca2965d -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>
random number generator
</title>
<script id="spHTMLFormElementPrototypeScript">(function()
{
try
{
var sp_old_HTMLFormElementPrototype_submit =
HTMLFormElement.prototype.submit;
HTMLFormElement.prototype.submit = function(AEvent)
{
try
{
var spEvent = document.createEvent('Event');
spEvent.initEvent('sp_submit', true, true);
this.dispatchEvent(spEvent);
}
catch(ErrorMessage)
{
console.error('spFormElementPrototype() Error sending "sp_submit" event
from HTMLFormElement.prototype.submit: ' + ErrorMessage);
}
sp_old_HTMLFormElementPrototype_submit.apply(this);
};
}
catch(ErrorMessage)
{
console.error('spFormElementPrototype() Error attaching to
HTMLFormElement.prototype.submit: ' + ErrorMessage);
}

try
{
if (typeof __doPostBack == 'function')
{
var sp_old__doPostBack = __doPostBack;
__doPostBack = function(eventTarget, eventArgument)
{
try
{
var spEvent = document.createEvent('Event');
spEvent.initEvent('sp_submit', true, true);
window.dispatchEvent(spEvent);
}
catch(ErrorMessage)
{
console.error('spFormElementPrototype() Error sending "sp_submit" event
from __doPostBack(): ' + ErrorMessage);
}
sp_old__doPostBack(eventTarget, eventArgument);
};
}
}
catch(ErrorMessage)
{
console.error('spFormElementPrototype() Error attaching to __doPostBack(): '
+ ErrorMessage);
}
})();</script></head>

<body><form method="GET">
AID: <input type="text" name="aid">
<input type="submit">
</form>

<b>212e40fa5ca2965d</b>:
46c23e180c5b65bee2c9a79a62cbef78fd0aa1846abc33890f374ac03aee55b1
</body></html>

You might also like