2018-10-16 15:02:39 -04:00
/**
* @author arnydo [arnydo@protonmail.com]
2018-11-07 13:23:05 +00:00
* @author n1474335 [n1474335@gmail.com]
* @copyright Crown Copyright 2018
2018-10-16 15:02:39 -04:00
* @license Apache-2.0
*/
2019-07-09 12:23:59 +01:00
import Operation from "../Operation.mjs" ;
import { URL_REGEX , DOMAIN_REGEX } from "../lib/Extract.mjs" ;
2018-10-16 15:02:39 -04:00
/**
* DefangURL operation
*/
class DefangURL extends Operation {
/**
* DefangURL constructor
*/
constructor () {
super ();
this . name = "Defang URL" ;
2018-11-07 13:23:05 +00:00
this . module = "Default" ;
this . description = "Takes a Universal Resource Locator (URL) and 'Defangs' it; meaning the URL becomes invalid, neutralising the risk of accidentally clicking on a malicious link.<br><br>This is often used when dealing with malicious links or IOCs.<br><br>Works well when combined with the 'Extract URLs' operation." ;
this . infoURL = "https://isc.sans.edu/forums/diary/Defang+all+the+things/22744/" ;
2018-10-16 15:02:39 -04:00
this . inputType = "string" ;
this . outputType = "string" ;
2018-11-07 13:23:05 +00:00
this . args = [
{
name : "Escape dots" ,
type : "boolean" ,
value : true
},
{
name : "Escape http" ,
type : "boolean" ,
value : true
},
{
name : "Escape ://" ,
type : "boolean" ,
value : true
},
{
name : "Process" ,
type : "option" ,
value : [ "Valid domains and full URLs" , "Only full URLs" , "Everything" ]
}
];
2018-10-16 15:02:39 -04:00
}
/**
* @param {string} input
* @param {Object[]} args
* @returns {string}
*/
run ( input , args ) {
2018-11-07 13:23:05 +00:00
const [ dots , http , slashes , process ] = args ;
switch ( process ) {
case "Valid domains and full URLs" :
input = input . replace ( URL_REGEX , x => {
return defangURL ( x , dots , http , slashes );
});
input = input . replace ( DOMAIN_REGEX , x => {
return defangURL ( x , dots , http , slashes );
});
break ;
case "Only full URLs" :
input = input . replace ( URL_REGEX , x => {
return defangURL ( x , dots , http , slashes );
});
break ;
case "Everything" :
input = defangURL ( input , dots , http , slashes );
break ;
}
return input ;
2018-10-16 15:02:39 -04:00
}
}
2018-11-07 13:23:05 +00:00
/**
* Defangs a given URL
*
* @param {string} url
* @param {boolean} dots
* @param {boolean} http
* @param {boolean} slashes
* @returns {string}
*/
function defangURL ( url , dots , http , slashes ) {
if ( dots ) url = url . replace ( /\./g , "[.]" );
if ( http ) url = url . replace ( /http/gi , "hxxp" );
if ( slashes ) url = url . replace ( /:\/\//g , "[://]" );
return url ;
}
2018-10-16 15:02:39 -04:00
export default DefangURL ;