UAC Decode Online

Developer
Size
2,411 Kb
Views
44,528

How do I make an uac decode online?

What is a uac decode online? How do you make a uac decode online? This script and codes were developed by JR Jenkins on 04 October 2022, Tuesday.

UAC Decode Online Previews

UAC Decode Online - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>UAC Decode Online</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id='frontmatter'> <p id='purpose'>This allows you to take the Decimal value for the <a href='https://support.microsoft.com/en-us/kb/305144'>userAccountControl from an Active Directory</a> LDAP response and decode it into the appropriate flags.</p> <p id='credits'>Based on the discussion at <a href='http://bsonposh.com/archives/288'>http://bsonposh.com/archives/288</a>.</p></div>
<input type='text' id='uac' placeholder='Enter decimal UAC here'><input type='button' id='decode' value='Decode' />
<div id=result></div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

UAC Decode Online - Script Codes CSS Codes

input[type=text] {width: 250px;}

UAC Decode Online - Script Codes JS Codes

function checkUAC(uac) { var response = []; var flags = [ [0x0002, 'ACCOUNTDISABLE'], [0x0008, 'HOMEDIR_REQUIRED'], [0x0010, 'LOCKOUT'], [0x0020, 'PASSWD_NOTREQD'], [0x0040, 'PASSWD_CANT_CHANGE'], [0x0080, 'ENCRYPTED_TEXT_PWD_ALLOWED'], [0x0100, 'TEMP_DUPLICATE_ACCOUNT'], [0x0200, 'NORMAL_ACCOUNT'], [0x0800, 'INTERDOMAIN_TRUST_ACCOUNT'], [0x1000, 'WORKSTATION_TRUST_ACCOUNT'], [0x2000, 'SERVER_TRUST_ACCOUNT'], [0x10000, 'DONT_EXPIRE_PASSWORD'], [0x20000, 'MNS_LOGON_ACCOUNT'], [0x40000, 'SMARTCARD_REQUIRED'], [0x80000, 'TRUSTED_FOR_DELEGATION'], [0x100000, 'NOT_DELEGATED'], [0x200000, 'USE_DES_KEY_ONLY'], [0x400000, 'DONT_REQ_PREAUTH'], [0x800000, 'PASSWORD_EXPIRED'], [0x1000000, 'TRUSTED_TO_AUTH_FOR_DELEGATION'], ]; for (let value of flags) { if ((uac | value[0]) === uac) { response.push(value[1]); } } if (response.length > 0) { markup = "<ul>"; for (let item of response) { markup += '<li>' + item + '</li>' } markup += '</ul>'; } else { markup = "unable to decode"; } return markup;
}
$( document ).ready(function() { $( "#decode" ).on( "click", function() { checkval = parseInt($('#uac').val()); result = checkUAC(checkval); $('#result').html(result);
});
});
UAC Decode Online - Script Codes
UAC Decode Online - Script Codes
Home Page Home
Developer JR Jenkins
Username jrjenk
Uploaded October 04, 2022
Rating 3
Size 2,411 Kb
Views 44,528
Do you need developer help for UAC Decode Online?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

JR Jenkins (jrjenk) Script Codes
Create amazing video scripts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!