File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -62,3 +62,9 @@ export const URL_REGEX = new RegExp(protocol + hostname + "(?:" + port + ")?(?:"
62
62
* Domain name regular expression
63
63
*/
64
64
export const DOMAIN_REGEX = / \b ( (? = [ a - z 0 - 9 - ] { 1 , 63 } \. ) ( x n - - ) ? [ a - z 0 - 9 ] + ( - [ a - z 0 - 9 ] + ) * \. ) + [ a - z ] { 2 , 63 } \b / ig;
65
+
66
+
67
+ /**
68
+ * DMARC Domain name regular expression
69
+ */
70
+ export const DMARC_DOMAIN_REGEX = / \b ( (? = [ a - z 0 - 9 _ - ] { 1 , 63 } \. ) ( x n - - ) ? [ a - z 0 - 9 _ ] + ( - [ a - z 0 - 9 _ ] + ) * \. ) + [ a - z ] { 2 , 63 } \b / ig;
Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
import Operation from "../Operation.mjs" ;
8
- import { search , DOMAIN_REGEX } from "../lib/Extract.mjs" ;
8
+ import { search , DOMAIN_REGEX , DMARC_DOMAIN_REGEX } from "../lib/Extract.mjs" ;
9
9
import { caseInsensitiveSort } from "../lib/Sort.mjs" ;
10
10
11
11
/**
@@ -39,6 +39,11 @@ class ExtractDomains extends Operation {
39
39
name : "Unique" ,
40
40
type : "boolean" ,
41
41
value : false
42
+ } ,
43
+ {
44
+ name : "Underscore (DMARC, DKIM, etc)" ,
45
+ type : "boolean" ,
46
+ value : false
42
47
}
43
48
] ;
44
49
}
@@ -49,11 +54,11 @@ class ExtractDomains extends Operation {
49
54
* @returns {string }
50
55
*/
51
56
run ( input , args ) {
52
- const [ displayTotal , sort , unique ] = args ;
57
+ const [ displayTotal , sort , unique , dmarc ] = args ;
53
58
54
59
const results = search (
55
60
input ,
56
- DOMAIN_REGEX ,
61
+ dmarc ? DMARC_DOMAIN_REGEX : DOMAIN_REGEX ,
57
62
null ,
58
63
sort ? caseInsensitiveSort : null ,
59
64
unique
You can’t perform that action at this time.
0 commit comments