mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-07 15:07:11 -04:00
Fixing recipe location
removing Google analysis fixing package, pulling from master
This commit is contained in:
parent
3ee01f7dc4
commit
209f98a88e
4 changed files with 7 additions and 17 deletions
|
@ -92,8 +92,5 @@
|
||||||
"build": "grunt prod",
|
"build": "grunt prod",
|
||||||
"test": "grunt test",
|
"test": "grunt test",
|
||||||
"docs": "grunt docs"
|
"docs": "grunt docs"
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"grunt-cli": "^1.2.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,7 @@ import Unicode from "../operations/Unicode.js";
|
||||||
import URL_ from "../operations/URL.js";
|
import URL_ from "../operations/URL.js";
|
||||||
import UUID from "../operations/UUID.js";
|
import UUID from "../operations/UUID.js";
|
||||||
|
|
||||||
|
import nTcpdump from "../operations/nTcpdump.js";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Type definition for an OpConf.
|
* Type definition for an OpConf.
|
||||||
|
@ -614,7 +615,7 @@ const OperationConfig = {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"From nTcpdump": {
|
"From nTcpdump": {
|
||||||
description: "For Tcpdump conversion only. (nva-hk)",
|
description: "For Tcpdump conversion only.",
|
||||||
run: nTcpdump.runFrom,
|
run: nTcpdump.runFrom,
|
||||||
highlight: nTcpdump.highlightFrom,
|
highlight: nTcpdump.highlightFrom,
|
||||||
highlightReverse: nTcpdump.highlightTo,
|
highlightReverse: nTcpdump.highlightTo,
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
/* globals app */
|
/* globals app */
|
||||||
|
import Utils from "../Utils.js";
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hexdump operations.
|
* Hexdump operations.
|
||||||
|
@ -9,7 +11,7 @@
|
||||||
*
|
*
|
||||||
* @namespace
|
* @namespace
|
||||||
*/
|
*/
|
||||||
var nTcpdump = {
|
const nTcpdump = {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @constant
|
* @constant
|
||||||
|
@ -198,3 +200,5 @@ var nTcpdump = {
|
||||||
},
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export default nTcpdump;
|
|
@ -1,18 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
<!-- Begin Google Analytics -->
|
<!-- Begin Google Analytics -->
|
||||||
<script>
|
|
||||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
||||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
||||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
||||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
||||||
|
|
||||||
ga('create', 'UA-85682716-2', 'auto');
|
|
||||||
|
|
||||||
// Specifying location.pathname here overrides the default URL which would include arguments.
|
|
||||||
// This method prevents Google Analytics from logging any recipe or input data in the URL.
|
|
||||||
ga('send', 'pageview', location.pathname);
|
|
||||||
|
|
||||||
</script>
|
|
||||||
<!-- End Google Analytics -->
|
<!-- End Google Analytics -->
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue