mirror of
https://github.com/gchq/CyberChef
synced 2025-01-13 04:58:49 +00:00
Fixed regex issue
This commit is contained in:
parent
414726ecd4
commit
2a7c0252a0
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ const VBE = {
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
runDecodeVBE: function (data, args) {
|
runDecodeVBE: function (data, args) {
|
||||||
let matcher = /#@~\^......==(.+)......==\^#~@/gm,
|
let matcher = /#@~\^......==(.+)......==\^#~@/,
|
||||||
result = "",
|
result = "",
|
||||||
encodedData;
|
encodedData;
|
||||||
while ((encodedData = matcher.exec(data))) {
|
while ((encodedData = matcher.exec(data))) {
|
||||||
|
|
Loading…
Reference in a new issue