CyberChef/docs/quicksearch.html

32 lines
764 KiB
HTML
Raw Normal View History

2016-11-28 11:01:54 +00:00
<html>
<head>
</head>
<body style="background: transparent;">
<script src="scripts/docstrap.lib.js"></script>
<script src="scripts/lunr.min.js"></script>
<script src="scripts/fulltext-search.js"></script>
<script type="text/x-docstrap-searchdb">
{"config_Categories.js.html":{"id":"config_Categories.js.html","title":"Source: config/Categories.js","body":" CyberChef Namespaces FlowControlUtilsBaseBase64BitwiseOpByteReprCharEncChecksumCipherCodeCompressConvertDateTimeEndianEntropyExtractFileTypeHTMLHTTPHashHexdumpIPJSMACNumberwangOSPublicKeyPunycodeQuotedPrintableRotateSeqUtilsStrUtilsTidyURL_UUIDUnicode Classes ChefDishIngredientOperationRecipeControlsWaiterHTMLAppHTMLCategoryHTMLIngredientHTMLOperationHighlighterWaiterInputWaiterManagerOperationsWaiterOptionsWaiterOutputWaiterRecipeWaiterSeasonalWaiterWindowWaiter Events Manager#event:appstartManager#event:operationaddManager#event:operationremoveManager#event:oplistcreateManager#event:statechange Global CategoriesOperationConfigmain Source: config/Categories.js /** * Type definition for a CatConf. * * @typedef {Object} CatConf * @property {string} name - The display name for the category * @property {string[]} ops - A list of the operations to be included in this category */ /** * Categories of operations. * * @author n1474335 [n1474335@gmail.com] * @copyright Crown Copyright 2016 * @license Apache-2.0 * * @constant * @type {CatConf[]} */ var Categories = [ { name: &quot;Favourites&quot;, ops: [] }, { name: &quot;Data format&quot;, ops: [ &quot;To Hexdump&quot;, &quot;From Hexdump&quot;, &quot;To Hex&quot;, &quot;From Hex&quot;, &quot;To Charcode&quot;, &quot;From Charcode&quot;, &quot;To Decimal&quot;, &quot;From Decimal&quot;, &quot;To Binary&quot;, &quot;From Binary&quot;, &quot;To Base64&quot;, &quot;From Base64&quot;, &quot;Show Base64 offsets&quot;, &quot;To Base32&quot;, &quot;From Base32&quot;, &quot;To Base&quot;, &quot;From Base&quot;, &quot;To HTML Entity&quot;, &quot;From HTML Entity&quot;, &quot;URL Encode&quot;, &quot;URL Decode&quot;, &quot;Unescape Unicode Characters&quot;, &quot;To Quoted Printable&quot;, &quot;From Quoted Printable&quot;, &quot;To Punycode&quot;, &quot;From Punycode&quot;, &quot;To Hex Content&quot;, &quot;From Hex Content&quot;, &quot;PEM to Hex&quot;, &quot;Hex to PEM&quot;, &quot;Parse ASN.1 hex string&quot;, &quot;Change IP format&quot;, &quot;Text encoding&quot;, &quot;Swap endianness&quot;, ] }, { name: &quot;Encryption / Encoding&quot;, ops: [ &quot;AES Encrypt&quot;, &quot;AES Decrypt&quot;, &quot;Blowfish Encrypt&quot;, &quot;Blowfish Decrypt&quot;, &quot;DES Encrypt&quot;, &quot;DES Decrypt&quot;, &quot;Triple DES Encrypt&quot;, &quot;Triple DES Decrypt&quot;, &quot;Rabbit Encrypt&quot;, &quot;Rabbit Decrypt&quot;, &quot;RC4&quot;, &quot;RC4 Drop&quot;, &quot;ROT13&quot;, &quot;XOR&quot;, &quot;XOR Brute Force&quot;, &quot;Derive PBKDF2 key&quot;, &quot;Derive EVP key&quot;, ] }, { name: &quot;Public Key&quot;, ops: [ &quot;Parse X.509 certificate&quot;, &quot;Parse ASN.1 hex string&quot;, &quot;PEM to Hex&quot;, &quot;Hex to PEM&quot;, &quot;Hex to Object Identifier&quot;, &quot;Object Identifier to Hex&quot;, ] }, { name: &quot;Logical operations&quot;, ops: [ &quot;XOR&quot;, &quot;XOR Brute Force&quot;, &quot;OR&quot;, &quot;NOT&quot;, &quot;AND&quot;, &quot;ADD&quot;, &quot;SUB&quot;, &quot;Rotate left&quot;, &quot;Rotate right&quot;, &quot;ROT13&quot;, ] }, { name: &quot;Networking&quot;, ops: [ &quot;Strip HTTP headers&quot;, &quot;Parse User Agent&quot;, &quot;Parse IP range&quot;, &quot;Parse IPv6 address&quot;, &quot;Parse URI&quot;, &quot;URL Encode&quot;, &quot;URL Decode&quot;, &quot;Format MAC addresses&quot;, &quot;Change IP format&quot;, &quot;Group IP addresses&quot;, ] }, { name: &quot;Language&quot;, ops: [ &quot;Text encoding&quot;, &quot;Unescape Unicode Characters&quot;, ] }, { name: &quot;Utils&quot;, ops: [ &quot;Diff&quot;, &quot;Remove whitespace&quot;, &quot;Remove null bytes&quot;, &quot;To Upper case&quot;, &quot;To Lower case&quot;, &quot;Add line numbers&quot;, &quot;Remove line numbers&quot;, &quot;Reverse&quot;, &quot;Sort&quot;, &quot;Unique&quot;, &quot;Split&quot;, &quot;Count occurrences&quot;, &quot;Expand alphabet range&quot;, &quot;Parse escaped string&quot;, &quot;Drop bytes&quot;, &quot;Take bytes&quot;, &quot;Pad lines&q
</script>
<script type="text/javascript">
$(document).ready(function() {
Searcher.init();
});
$(window).on("message", function(msg) {
var msgData = msg.originalEvent.data;
if (msgData.msgid != "docstrap.quicksearch.start") {
return;
}
var results = Searcher.search(msgData.searchTerms);
window.parent.postMessage({"results": results, "msgid": "docstrap.quicksearch.done"}, "*");
});
</script>
</body>
</html>