281 lines
7.0 KiB
HTML
281 lines
7.0 KiB
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width">
|
||
|
<title>CyberChef Source: web/index.js</title>
|
||
|
|
||
|
<!--[if lt IE 9]>
|
||
|
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||
|
<![endif]-->
|
||
|
<link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
|
||
|
|
||
|
<link type="text/css" rel="stylesheet" href="styles/site.cerulean.css">
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="navbar navbar-default navbar-fixed-top navbar-inverse">
|
||
|
<div class="container">
|
||
|
<div class="navbar-header">
|
||
|
<a class="navbar-brand" href="index.html"><img class="branding-logo" src="cyberchef-32x32.png"
|
||
|
alt="logo"/>CyberChef</a>
|
||
|
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#topNavigation">
|
||
|
<span class="icon-bar"></span>
|
||
|
<span class="icon-bar"></span>
|
||
|
<span class="icon-bar"></span>
|
||
|
</button>
|
||
|
</div>
|
||
|
<div class="navbar-collapse collapse" id="topNavigation">
|
||
|
<ul class="nav navbar-nav">
|
||
|
|
||
|
<li class="dropdown">
|
||
|
<a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b class="caret"></b></a>
|
||
|
<ul class="dropdown-menu inline">
|
||
|
<li><a href="global.html#bake">bake</a></li><li><a href="global.html#_bake">_bake</a></li><li><a href="global.html#getDishAs">getDishAs</a></li><li><a href="global.html#_getDishAs">_getDishAs</a></li><li><a href="global.html#_calculateHighlights">_calculateHighlights</a></li><li><a href="global.html#main">main</a></li><li><a href="global.html#sitemap">sitemap</a></li>
|
||
|
</ul>
|
||
|
</li>
|
||
|
|
||
|
</ul>
|
||
|
|
||
|
<div class="col-sm-3 col-md-3">
|
||
|
<form class="navbar-form" role="search">
|
||
|
<div class="input-group">
|
||
|
<input type="text" class="form-control" placeholder="Search" name="q" id="search-input">
|
||
|
<div class="input-group-btn">
|
||
|
<button class="btn btn-default" id="search-submit"><i class="glyphicon glyphicon-search"></i></button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="container" id="toc-content">
|
||
|
<div class="row">
|
||
|
|
||
|
|
||
|
<div class="col-md-12">
|
||
|
|
||
|
<div id="main">
|
||
|
|
||
|
|
||
|
<h1 class="page-title">Source: web/index.js</h1>
|
||
|
|
||
|
<section>
|
||
|
<article>
|
||
|
<pre
|
||
|
class="sunlight-highlight-javascript linenums">/**
|
||
|
* @author n1474335 [n1474335@gmail.com]
|
||
|
* @copyright Crown Copyright 2016
|
||
|
* @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
// Styles
|
||
|
import "./stylesheets/index.js";
|
||
|
|
||
|
// Libs
|
||
|
import "babel-polyfill";
|
||
|
import "arrive";
|
||
|
import "snackbarjs";
|
||
|
import "bootstrap-material-design";
|
||
|
import "bootstrap-colorpicker";
|
||
|
import moment from "moment-timezone";
|
||
|
import * as CanvasComponents from "../core/lib/CanvasComponents";
|
||
|
|
||
|
// CyberChef
|
||
|
import App from "./App";
|
||
|
import Categories from "../core/config/Categories.json";
|
||
|
import OperationConfig from "../core/config/OperationConfig.json";
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Main function used to build the CyberChef web app.
|
||
|
*/
|
||
|
function main() {
|
||
|
const defaultFavourites = [
|
||
|
"To Base64",
|
||
|
"From Base64",
|
||
|
"To Hex",
|
||
|
"From Hex",
|
||
|
"To Hexdump",
|
||
|
"From Hexdump",
|
||
|
"URL Decode",
|
||
|
"Regular expression",
|
||
|
"Entropy",
|
||
|
"Fork",
|
||
|
"Magic"
|
||
|
];
|
||
|
|
||
|
const defaultOptions = {
|
||
|
updateUrl: true,
|
||
|
showHighlighter: true,
|
||
|
treatAsUtf8: true,
|
||
|
wordWrap: true,
|
||
|
showErrors: true,
|
||
|
errorTimeout: 4000,
|
||
|
attemptHighlight: true,
|
||
|
theme: "classic",
|
||
|
useMetaKey: false,
|
||
|
ioDisplayThreshold: 512,
|
||
|
logLevel: "info",
|
||
|
autoMagic: true,
|
||
|
};
|
||
|
|
||
|
document.removeEventListener("DOMContentLoaded", main, false);
|
||
|
window.app = new App(Categories, OperationConfig, defaultFavourites, defaultOptions);
|
||
|
window.app.setup();
|
||
|
}
|
||
|
|
||
|
window.compileTime = moment.tz(COMPILE_TIME, "DD/MM/YYYY HH:mm:ss z", "UTC").valueOf();
|
||
|
window.compileMessage = COMPILE_MSG;
|
||
|
|
||
|
// Make libs available to operation outputs
|
||
|
window.CanvasComponents = CanvasComponents;
|
||
|
|
||
|
document.addEventListener("DOMContentLoaded", main, false);
|
||
|
|
||
|
</pre>
|
||
|
</article>
|
||
|
</section>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="clearfix"></div>
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="modal fade" id="searchResults">
|
||
|
<div class="modal-dialog">
|
||
|
<div class="modal-content">
|
||
|
<div class="modal-header">
|
||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||
|
<h4 class="modal-title">Search results</h4>
|
||
|
</div>
|
||
|
<div class="modal-body"></div>
|
||
|
<div class="modal-footer">
|
||
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||
|
</div>
|
||
|
</div><!-- /.modal-content -->
|
||
|
</div><!-- /.modal-dialog -->
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<footer>
|
||
|
|
||
|
|
||
|
<span class="copyright">
|
||
|
© Crown Copyright 2017
|
||
|
</span>
|
||
|
|
||
|
<span class="jsdoc-message">
|
||
|
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a>
|
||
|
|
||
|
on Sat Mar 9th 2019
|
||
|
|
||
|
using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
|
||
|
</span>
|
||
|
</footer>
|
||
|
|
||
|
<script src="scripts/docstrap.lib.js"></script>
|
||
|
<script src="scripts/toc.js"></script>
|
||
|
|
||
|
<script type="text/javascript" src="scripts/fulltext-search-ui.js"></script>
|
||
|
|
||
|
|
||
|
<script>
|
||
|
$( function () {
|
||
|
$( "[id*='$']" ).each( function () {
|
||
|
var $this = $( this );
|
||
|
|
||
|
$this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) );
|
||
|
} );
|
||
|
|
||
|
$( ".tutorial-section pre, .readme-section pre, pre.prettyprint.source" ).each( function () {
|
||
|
var $this = $( this );
|
||
|
|
||
|
var example = $this.find( "code" );
|
||
|
exampleText = example.html();
|
||
|
var lang = /{@lang (.*?)}/.exec( exampleText );
|
||
|
if ( lang && lang[1] ) {
|
||
|
exampleText = exampleText.replace( lang[0], "" );
|
||
|
example.html( exampleText );
|
||
|
lang = lang[1];
|
||
|
} else {
|
||
|
var langClassMatch = example.parent()[0].className.match(/lang\-(\S+)/);
|
||
|
lang = langClassMatch ? langClassMatch[1] : "javascript";
|
||
|
}
|
||
|
|
||
|
if ( lang ) {
|
||
|
|
||
|
$this
|
||
|
.addClass( "sunlight-highlight-" + lang )
|
||
|
.addClass( "linenums" )
|
||
|
.html( example.html() );
|
||
|
|
||
|
}
|
||
|
} );
|
||
|
|
||
|
Sunlight.highlightAll( {
|
||
|
lineNumbers : true,
|
||
|
showMenu : true,
|
||
|
enableDoclinks : true
|
||
|
} );
|
||
|
|
||
|
$.catchAnchorLinks( {
|
||
|
navbarOffset: 10
|
||
|
} );
|
||
|
$( "#toc" ).toc( {
|
||
|
anchorName : function ( i, heading, prefix ) {
|
||
|
return $( heading ).attr( "id" ) || ( prefix + i );
|
||
|
},
|
||
|
selectors : "#toc-content h1,#toc-content h2,#toc-content h3,#toc-content h4",
|
||
|
showAndHide : false,
|
||
|
smoothScrolling: true
|
||
|
} );
|
||
|
|
||
|
$( "#main span[id^='toc']" ).addClass( "toc-shim" );
|
||
|
$( '.dropdown-toggle' ).dropdown();
|
||
|
|
||
|
$( "table" ).each( function () {
|
||
|
var $this = $( this );
|
||
|
$this.addClass('table');
|
||
|
} );
|
||
|
|
||
|
} );
|
||
|
</script>
|
||
|
|
||
|
|
||
|
|
||
|
<!--Navigation and Symbol Display-->
|
||
|
|
||
|
|
||
|
<!--Google Analytics-->
|
||
|
|
||
|
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
$(document).ready(function() {
|
||
|
SearcherDisplay.init();
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|