diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 581c63ba7..8d4704cd4 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -44,7 +44,7 @@ jobs: - name: CredSweeper report if: always() - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: output.json path: output.json diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index dcdfa25d1..adcd2eb07 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -144,21 +144,21 @@ jobs: - name: Upload CredSweeper log if: always() - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: credsweeper path: credsweeper.${{ github.event.pull_request.head.sha }}.log - name: Upload CredSweeper report if: always() - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: report path: report.${{ github.event.pull_request.head.sha }}.json - name: Upload benchmark output if: always() - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: benchmark path: benchmark.${{ github.event.pull_request.head.sha }}.log diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 1eb5250fa..5b16b92af 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -183,7 +183,7 @@ jobs: - name: FLAKE 8 reports if: ${{ failure() && steps.test_flake8.conclusion == 'failure' }} - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: flake8_report path: flake8.txt diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 89bc77089..0461bbf4b 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -54,7 +54,7 @@ jobs: - name: Store coverage report if: always() - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: htmlcov path: htmlcov @@ -81,7 +81,7 @@ jobs: - name: New corpus upload if: ${{ env.NEW_CORPUS > 0 }} - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: new_corpus path: new_corpus @@ -104,7 +104,7 @@ jobs: - name: Crash corpus upload if: ${{ env.CRASH_CORPUS > 0 }} - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: crash_corpus path: crash_corpus diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48689d699..1be0f3f33 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -160,7 +160,7 @@ jobs: - name: HTML coverage reports if: always() - uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3.2.1 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: coverage_html-${{ matrix.python-version }} path: coverage_html diff --git a/credsweeper/deep_scanner/bzip2_scanner.py b/credsweeper/deep_scanner/bzip2_scanner.py index 7712992b4..2ae89f382 100644 --- a/credsweeper/deep_scanner/bzip2_scanner.py +++ b/credsweeper/deep_scanner/bzip2_scanner.py @@ -29,7 +29,7 @@ def data_scan( bzip2_content_provider = DataContentProvider(data=bz2.decompress(data_provider.data), file_path=new_path, file_type=Util.get_extension(new_path), - info=f"{data_provider.info}|BZIP2|{new_path}") + info=f"{data_provider.info}|BZIP2:{new_path}") new_limit = recursive_limit_size - len(bzip2_content_provider.data) bzip2_candidates = self.recursive_scan(bzip2_content_provider, depth, new_limit) return bzip2_candidates diff --git a/credsweeper/deep_scanner/deep_scanner.py b/credsweeper/deep_scanner/deep_scanner.py index dbc006d7c..a74a09994 100644 --- a/credsweeper/deep_scanner/deep_scanner.py +++ b/credsweeper/deep_scanner/deep_scanner.py @@ -1,6 +1,5 @@ import datetime import logging -from pathlib import Path from typing import List, Optional, Any, Tuple, Union from credsweeper.common.constants import RECURSIVE_SCAN_LIMITATION @@ -77,22 +76,26 @@ def scanner(self) -> Scanner: return self.__scanner @staticmethod - def get_deep_scanners(data: bytes, file_type: str) -> List[Any]: + def get_deep_scanners(data: bytes, file_type: str, depth: int) -> List[Any]: """Returns possibly scan methods for the data depends on content""" deep_scanners: List[Any] = [] if Util.is_zip(data): - deep_scanners.append(ZipScanner) + if 0 < depth: + deep_scanners.append(ZipScanner) # probably, there might be a docx, xlxs and so on. # It might be scanned with text representation in third-party libraries. deep_scanners.append(XlsxScanner) deep_scanners.append(DocxScanner) deep_scanners.append(PptxScanner) elif Util.is_bzip2(data): - deep_scanners.append(Bzip2Scanner) + if 0 < depth: + deep_scanners.append(Bzip2Scanner) elif Util.is_tar(data): - deep_scanners.append(TarScanner) + if 0 < depth: + deep_scanners.append(TarScanner) elif Util.is_gzip(data): - deep_scanners.append(GzipScanner) + if 0 < depth: + deep_scanners.append(GzipScanner) elif Util.is_pdf(data): deep_scanners.append(PdfScanner) elif Util.is_jks(data): @@ -113,7 +116,10 @@ def get_deep_scanners(data: bytes, file_type: str) -> List[Any]: deep_scanners.append(MxfileScanner) deep_scanners.append(XmlScanner) else: - deep_scanners = [EncoderScanner, LangScanner, ByteScanner] + if 0 < depth: + deep_scanners.append(EncoderScanner) + deep_scanners.append(LangScanner) + deep_scanners.append(ByteScanner) return deep_scanners # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # @@ -136,6 +142,7 @@ def scan(self, if isinstance(content_provider, TextContentProvider) or isinstance(content_provider, ByteContentProvider): # Feature to scan files which might be containers data = content_provider.data + info = "FILE" elif isinstance(content_provider, DiffContentProvider) and content_provider.diff: candidates = self.scanner.scan(content_provider) # Feature to scan binary diffs @@ -143,20 +150,21 @@ def scan(self, # the check for legal fix mypy issue if isinstance(diff, bytes): data = diff + info = "DIFF" else: logger.warning(f"Content provider {type(content_provider)} does not support deep scan") + info = "NA" if data: data_provider = DataContentProvider(data=data, file_path=content_provider.file_path, file_type=content_provider.file_type, - info=Path(content_provider.file_path).as_posix()) + info=content_provider.info or info) # iterate for all possibly scanner methods WITHOUT ByteContentProvider for TextContentProvider - scanner_classes = self.get_deep_scanners(data, content_provider.file_type) + scanner_classes = self.get_deep_scanners(data, content_provider.file_type, depth) fallback = True for scan_class in scanner_classes: - if new_candidates := scan_class.data_scan(self, data_provider, depth - 1, - recursive_limit_size - len(data)): + if new_candidates := scan_class.data_scan(self, data_provider, depth, recursive_limit_size - len(data)): augment_candidates(candidates, new_candidates) fallback = False if fallback and ByteScanner not in scanner_classes and not Util.is_binary(data): @@ -196,7 +204,7 @@ def recursive_scan( else: fallback = True # iterate for all possibly scanner methods - scanner_classes = self.get_deep_scanners(data_provider.data, data_provider.file_type) + scanner_classes = self.get_deep_scanners(data_provider.data, data_provider.file_type, depth) for scanner_class in scanner_classes: if new_candidates := scanner_class.data_scan(self, data_provider, depth, recursive_limit_size): augment_candidates(candidates, new_candidates) diff --git a/credsweeper/deep_scanner/encoder_scanner.py b/credsweeper/deep_scanner/encoder_scanner.py index 5314ca7cb..1a9b998d8 100644 --- a/credsweeper/deep_scanner/encoder_scanner.py +++ b/credsweeper/deep_scanner/encoder_scanner.py @@ -22,7 +22,7 @@ def data_scan( decoded_data_provider = DataContentProvider(data=data_provider.decoded, file_path=data_provider.file_path, file_type=data_provider.file_type, - info=f"{data_provider.info}|ENCODED") + info=f"{data_provider.info}|BASE64") new_limit = recursive_limit_size - len(decoded_data_provider.data) return self.recursive_scan(decoded_data_provider, depth, new_limit) return None diff --git a/credsweeper/deep_scanner/gzip_scanner.py b/credsweeper/deep_scanner/gzip_scanner.py index 883ced2ee..87932a1b5 100644 --- a/credsweeper/deep_scanner/gzip_scanner.py +++ b/credsweeper/deep_scanner/gzip_scanner.py @@ -31,7 +31,7 @@ def data_scan( gzip_content_provider = DataContentProvider(data=f.read(), file_path=new_path, file_type=Util.get_extension(new_path), - info=f"{data_provider.info}|GZIP|{new_path}") + info=f"{data_provider.info}|GZIP:{new_path}") new_limit = recursive_limit_size - len(gzip_content_provider.data) gzip_candidates = self.recursive_scan(gzip_content_provider, depth, new_limit) return gzip_candidates diff --git a/credsweeper/deep_scanner/jks_scanner.py b/credsweeper/deep_scanner/jks_scanner.py index bc93223fe..2f95606cf 100644 --- a/credsweeper/deep_scanner/jks_scanner.py +++ b/credsweeper/deep_scanner/jks_scanner.py @@ -27,11 +27,11 @@ def data_scan( if keystore.private_keys or keystore.secret_keys: candidate = Candidate.get_dummy_candidate(self.config, data_provider.file_path, data_provider.file_type, - f"{data_provider.info}:'{pw_probe}' - has keys") + f"{data_provider.info}|JKS:'{pw_probe}' - has keys") else: - candidate = Candidate.get_dummy_candidate(self.config, data_provider.file_path, - data_provider.file_type, - f"{data_provider.info}:'{pw_probe}' - default password") + candidate = Candidate.get_dummy_candidate( + self.config, data_provider.file_path, data_provider.file_type, + f"{data_provider.info}|JKS:'{pw_probe}' - default password") candidates.append(candidate) except Exception as jks_exc: logger.debug(f"{data_provider.file_path}:{pw_probe}:{jks_exc}") diff --git a/credsweeper/deep_scanner/pdf_scanner.py b/credsweeper/deep_scanner/pdf_scanner.py index db0234970..6848076ec 100644 --- a/credsweeper/deep_scanner/pdf_scanner.py +++ b/credsweeper/deep_scanner/pdf_scanner.py @@ -27,35 +27,31 @@ def data_scan( # pdfminer.six - splits text in table to many lines. Allows to walk through elements try: candidates = [] - pdf_lines = [] for page in extract_pages(io.BytesIO(data_provider.data), laparams=LAParams()): for element in page: if isinstance(element, LTText): element_text = element.get_text().strip() - if element_text: - element_candidates = [] + if 0 < depth and element_text: if MIN_DATA_LEN < len(element_text): pdf_content_provider = DataContentProvider( data=element_text.encode(), file_path=data_provider.file_path, file_type=data_provider.file_type, - info=f"{data_provider.info}|PDF[{page.pageid}]") + info=f"{data_provider.info}|PDF:{page.pageid}") new_limit = recursive_limit_size - len(pdf_content_provider.data) element_candidates = self.recursive_scan(pdf_content_provider, depth, new_limit) candidates.extend(element_candidates) - if not element_candidates: - # skip to decrease duplicates of candidates - pdf_lines.append(element_text) + else: + string_data_provider = StringContentProvider(lines=[element_text], + file_path=data_provider.file_path, + file_type=data_provider.file_type, + info=f"{data_provider.info}|PDF:{page.pageid}") + pdf_candidates = self.scanner.scan(string_data_provider) + candidates.extend(pdf_candidates) elif isinstance(element, LTItem): pass else: logger.error(f"Unsupported {element}") - string_data_provider = StringContentProvider(lines=pdf_lines, - file_path=data_provider.file_path, - file_type=data_provider.file_type, - info=f"{data_provider.info}|PDF[{page.pageid}]") - pdf_candidates = self.scanner.scan(string_data_provider) - candidates.extend(pdf_candidates) return candidates except Exception as pdf_exc: logger.error(f"{data_provider.file_path}:{pdf_exc}") diff --git a/credsweeper/deep_scanner/pkcs12_scanner.py b/credsweeper/deep_scanner/pkcs12_scanner.py index 8a470bc96..562cade8f 100644 --- a/credsweeper/deep_scanner/pkcs12_scanner.py +++ b/credsweeper/deep_scanner/pkcs12_scanner.py @@ -31,13 +31,13 @@ def data_scan( self.config, # data_provider.file_path, # data_provider.file_type, # - f"{data_provider.info}:'{pw_probe.decode()}' - has keys PKCS12") + f"{data_provider.info}|PKCS12:'{pw_probe.decode()}' - has keys PKCS12") else: candidate = Candidate.get_dummy_candidate( self.config, # data_provider.file_path, # data_provider.file_type, # - f"{data_provider.info}:'{pw_probe.decode()}' - default password PKCS12") + f"{data_provider.info}|PKCS12:'{pw_probe.decode()}' - default password PKCS12") candidates.append(candidate) except Exception as pkcs_exc: logger.debug(f"{data_provider.file_path}:{pw_probe.decode()}:{pkcs_exc}") diff --git a/credsweeper/deep_scanner/pptx_scanner.py b/credsweeper/deep_scanner/pptx_scanner.py index 5de93afc0..9c55f7fe6 100644 --- a/credsweeper/deep_scanner/pptx_scanner.py +++ b/credsweeper/deep_scanner/pptx_scanner.py @@ -34,7 +34,7 @@ def data_scan( string_data_provider = StringContentProvider(lines=pptx_lines, file_path=data_provider.file_path, file_type=data_provider.file_type, - info=f"{data_provider.info}|PPTX[{n+1}]") + info=f"{data_provider.info}|PPTX:{n+1}") pptx_candidates = self.scanner.scan(string_data_provider) candidates.extend(pptx_candidates) return candidates diff --git a/credsweeper/deep_scanner/tar_scanner.py b/credsweeper/deep_scanner/tar_scanner.py index b46137b39..a7153cb93 100644 --- a/credsweeper/deep_scanner/tar_scanner.py +++ b/credsweeper/deep_scanner/tar_scanner.py @@ -39,7 +39,7 @@ def data_scan( tar_content_provider = DataContentProvider(data=f.read(), file_path=data_provider.file_path, file_type=Util.get_extension(tfi.name), - info=f"{data_provider.info}|TAR|{tfi.name}") + info=f"{data_provider.info}|TAR:{tfi.name}") # Nevertheless, use extracted data size new_limit = recursive_limit_size - len(tar_content_provider.data) tar_candidates = self.recursive_scan(tar_content_provider, depth, new_limit) diff --git a/credsweeper/deep_scanner/xlsx_scanner.py b/credsweeper/deep_scanner/xlsx_scanner.py index 95ab49363..72fc95aa2 100644 --- a/credsweeper/deep_scanner/xlsx_scanner.py +++ b/credsweeper/deep_scanner/xlsx_scanner.py @@ -6,9 +6,11 @@ import pandas as pd from credsweeper.credentials import Candidate +from credsweeper.credentials.augment_candidates import augment_candidates from credsweeper.deep_scanner.abstract_scanner import AbstractScanner from credsweeper.file_handler.data_content_provider import DataContentProvider from credsweeper.file_handler.string_content_provider import StringContentProvider +from credsweeper.utils import Util logger = logging.getLogger(__name__) @@ -26,15 +28,26 @@ def data_scan( candidates = [] book = pd.read_excel(io.BytesIO(data_provider.data), sheet_name=None, header=None) for sheet_name, sheet_data in book.items(): + sheet_info = f"{data_provider.info}|{sheet_name}" # replace open xml carriage returns _x000D_ before line feed only df = sheet_data.replace(to_replace="_x000D_\n", value='\n', regex=True).fillna('').astype(str) - sheet_lines = ['\t'.join(x) for x in df.values] - string_data_provider = StringContentProvider(lines=sheet_lines, - file_path=data_provider.file_path, - file_type=data_provider.file_type, - info=f"{data_provider.info}|xlsx:{sheet_name}") - sheet_candidates = self.scanner.scan(string_data_provider) - candidates.extend(sheet_candidates) + for row_pos, row in enumerate(df.values): + for col_pos, cell in enumerate(row): + cell_info = f"{sheet_info}:{Util.get_excel_column_name(col_pos)}{row_pos + 1}" + cell_provider = StringContentProvider(lines=cell.splitlines(), + file_path=data_provider.file_path, + file_type=data_provider.file_type, + info=cell_info) + cell_candidates = self.scanner.scan(cell_provider) + candidates.extend(cell_candidates) + row_line = '\t'.join(row) + row_provider = StringContentProvider(lines=[row_line], + file_path=data_provider.file_path, + file_type=data_provider.file_type, + info=f"{sheet_info}:R{row_pos + 1}") + row_candidates = self.scanner.scan(row_provider) + augment_candidates(candidates, row_candidates) + return candidates except Exception as xlsx_exc: logger.error(f"{data_provider.file_path}:{xlsx_exc}") diff --git a/credsweeper/deep_scanner/zip_scanner.py b/credsweeper/deep_scanner/zip_scanner.py index 7b153f647..c81754578 100644 --- a/credsweeper/deep_scanner/zip_scanner.py +++ b/credsweeper/deep_scanner/zip_scanner.py @@ -39,7 +39,7 @@ def data_scan( zip_content_provider = DataContentProvider(data=f.read(), file_path=data_provider.file_path, file_type=Util.get_extension(zfl.filename), - info=f"{data_provider.info}|ZIP|{zfl.filename}") + info=f"{data_provider.info}|ZIP:{zfl.filename}") # nevertheless use extracted data size new_limit = recursive_limit_size - len(zip_content_provider.data) zip_candidates = self.recursive_scan(zip_content_provider, depth, new_limit) diff --git a/credsweeper/file_handler/data_content_provider.py b/credsweeper/file_handler/data_content_provider.py index 8780bcb0b..69723e155 100644 --- a/credsweeper/file_handler/data_content_provider.py +++ b/credsweeper/file_handler/data_content_provider.py @@ -1,4 +1,3 @@ -import base64 import json import logging import string @@ -370,10 +369,11 @@ def represent_as_encoded(self) -> bool: logger.debug("Weak data to decode from base64: %s", self.data) return False try: - self.decoded = base64.b64decode( # + self.decoded = Util.decode_base64( # self.data.decode(encoding=ASCII, errors="strict"). # translate(str.maketrans("", "", string.whitespace)), # - validate=True) # + padding_safe=True, # + urlsafe_detect=True) # except Exception as exc: logger.debug("Cannot decoded as base64:%s %s", exc, self.data) else: diff --git a/credsweeper/utils/util.py b/credsweeper/utils/util.py index 1e45fe3fc..1db7fabe0 100644 --- a/credsweeper/utils/util.py +++ b/credsweeper/utils/util.py @@ -749,3 +749,14 @@ def subtext(text: str, pos: int, hunk_size: int) -> str: if 0 > left_pos: left_pos = 0 return text[left_pos:right_pos].rstrip() + + @staticmethod + def get_excel_column_name(column_index: int) -> str: + """Converts index based column position into Excel style column name""" + name = '' + if isinstance(column_index, int): + while 0 <= column_index: + column_index, remain = divmod(column_index, 26) + name = f"{chr(ord('A') + remain)}{name}" + column_index -= 1 + return name diff --git a/tests/__init__.py b/tests/__init__.py index 1d66f3607..6f1a21d2d 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -20,8 +20,8 @@ SAMPLES_IN_DOC = 694 # archived credentials that are not found without --depth -SAMPLES_IN_DEEP_1 = SAMPLES_POST_CRED_COUNT + 44 -SAMPLES_IN_DEEP_2 = SAMPLES_IN_DEEP_1 + 53 +SAMPLES_IN_DEEP_1 = SAMPLES_POST_CRED_COUNT + 90 +SAMPLES_IN_DEEP_2 = SAMPLES_IN_DEEP_1 + 7 SAMPLES_IN_DEEP_3 = SAMPLES_IN_DEEP_2 + 1 # well known string with all latin letters diff --git a/tests/data/depth_3.json b/tests/data/depth_3.json index c7d3d11f1..d14a06f2f 100644 --- a/tests/data/depth_3.json +++ b/tests/data/depth_3.json @@ -9,7 +9,7 @@ "line": "ZGVidWdDb250YWluZXI6CiAgaW1hZ2U6CiAgICB2ZXJzaW9uOiBpbnN0YWxsLWRlYnVnLXZlcnNpb24KaGVhcnRiZWF0U2NoZWR1bGU6IDEgMiAzIDQgNQppZGVudGl0eToKICBpc3N1ZXI6CiAgICB0bHM6CiAgICAgIGNydFBFTTogfAogICAgICAgIC0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQogICAgICAgIE1JSUJ3RENDQVdlZ0F3SUJBZ0lSQUpSSWdaOFJ0TzhFd2cxWGVwZjhUNDR3Q2dZSUtvWkl6ajBFQXdJd0tURW4KICAgICAgICBna2RqaHNsa2Roa2dkamhza2pkZmtkamhna2RqaGtkZmpibmtkZm52amtoYnZqaGRiZGpmaGJmamhiZGZNRGd5CiAgICAgICAgbGZrZGprc2xkamdrbGpkZmtnamhkZmtnamhzZGZrbGdqc2RrbGpmZ2hsa2Rmamhsa3NkZmpsa3Nkamt1YkdsdQogICAgICAgIGxzZGpoZnY1NDZtZmRza2dqaGRmamtoZ2tqZGhramhkZmtqZ2hrZGZqaGdramRmaGtqZGZoZ2tqZmRoZ2tqRnAKICAgICAgICBmY1JkZmdoZmRnbWRuZ2tqeGRuYnZqbmN2a2pua2pkbmdram5mZGtqYmt2YmpibnZja2puYmpuZGRmZ2ZkZ3QxCiAgICAgICAgMmJsa2puZ2JramhnbGpkZmxnaGtsamRmbmdqZGZuZ25sZGZrbWxrZGZqZ21sZGZrZ21sa2ZkbWdsa2RtTUFZQgogICAgICAgIEFmOENmZ2xibmpuZGJqZG5rZmpuZ2tkbmZnamtsbmRranZuYmlqZGlmamdpZXJqZ29pamRmbGtneGxrbmdrQ0MKICAgICAgICBIbWxkZmtmamdvaWRmamdnam5kamtmbmdranNkbnNram5qNXNiMk5oYkRBS0JnZ3Foa2pPUFFRREFnTkhBREJFCiAgICAgICAgQWlBdG9mZ2toOTk0NXU4OXV5OWU4dWdodWRmaGd1aGRmZmhpbGd1aGl1aGtkaGZna2pkaGZramhya2piazFwNQogICAgICAgIDVrZmRsc2lmaHU0aHRpdWg0aXR1aGtqaGt6az0KICAgICAgICAtLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCiAgICAgIGtleVBFTTogfAogICAgICAgIC0tLS0tQkVHSU4gRUMgUFJJVkFURSBLRVktLS0tLQogICAgICAgIE1IY0NBUUVFSUFBZThuZmJ6WnU5Yy9PQjJnZGZramdsaWRma2pibnhqa2hiZ2hiZmdoYmpoYmRqaGJzanhjazkKICAgICAgICBvZGlmanZpamRmdm9pamRmb2l2amRmb2lqZGpnbmZka2pnbmtqZGZna2pkZmtqZ2JrampoYmtnSmpYZ1p0TTcyCiAgICAgICAgZGZpb2hndXhoYmtqZ25rbGpkZm5rbGpkbmdram5rZ2puKz09CiAgICAgICAgLS0tLS1FTkQgRUMgUFJJVkFURSBLRVktLS0tLQppZGVudGl0eVRydXN0QW5jaG9yc1BFTTogfAogIC0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQogIE1JSUJ3VENDQVdhZ0F3SUJBZ0lRZURacDVsRGFJeWdRNVVmTUtaZGZuZ2puZGZrZ2puZmRramdua2RqbmtkamYKICBkZmtuZ2tqYmtqZGZic2tqYm5ma2puc2RrZ2psbnhrY2pibmt4am5ja2pnbmtqbmdreGpuZ2tqeGNua2dqbkk0CiAgTURkc2xrZmpvaWVyOGhzZGY4ZmdoZzc4NGg5OHQ5OGVydWhpdXNkaGtmZ2hoc2poYmdqa2hzdmpmaHZzYVc1cgogIFpYNDhrbmdraGdkZmtmamdic2RoYmpoYnNkaGJoeGJkZmxqZ2xkZmtqZ2tqaGpmZGdramJka2pmYmdrYmM3MFoKICBsZGZsa2pna2xqZGZoZmRrZ2poZXJramJnaGZia2dqYmtqbmtqeGNua2pmbmtnam5ma2pnbmtmam43SEJXVUM0CiAgdWZkZ2tqZGZpZ2hmdWRoZ2l1dWRoYm5ma25iZ3NibmRma2poc2tqa3NqbmdranNibmdramJrZ2pieGtqYmdFQgogIC9zZGZiaHNiamZoYmVod3did2poZmJqc2hiZGpoYnppdWhya2hiZXJoYnNqaGJkZmpoYmpoYmpoc2JqaGJzcysKICBsZGpmbGhranNka2ZqaHNrZGpma2pzZG5ma2puc2RramZuc2Rram5ranhjbmtqdm5ram5kc2Z3bGVra0FNRVlDCiAgSWVmb2h3a3VlaGZranNkaGZranNkaGtmamhzZGtqZmhrc2RqaGZranNkaGZranNkaGRramZoc2trZGpmaGpDOAogIHNkZnNkaHlnZmpoZ2RqaGZnanNoZGdmamhncXIKICAtLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCmxpbmtlcmRWZXJzaW9uOiBpbnN0YWxsLWNvbnRyb2wtcGxhbmUtdmVyc2lvbgpwb2xpY3lWYWxpZGF0b3I6CiAgY2FCdW5kbGU6IHBvbGljeSB2YWxpZGF0b3IgQ0EgYnVuZGxlCiAgZXh0ZXJuYWxTZWNyZXQ6IHRydWUKcHJvZmlsZVZhbGlkYXRvcjoKICBjYUJ1bmRsZTogcHJvZmlsZSB2YWxpZGF0b3IgQ0EgYnVuZGxlCiAgZXh0ZXJuYWxTZWNyZXQ6IHRydWUKcHJveHk6CiAgaW1hZ2U6CiAgICB2ZXJzaW9uOiBpbnN0YWxsLXByb3h5LXZlcnNpb24KcHJveHlJbml0OgogIGlnbm9yZUluYm91bmRQb3J0czogMjIsMzMwNi02MTkyCiAgaWdub3JlT3V0Ym91bmRQb3J0czogIjMyNzgiCnByb3h5SW5qZWN0b3I6CiAgY2FCdW5kbGU6IHByb3h5IGluamVjdG9yIENBIGJ1bmRsZQogIGV4dGVybmFsU2VjcmV0OiB0cnVlCg==", "line_num": 1, "path": "./tests/samples/LS0t_p", - "info": "./tests/samples/LS0t_p|RAW", + "info": "FILE|RAW", "value": "ZGVidWdDb250YWluZXI6CiAgaW1hZ2U6CiAgICB2ZXJzaW9uOiBpbnN0YWxsLWRlYnVnLXZlcnNpb24KaGVhcnRiZWF0U2NoZWR1bGU6IDEgMiAzIDQgNQppZGVudGl0eToKICBpc3N1ZXI6CiAgICB0bHM6CiAgICAgIGNydFBFTTogfAogICAgICAgIC0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQogICAgICAgIE1JSUJ3RENDQVdlZ0F3SUJBZ0lSQUpSSWdaOFJ0TzhFd2cxWGVwZjhUNDR3Q2dZSUtvWkl6ajBFQXdJd0tURW4KICAgICAgICBna2RqaHNsa2Roa2dkamhza2pkZmtkamhna2RqaGtkZmpibmtkZm52amtoYnZqaGRiZGpmaGJmamhiZGZNRGd5CiAgICAgICAgbGZrZGprc2xkamdrbGpkZmtnamhkZmtnamhzZGZrbGdqc2RrbGpmZ2hsa2Rmamhsa3NkZmpsa3Nkamt1YkdsdQogICAgICAgIGxzZGpoZnY1NDZtZmRza2dqaGRmamtoZ2tqZGhramhkZmtqZ2hrZGZqaGdramRmaGtqZGZoZ2tqZmRoZ2tqRnAKICAgICAgICBmY1JkZmdoZmRnbWRuZ2tqeGRuYnZqbmN2a2pua2pkbmdram5mZGtqYmt2YmpibnZja2puYmpuZGRmZ2ZkZ3QxCiAgICAgICAgMmJsa2puZ2JramhnbGpkZmxnaGtsamRmbmdqZGZuZ25sZGZrbWxrZGZqZ21sZGZrZ21sa2ZkbWdsa2RtTUFZQgogICAgICAgIEFmOENmZ2xibmpuZGJqZG5rZmpuZ2tkbmZnamtsbmRranZuYmlqZGlmamdpZXJqZ29pamRmbGtneGxrbmdrQ0MKICAgICAgICBIbWxkZmtmamdvaWRmamdnam5kamtmbmdranNkbnNram5qNXNiMk5oYkRBS0JnZ3Foa2pPUFFRREFnTkhBREJFCiAgICAgICAgQWlBdG9mZ2toOTk0NXU4OXV5OWU4dWdodWRmaGd1aGRmZmhpbGd1aGl1aGtkaGZna2pkaGZramhya2piazFwNQogICAgICAgIDVrZmRsc2lmaHU0aHRpdWg0aXR1aGtqaGt6az0KICAgICAgICAtLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCiAgICAgIGtleVBFTTogfAogICAgICAgIC0tLS0tQkVHSU4gRUMgUFJJVkFURSBLRVktLS0tLQogICAgICAgIE1IY0NBUUVFSUFBZThuZmJ6WnU5Yy9PQjJnZGZramdsaWRma2pibnhqa2hiZ2hiZmdoYmpoYmRqaGJzanhjazkKICAgICAgICBvZGlmanZpamRmdm9pamRmb2l2amRmb2lqZGpnbmZka2pnbmtqZGZna2pkZmtqZ2JrampoYmtnSmpYZ1p0TTcyCiAgICAgICAgZGZpb2hndXhoYmtqZ25rbGpkZm5rbGpkbmdram5rZ2puKz09CiAgICAgICAgLS0tLS1FTkQgRUMgUFJJVkFURSBLRVktLS0tLQppZGVudGl0eVRydXN0QW5jaG9yc1BFTTogfAogIC0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQogIE1JSUJ3VENDQVdhZ0F3SUJBZ0lRZURacDVsRGFJeWdRNVVmTUtaZGZuZ2puZGZrZ2puZmRramdua2RqbmtkamYKICBkZmtuZ2tqYmtqZGZic2tqYm5ma2puc2RrZ2psbnhrY2pibmt4am5ja2pnbmtqbmdreGpuZ2tqeGNua2dqbkk0CiAgTURkc2xrZmpvaWVyOGhzZGY4ZmdoZzc4NGg5OHQ5OGVydWhpdXNkaGtmZ2hoc2poYmdqa2hzdmpmaHZzYVc1cgogIFpYNDhrbmdraGdkZmtmamdic2RoYmpoYnNkaGJoeGJkZmxqZ2xkZmtqZ2tqaGpmZGdramJka2pmYmdrYmM3MFoKICBsZGZsa2pna2xqZGZoZmRrZ2poZXJramJnaGZia2dqYmtqbmtqeGNua2pmbmtnam5ma2pnbmtmam43SEJXVUM0CiAgdWZkZ2tqZGZpZ2hmdWRoZ2l1dWRoYm5ma25iZ3NibmRma2poc2tqa3NqbmdranNibmdramJrZ2pieGtqYmdFQgogIC9zZGZiaHNiamZoYmVod3did2poZmJqc2hiZGpoYnppdWhya2hiZXJoYnNqaGJkZmpoYmpoYmpoc2JqaGJzcysKICBsZGpmbGhranNka2ZqaHNrZGpma2pzZG5ma2puc2RramZuc2Rram5ranhjbmtqdm5ram5kc2Z3bGVra0FNRVlDCiAgSWVmb2h3a3VlaGZranNkaGZranNkaGtmamhzZGtqZmhrc2RqaGZranNkaGZranNkaGRramZoc2trZGpmaGpDOAogIHNkZnNkaHlnZmpoZ2RqaGZnanNoZGdmamhncXIKICAtLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCmxpbmtlcmRWZXJzaW9uOiBpbnN0YWxsLWNvbnRyb2wtcGxhbmUtdmVyc2lvbgpwb2xpY3lWYWxpZGF0b3I6CiAgY2FCdW5kbGU6IHBvbGljeSB2YWxpZGF0b3IgQ0EgYnVuZGxlCiAgZXh0ZXJuYWxTZWNyZXQ6IHRydWUKcHJvZmlsZVZhbGlkYXRvcjoKICBjYUJ1bmRsZTogcHJvZmlsZSB2YWxpZGF0b3IgQ0EgYnVuZGxlCiAgZXh0ZXJuYWxTZWNyZXQ6IHRydWUKcHJveHk6CiAgaW1hZ2U6CiAgICB2ZXJzaW9uOiBpbnN0YWxsLXByb3h5LXZlcnNpb24KcHJveHlJbml0OgogIGlnbm9yZUluYm91bmRQb3J0czogMjIsMzMwNi02MTkyCiAgaWdub3JlT3V0Ym91bmRQb3J0czogIjMyNzgiCnByb3h5SW5qZWN0b3I6CiAgY2FCdW5kbGU6IHByb3h5IGluamVjdG9yIENBIGJ1bmRsZQogIGV4dGVybmFsU2VjcmV0OiB0cnVlCg", "value_start": 0, "value_end": 3078, @@ -34,7 +34,7 @@ "line": " -----BEGIN EC PRIVATE KEY-----", "line_num": 22, "path": "./tests/samples/LS0t_p", - "info": "./tests/samples/LS0t_p|ENCODED|RAW", + "info": "FILE|BASE64|RAW", "value": "-----BEGIN EC PRIVATE KEY-----", "value_start": 8, "value_end": 38, @@ -51,7 +51,7 @@ "line": " MHcCAQEEIAAe8nfbzZu9c/OB2gdfkjglidfkjbnxjkhbghbfghbjhbdjhbsjxck9", "line_num": 23, "path": "./tests/samples/LS0t_p", - "info": "./tests/samples/LS0t_p|ENCODED|RAW", + "info": "FILE|BASE64|RAW", "value": "MHcCAQEEIAAe8nfbzZu9c/OB2gdfkjglidfkjbnxjkhbghbfghbjhbdjhbsjxck9", "value_start": 8, "value_end": 72, @@ -68,7 +68,7 @@ "line": " odifjvijdfvoijdfoivjdfoijdjgnfdkjgnkjdfgkjdfkjgbkjjhbkgJjXgZtM72", "line_num": 24, "path": "./tests/samples/LS0t_p", - "info": "./tests/samples/LS0t_p|ENCODED|RAW", + "info": "FILE|BASE64|RAW", "value": "odifjvijdfvoijdfoivjdfoijdjgnfdkjgnkjdfgkjdfkjgbkjjhbkgJjXgZtM72", "value_start": 8, "value_end": 72, @@ -85,7 +85,7 @@ "line": " dfiohguxhbkjgnkljdfnkljdngkjnkgjn+==", "line_num": 25, "path": "./tests/samples/LS0t_p", - "info": "./tests/samples/LS0t_p|ENCODED|RAW", + "info": "FILE|BASE64|RAW", "value": "dfiohguxhbkjgnkljdfnkljdngkjnkgjn+==", "value_start": 8, "value_end": 44, @@ -102,7 +102,7 @@ "line": " -----END EC PRIVATE KEY-----", "line_num": 26, "path": "./tests/samples/LS0t_p", - "info": "./tests/samples/LS0t_p|ENCODED|RAW", + "info": "FILE|BASE64|RAW", "value": " -----END EC PRIVATE KEY-----", "value_start": 0, "value_end": 36, @@ -127,7 +127,7 @@ "line": "gi_reo_gi_api = \"DvMB_glvwjlEQ_uqIyn8k\"; ", "line_num": 1, "path": "./tests/samples/api.toml", - "info": "./tests/samples/api.toml|STRUCT|STRUCT:0|KEYWORD:`gi_reo_gi_api = \"DvMB_glvwjlEQ_uqIyn8k\"; `", + "info": "FILE|STRUCT|STRUCT:0|KEYWORD:`gi_reo_gi_api = \"DvMB_glvwjlEQ_uqIyn8k\"; `", "value": "DvMB_glvwjlEQ_uqIyn8k", "value_start": 17, "value_end": 38, @@ -152,7 +152,7 @@ "line": "ATLASSIAN_v3 = \"23OY2aMY4U3ubsQwBPvdyfYr\"", "line_num": 1, "path": "./tests/samples/atlassian_old_pat", - "info": "./tests/samples/atlassian_old_pat|RAW", + "info": "FILE|RAW", "value": "23OY2aMY4U3ubsQwBPvdyfYr", "value_start": 16, "value_end": 40, @@ -177,7 +177,7 @@ "line": "ATLASSIAN = \"ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE=00203E68\"", "line_num": 1, "path": "./tests/samples/atlassian_pat", - "info": "./tests/samples/atlassian_pat|RAW", + "info": "FILE|RAW", "value": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE=00203E68", "value_start": 13, "value_end": 205, @@ -202,7 +202,7 @@ "line": "escaped_backslash = ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE\\=00203E68", "line_num": 2, "path": "./tests/samples/atlassian_pat", - "info": "./tests/samples/atlassian_pat|RAW", + "info": "FILE|RAW", "value": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE\\=00203E68", "value_start": 20, "value_end": 213, @@ -227,7 +227,7 @@ "line": "url_escaped_capital = ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE%3D00203E68", "line_num": 3, "path": "./tests/samples/atlassian_pat", - "info": "./tests/samples/atlassian_pat|RAW", + "info": "FILE|RAW", "value": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE%3D00203E68", "value_start": 22, "value_end": 216, @@ -252,7 +252,7 @@ "line": "url_escaped_lowercase = ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE%3d00203E68", "line_num": 4, "path": "./tests/samples/atlassian_pat", - "info": "./tests/samples/atlassian_pat|RAW", + "info": "FILE|RAW", "value": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE%3d00203E68", "value_start": 24, "value_end": 218, @@ -277,7 +277,7 @@ "line": "\"kerberos_authentication\": \"YI7IB6wYJgaMgHAgIKoZI2AQBuIh2cSA0IB1qA\"", "line_num": 1, "path": "./tests/samples/auth.hs", - "info": "./tests/samples/auth.hs|RAW", + "info": "FILE|RAW", "value": "YI7IB6wYJgaMgHAgIKoZI2AQBuIh2cSA0IB1qA", "value_start": 28, "value_end": 66, @@ -302,7 +302,7 @@ "line": "\"authorization\": \"aMgHAgIKhwLgGq02iQoZI1AQBuOh4cSAQ8B1qA\"", "line_num": 2, "path": "./tests/samples/auth.hs", - "info": "./tests/samples/auth.hs|RAW", + "info": "FILE|RAW", "value": "aMgHAgIKhwLgGq02iQoZI1AQBuOh4cSAQ8B1qA", "value_start": 18, "value_end": 56, @@ -327,7 +327,7 @@ "line": "headers = {authorization: /oauth_signature=\"JgEWaL6V6eM%2FFb9wuXG4I3IB6wY%3D\"/, content_type: 'application/json; charset=utf-8'}", "line_num": 3, "path": "./tests/samples/auth.hs", - "info": "./tests/samples/auth.hs|RAW", + "info": "FILE|RAW", "value": "JgEWaL6V6eM%2FFb9wuXG4I3IB6wY%3D", "value_start": 44, "value_end": 76, @@ -352,7 +352,7 @@ "line": "curl -H \"Authorization: Basic WxhZGRpVuc2VzYW1lbjYp12vcG\" http://localhost:8080/.", "line_num": 8, "path": "./tests/samples/auth_n.template", - "info": "./tests/samples/auth_n.template|RAW", + "info": "FILE|RAW", "value": "WxhZGRpVuc2VzYW1lbjYp12vcG", "value_start": 30, "value_end": 56, @@ -377,7 +377,7 @@ "line": "curl -H \"Authorization: Bearer eyJGRpVu1c2VzY2-823r_db32hbf4W1lbj\" http://localhost:8080/.", "line_num": 9, "path": "./tests/samples/auth_n.template", - "info": "./tests/samples/auth_n.template|RAW", + "info": "FILE|RAW", "value": "eyJGRpVu1c2VzY2-823r_db32hbf4W1lbj", "value_start": 31, "value_end": 65, @@ -402,7 +402,7 @@ "line": "The items are AKIAGIREOGIAWSKEY123,AKIAGIREOGIAWSKEY45X", "line_num": 1, "path": "./tests/samples/aws_client_id", - "info": "./tests/samples/aws_client_id|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY123", "value_start": 14, "value_end": 34, @@ -427,7 +427,7 @@ "line": "The items are AKIAGIREOGIAWSKEY123,AKIAGIREOGIAWSKEY45X", "line_num": 1, "path": "./tests/samples/aws_client_id", - "info": "./tests/samples/aws_client_id|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY45X", "value_start": 35, "value_end": 55, @@ -452,7 +452,7 @@ "line": "https://deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com/25a36d10001a8ef8e2f9cfa5-artsy-eigen-111-0?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20180516T221919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=96eabbec1f964abba3d214c0b7e313db0759a18d075cff94cc92d2096f4d1e2", "line_num": 1, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|STRUCT|STRING:output_url|RAW", + "info": "FILE|STRUCT|STRING:output_url|RAW", "value": "96eabbec1f964abba3d214c0b7e313db0759a18d075cff94cc92d2096f4d1e2", "value_start": 303, "value_end": 366, @@ -469,7 +469,7 @@ "line": "https://deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com/25a36d10001a8ef8e2f9cfa5-artsy-eigen-111-0?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20180516T221919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=96eabbec1f964abba3d214c0b7e313db0759a18d075cff94cc92d2096f4d1e2", "line_num": 1, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|STRUCT|STRING:output_url|RAW", + "info": "FILE|STRUCT|STRING:output_url|RAW", "value": "AKIAUJFP5MF6VFLQMG6K", "value_start": 223, "value_end": 243, @@ -494,7 +494,7 @@ "line": "AKIAGIREOGIAWSKEY123", "line_num": 1, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|STRUCT|STRING:AwsAccessKey|RAW", + "info": "FILE|STRUCT|STRING:AwsAccessKey|RAW", "value": "AKIAGIREOGIAWSKEY123", "value_start": 0, "value_end": 20, @@ -519,7 +519,7 @@ "line": "AKIAGIREOGIAWSKEY555", "line_num": 1, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|STRUCT|STRING:AwsAccessKey2|RAW", + "info": "FILE|STRUCT|STRING:AwsAccessKey2|RAW", "value": "AKIAGIREOGIAWSKEY555", "value_start": 0, "value_end": 20, @@ -544,7 +544,7 @@ "line": "https://deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com/25a36d10001a8ef8e2f9cfa5-artsy-eigen-111-0?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20180516T221919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=96eabbec1f964abba3d214c0b7e313db0759a18d075cff94cc92d2096f4d1e2", "line_num": 1, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|STRUCT|STRING:output_url|RAW", + "info": "FILE|STRUCT|STRING:output_url|RAW", "value": "AKIAUJFP5MF6VFLQMG6K", "value_start": 223, "value_end": 243, @@ -569,7 +569,7 @@ "line": "https://deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com/25a36d10001a8ef8e2f9cfa5-artsy-eigen-111-0?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20180516T221919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=96eabbec1f964abba3d214c0b7e313db0759a18d075cff94cc92d2096f4d1e2", "line_num": 1, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|STRUCT|STRING:output_url|RAW", + "info": "FILE|STRUCT|STRING:output_url|RAW", "value": "AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request", "value_start": 223, "value_end": 286, @@ -594,7 +594,7 @@ "line": "https://iufurvyh.google.com/v1/projects/29182364324/clients?key=HrPioECfMsa602sfDyhzzIWok&alt=json

", "line_num": 1, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|STRUCT|STRING:unicode_url|RAW", + "info": "FILE|STRUCT|STRING:unicode_url|RAW", "value": "HrPioECfMsa602sfDyhzzIWok", "value_start": 64, "value_end": 89, @@ -619,7 +619,7 @@ "line": "https://deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com/25a36d10001a8ef8e2f9cfa5-artsy-eigen-111-0?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20180516T221919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=96eabbec1f964abba3d214c0b7e313db0759a18d075cff94cc92d2096f4d1e2", "line_num": 1, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|STRUCT|STRING:output_url|RAW", + "info": "FILE|STRUCT|STRING:output_url|RAW", "value": "deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com", "value_start": 8, "value_end": 55, @@ -644,7 +644,7 @@ "line": " \"AwsAccessKey\": \"AKIAGIREOGIAWSKEY123\",", "line_num": 2, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY123", "value_start": 21, "value_end": 41, @@ -661,7 +661,7 @@ "line": " \"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -686,7 +686,7 @@ "line": " \"AwsAccessKey2\": \"AKIAGIREOGIAWSKEY555\",", "line_num": 3, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY555", "value_start": 22, "value_end": 42, @@ -703,7 +703,7 @@ "line": " \"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -728,7 +728,7 @@ "line": " \"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -745,7 +745,7 @@ "line": " \"output_url\": \"https://deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com/25a36d10001a8ef8e2f9cfa5-artsy-eigen-111-0?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20180516T221919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=96eabbec1f964abba3d214c0b7e313db0759a18d075cff94cc92d2096f4d1e2\",", "line_num": 5, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAUJFP5MF6VFLQMG6K", "value_start": 242, "value_end": 262, @@ -770,7 +770,7 @@ "line": " \"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -795,7 +795,7 @@ "line": " \"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -820,7 +820,7 @@ "line": " \"AccessKeyId\" : \"AKIA0ON7V2DD57PL3JXM\",", "line_num": 7, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "AKIA0ON7V2DD57PL3JXM", "value_start": 21, "value_end": 41, @@ -845,7 +845,7 @@ "line": " \"AccessKeyId\" : \"AKIA0ON7V2DD57PL3JXM\",", "line_num": 7, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "AKIA0ON7V2DD57PL3JXM", "value_start": 21, "value_end": 41, @@ -862,7 +862,7 @@ "line": " \"SecretAccessKey\" : \"RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1\",", "line_num": 8, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1", "value_start": 25, "value_end": 60, @@ -887,7 +887,7 @@ "line": " \"AccessKeyId\" : \"AKIA0ON7V2DD57PL3JXM\",", "line_num": 7, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "AKIA0ON7V2DD57PL3JXM", "value_start": 21, "value_end": 41, @@ -912,7 +912,7 @@ "line": " \"SecretAccessKey\" : \"RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1\",", "line_num": 8, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1", "value_start": 25, "value_end": 60, @@ -937,7 +937,7 @@ "line": " \"SecretAccessKey\" : \"RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1\",", "line_num": 8, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1", "value_start": 25, "value_end": 60, @@ -962,7 +962,7 @@ "line": " \"Token\" : \"J38YmIgn7dH6cw4W1yqoRgjsFsWvysFjfVcpCh7O9Yyv9/qNvNI\",", "line_num": 9, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "J38YmIgn7dH6cw4W1yqoRgjsFsWvysFjfVcpCh7O9Yyv9/qNvNI", "value_start": 15, "value_end": 66, @@ -987,7 +987,7 @@ "line": "AWS_MWS_KEY = \"amzn.mws.c1dg4haz-6xd6-4gqi-vna2-ed3whf71x9k6\"", "line_num": 1, "path": "./tests/samples/aws_mws_key", - "info": "./tests/samples/aws_mws_key|RAW", + "info": "FILE|RAW", "value": "amzn.mws.c1dg4haz-6xd6-4gqi-vna2-ed3whf71x9k6", "value_start": 15, "value_end": 60, @@ -1012,7 +1012,7 @@ "line": "AWS_MWS_KEY = \"amzn.mws.c1dg4haz-6xd6-4gqi-vna2-ed3whf71x9k6\"", "line_num": 1, "path": "./tests/samples/aws_mws_key", - "info": "./tests/samples/aws_mws_key|RAW", + "info": "FILE|RAW", "value": "amzn.mws.c1dg4haz-6xd6-4gqi-vna2-ed3whf71x9k6", "value_start": 15, "value_end": 60, @@ -1037,7 +1037,7 @@ "line": "https://circle-production-action-output.s3.amazonaws.com/283746ds4?X-Amz-Algorithm=AWS4-HMAC-SHA256", "line_num": 1, "path": "./tests/samples/aws_s3_bucket", - "info": "./tests/samples/aws_s3_bucket|STRUCT|STRING:url|RAW", + "info": "FILE|STRUCT|STRING:url|RAW", "value": "circle-production-action-output.s3.amazonaws.com", "value_start": 8, "value_end": 56, @@ -1062,7 +1062,7 @@ "line": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiJlZjFkYTlkNC1mZjc3LTRjM2UtYTAwNS04NDBjM2Y4MzA3NDUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC9mYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTUyMjIyOS8iLCJpYXQiOjE1MzcyMzMxMDYsIm5iZiI6MTUzNzIzMzEwNiwiZXhwIjoxNTM3MjM3MDA2LCJhY3IiOiIxIiwiYWlvIjoiQVhRQWkvOElBQUFBRm0rRS9RVEcrZ0ZuVnhMaldkdzhLKzYxQUdyU091TU1GNmViYU1qN1hPM0libUQzZkdtck95RCtOdlp5R24yVmFUL2tES1h3NE1JaHJnR1ZxNkJuOHdMWG9UMUxrSVorRnpRVmtKUFBMUU9WNEtjWHFTbENWUERTL0RpQ0RnRTIyMlRJbU12V05hRU1hVU9Uc0lHdlRRPT0iLCJhbXIiOlsid2lhIl0sImFwcGlkIjoiNzVkYmU3N2YtMTBhMy00ZTU5LTg1ZmQtOGMxMjc1NDRmMTdjIiwiYXBwaWRhY3IiOiIwIiwiZW1haWwiOiJBYmVMaUBtaWNyb3NvZnQuY29tIiwiZmFtaWx5X25hbWUiOiJMaW5jb2xuIiwiZ2l2ZW5fbmFtZSI6IkFiZSAoTVNGVCkiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMjIyNDcvIiwiaXBhZGRyIjoiMjIyLjIyMi4yMjIuMjIiLCJuYW1lIjoiYWJlbGkiLCJvaWQiOiIwMjIyM2I2Yi1hYTFkLTQyZDQtOWVjMC0xYjJiYjkxOTQ0MzgiLCJyaCI6IkkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJsM19yb0lTUVUyMjJiVUxTOXlpMmswWHBxcE9pTXo1SDNaQUNvMUdlWEEiLCJ0aWQiOiJmYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTU2ZmQ0MjkiLCJ1bmlxdWVfbmFtZSI6ImFiZWxpQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJGVnNHeFlYSTMwLVR1aWt1dVVvRkFBIiwidmVyIjoiMS4wIn0.D3H6pMUtQnoJAGq6AHd", "line_num": 1, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiJlZjFkYTlkNC1mZjc3LTRjM2UtYTAwNS04NDBjM2Y4MzA3NDUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC9mYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTUyMjIyOS8iLCJpYXQiOjE1MzcyMzMxMDYsIm5iZiI6MTUzNzIzMzEwNiwiZXhwIjoxNTM3MjM3MDA2LCJhY3IiOiIxIiwiYWlvIjoiQVhRQWkvOElBQUFBRm0rRS9RVEcrZ0ZuVnhMaldkdzhLKzYxQUdyU091TU1GNmViYU1qN1hPM0libUQzZkdtck95RCtOdlp5R24yVmFUL2tES1h3NE1JaHJnR1ZxNkJuOHdMWG9UMUxrSVorRnpRVmtKUFBMUU9WNEtjWHFTbENWUERTL0RpQ0RnRTIyMlRJbU12V05hRU1hVU9Uc0lHdlRRPT0iLCJhbXIiOlsid2lhIl0sImFwcGlkIjoiNzVkYmU3N2YtMTBhMy00ZTU5LTg1ZmQtOGMxMjc1NDRmMTdjIiwiYXBwaWRhY3IiOiIwIiwiZW1haWwiOiJBYmVMaUBtaWNyb3NvZnQuY29tIiwiZmFtaWx5X25hbWUiOiJMaW5jb2xuIiwiZ2l2ZW5fbmFtZSI6IkFiZSAoTVNGVCkiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMjIyNDcvIiwiaXBhZGRyIjoiMjIyLjIyMi4yMjIuMjIiLCJuYW1lIjoiYWJlbGkiLCJvaWQiOiIwMjIyM2I2Yi1hYTFkLTQyZDQtOWVjMC0xYjJiYjkxOTQ0MzgiLCJyaCI6IkkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJsM19yb0lTUVUyMjJiVUxTOXlpMmswWHBxcE9pTXo1SDNaQUNvMUdlWEEiLCJ0aWQiOiJmYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTU2ZmQ0MjkiLCJ1bmlxdWVfbmFtZSI6ImFiZWxpQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJGVnNHeFlYSTMwLVR1aWt1dVVvRkFBIiwidmVyIjoiMS4wIn0.D3H6pMUtQnoJAGq6AHd", "value_start": 0, "value_end": 1316, @@ -1087,7 +1087,7 @@ "line": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiJlZjFkYTlkNC1mZjc3LTRjM2UtYTAwNS04NDBjM2Y4MzA3NDUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC9mYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTUyMjIyOS8iLCJpYXQiOjE1MzcyMzMxMDYsIm5iZiI6MTUzNzIzMzEwNiwiZXhwIjoxNTM3MjM3MDA2LCJhY3IiOiIxIiwiYWlvIjoiQVhRQWkvOElBQUFBRm0rRS9RVEcrZ0ZuVnhMaldkdzhLKzYxQUdyU091TU1GNmViYU1qN1hPM0libUQzZkdtck95RCtOdlp5R24yVmFUL2tES1h3NE1JaHJnR1ZxNkJuOHdMWG9UMUxrSVorRnpRVmtKUFBMUU9WNEtjWHFTbENWUERTL0RpQ0RnRTIyMlRJbU12V05hRU1hVU9Uc0lHdlRRPT0iLCJhbXIiOlsid2lhIl0sImFwcGlkIjoiNzVkYmU3N2YtMTBhMy00ZTU5LTg1ZmQtOGMxMjc1NDRmMTdjIiwiYXBwaWRhY3IiOiIwIiwiZW1haWwiOiJBYmVMaUBtaWNyb3NvZnQuY29tIiwiZmFtaWx5X25hbWUiOiJMaW5jb2xuIiwiZ2l2ZW5fbmFtZSI6IkFiZSAoTVNGVCkiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMjIyNDcvIiwiaXBhZGRyIjoiMjIyLjIyMi4yMjIuMjIiLCJuYW1lIjoiYWJlbGkiLCJvaWQiOiIwMjIyM2I2Yi1hYTFkLTQyZDQtOWVjMC0xYjJiYjkxOTQ0MzgiLCJyaCI6IkkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJsM19yb0lTUVUyMjJiVUxTOXlpMmswWHBxcE9pTXo1SDNaQUNvMUdlWEEiLCJ0aWQiOiJmYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTU2ZmQ0MjkiLCJ1bmlxdWVfbmFtZSI6ImFiZWxpQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJGVnNHeFlYSTMwLVR1aWt1dVVvRkFBIiwidmVyIjoiMS4wIn0.D3H6pMUtQnoJAGq6AHd", "line_num": 1, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiJlZjFkYTlkNC1mZjc3LTRjM2UtYTAwNS04NDBjM2Y4MzA3NDUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC9mYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTUyMjIyOS8iLCJpYXQiOjE1MzcyMzMxMDYsIm5iZiI6MTUzNzIzMzEwNiwiZXhwIjoxNTM3MjM3MDA2LCJhY3IiOiIxIiwiYWlvIjoiQVhRQWkvOElBQUFBRm0rRS9RVEcrZ0ZuVnhMaldkdzhLKzYxQUdyU091TU1GNmViYU1qN1hPM0libUQzZkdtck95RCtOdlp5R24yVmFUL2tES1h3NE1JaHJnR1ZxNkJuOHdMWG9UMUxrSVorRnpRVmtKUFBMUU9WNEtjWHFTbENWUERTL0RpQ0RnRTIyMlRJbU12V05hRU1hVU9Uc0lHdlRRPT0iLCJhbXIiOlsid2lhIl0sImFwcGlkIjoiNzVkYmU3N2YtMTBhMy00ZTU5LTg1ZmQtOGMxMjc1NDRmMTdjIiwiYXBwaWRhY3IiOiIwIiwiZW1haWwiOiJBYmVMaUBtaWNyb3NvZnQuY29tIiwiZmFtaWx5X25hbWUiOiJMaW5jb2xuIiwiZ2l2ZW5fbmFtZSI6IkFiZSAoTVNGVCkiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMjIyNDcvIiwiaXBhZGRyIjoiMjIyLjIyMi4yMjIuMjIiLCJuYW1lIjoiYWJlbGkiLCJvaWQiOiIwMjIyM2I2Yi1hYTFkLTQyZDQtOWVjMC0xYjJiYjkxOTQ0MzgiLCJyaCI6IkkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJsM19yb0lTUVUyMjJiVUxTOXlpMmswWHBxcE9pTXo1SDNaQUNvMUdlWEEiLCJ0aWQiOiJmYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTU2ZmQ0MjkiLCJ1bmlxdWVfbmFtZSI6ImFiZWxpQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJGVnNHeFlYSTMwLVR1aWt1dVVvRkFBIiwidmVyIjoiMS4wIn0.D3H6pMUtQnoJAGq6AHd", "value_start": 0, "value_end": 1316, @@ -1112,7 +1112,7 @@ "line": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiI2ZTc0MTcyYi1iZTU2LTQ4NDMtOWZmNC1lNjZhMzliYjEyZTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3YyLjAiLCJpYXQiOjE1MzcyMzEwNDgsIm5iZiI6MTUzNzIzMTA0OCwiZXhwIjoxNTM3MjM0OTQ4LCJhaW8iOiJBWFFBaS84SUFBQUF0QWFaTG8zQ2hNaWY2S09udHRSQjdlQnE0L0RjY1F6amNKR3hQWXkvQzNqRGFOR3hYZDZ3TklJVkdSZ2hOUm53SjFsT2NBbk5aY2p2a295ckZ4Q3R0djMzMTQwUmlvT0ZKNGJDQ0dWdW9DYWcxdU9UVDIyMjIyZ0h3TFBZUS91Zjc5UVgrMEtJaWpkcm1wNjlSY3R6bVE9PSIsImF6cCI6IjZlNzQxNzJiLWJlNTYtNDg0My05ZmY0LWU2NmEzOWJiMTJlMyIsImF6cGFjciI6IjAiLCJuYW1lIjoiQWJlIExpbmNvbG4iLCJvaWQiOiI2OTAyMjJiZS1mZjFhLTRkNTYtYWJkMS03ZTRmN2QzOGU0NzQiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJhYmVsaUBtaWNyb3NvZnQuY29tIiwicmgiOiJJIiwic2NwIjoiYWNjZXNzX2FzX3VzZXIiLCJzdWIiOiJIS1pwZmFIeVdhZGVPb3VZbGl0anJJLUtmZlRtMjIyWDVyclYzeERxZktRIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidXRpIjoiZnFpQnFYTFBqMGVRYTgyUy1JWUZBQSIsInZlciI6IjIuMCJ9.pj4N-w_3Us9DrBLfpCt", "line_num": 2, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiI2ZTc0MTcyYi1iZTU2LTQ4NDMtOWZmNC1lNjZhMzliYjEyZTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3YyLjAiLCJpYXQiOjE1MzcyMzEwNDgsIm5iZiI6MTUzNzIzMTA0OCwiZXhwIjoxNTM3MjM0OTQ4LCJhaW8iOiJBWFFBaS84SUFBQUF0QWFaTG8zQ2hNaWY2S09udHRSQjdlQnE0L0RjY1F6amNKR3hQWXkvQzNqRGFOR3hYZDZ3TklJVkdSZ2hOUm53SjFsT2NBbk5aY2p2a295ckZ4Q3R0djMzMTQwUmlvT0ZKNGJDQ0dWdW9DYWcxdU9UVDIyMjIyZ0h3TFBZUS91Zjc5UVgrMEtJaWpkcm1wNjlSY3R6bVE9PSIsImF6cCI6IjZlNzQxNzJiLWJlNTYtNDg0My05ZmY0LWU2NmEzOWJiMTJlMyIsImF6cGFjciI6IjAiLCJuYW1lIjoiQWJlIExpbmNvbG4iLCJvaWQiOiI2OTAyMjJiZS1mZjFhLTRkNTYtYWJkMS03ZTRmN2QzOGU0NzQiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJhYmVsaUBtaWNyb3NvZnQuY29tIiwicmgiOiJJIiwic2NwIjoiYWNjZXNzX2FzX3VzZXIiLCJzdWIiOiJIS1pwZmFIeVdhZGVPb3VZbGl0anJJLUtmZlRtMjIyWDVyclYzeERxZktRIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidXRpIjoiZnFpQnFYTFBqMGVRYTgyUy1JWUZBQSIsInZlciI6IjIuMCJ9.pj4N-w_3Us9DrBLfpCt", "value_start": 0, "value_end": 1029, @@ -1137,7 +1137,7 @@ "line": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiI2ZTc0MTcyYi1iZTU2LTQ4NDMtOWZmNC1lNjZhMzliYjEyZTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3YyLjAiLCJpYXQiOjE1MzcyMzEwNDgsIm5iZiI6MTUzNzIzMTA0OCwiZXhwIjoxNTM3MjM0OTQ4LCJhaW8iOiJBWFFBaS84SUFBQUF0QWFaTG8zQ2hNaWY2S09udHRSQjdlQnE0L0RjY1F6amNKR3hQWXkvQzNqRGFOR3hYZDZ3TklJVkdSZ2hOUm53SjFsT2NBbk5aY2p2a295ckZ4Q3R0djMzMTQwUmlvT0ZKNGJDQ0dWdW9DYWcxdU9UVDIyMjIyZ0h3TFBZUS91Zjc5UVgrMEtJaWpkcm1wNjlSY3R6bVE9PSIsImF6cCI6IjZlNzQxNzJiLWJlNTYtNDg0My05ZmY0LWU2NmEzOWJiMTJlMyIsImF6cGFjciI6IjAiLCJuYW1lIjoiQWJlIExpbmNvbG4iLCJvaWQiOiI2OTAyMjJiZS1mZjFhLTRkNTYtYWJkMS03ZTRmN2QzOGU0NzQiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJhYmVsaUBtaWNyb3NvZnQuY29tIiwicmgiOiJJIiwic2NwIjoiYWNjZXNzX2FzX3VzZXIiLCJzdWIiOiJIS1pwZmFIeVdhZGVPb3VZbGl0anJJLUtmZlRtMjIyWDVyclYzeERxZktRIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidXRpIjoiZnFpQnFYTFBqMGVRYTgyUy1JWUZBQSIsInZlciI6IjIuMCJ9.pj4N-w_3Us9DrBLfpCt", "line_num": 2, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiI2ZTc0MTcyYi1iZTU2LTQ4NDMtOWZmNC1lNjZhMzliYjEyZTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3YyLjAiLCJpYXQiOjE1MzcyMzEwNDgsIm5iZiI6MTUzNzIzMTA0OCwiZXhwIjoxNTM3MjM0OTQ4LCJhaW8iOiJBWFFBaS84SUFBQUF0QWFaTG8zQ2hNaWY2S09udHRSQjdlQnE0L0RjY1F6amNKR3hQWXkvQzNqRGFOR3hYZDZ3TklJVkdSZ2hOUm53SjFsT2NBbk5aY2p2a295ckZ4Q3R0djMzMTQwUmlvT0ZKNGJDQ0dWdW9DYWcxdU9UVDIyMjIyZ0h3TFBZUS91Zjc5UVgrMEtJaWpkcm1wNjlSY3R6bVE9PSIsImF6cCI6IjZlNzQxNzJiLWJlNTYtNDg0My05ZmY0LWU2NmEzOWJiMTJlMyIsImF6cGFjciI6IjAiLCJuYW1lIjoiQWJlIExpbmNvbG4iLCJvaWQiOiI2OTAyMjJiZS1mZjFhLTRkNTYtYWJkMS03ZTRmN2QzOGU0NzQiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJhYmVsaUBtaWNyb3NvZnQuY29tIiwicmgiOiJJIiwic2NwIjoiYWNjZXNzX2FzX3VzZXIiLCJzdWIiOiJIS1pwZmFIeVdhZGVPb3VZbGl0anJJLUtmZlRtMjIyWDVyclYzeERxZktRIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidXRpIjoiZnFpQnFYTFBqMGVRYTgyUy1JWUZBQSIsInZlciI6IjIuMCJ9.pj4N-w_3Us9DrBLfpCt", "value_start": 0, "value_end": 1029, @@ -1162,7 +1162,7 @@ "line": "t 189shdhgr893rgdg74sdsdfkksdhtg87dyfwegjddshjhsgjsgdhJQQJ99ALACAAAAAAAAAAAAASAZDO1e4drs==", "line_num": 5, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "189shdhgr893rgdg74sdsdfkksdhtg87dyfwegjddshjhsgjsgdhJQQJ99ALACAAAAAAAAAAAAASAZDO1e4drs==", "value_start": 2, "value_end": 90, @@ -1187,7 +1187,7 @@ "line": "qpF8Q~PCM5MhMoyTFc5TYEomnzRUKim9UJhe8a2P", "line_num": 1, "path": "./tests/samples/azure_secret_value", - "info": "./tests/samples/azure_secret_value|STRUCT|STRUCT:0|STRING:client_srt|RAW", + "info": "FILE|STRUCT|STRUCT:0|STRING:client_srt|RAW", "value": "qpF8Q~PCM5MhMoyTFc5TYEomnzRUKim9UJhe8a2P", "value_start": 0, "value_end": 40, @@ -1212,7 +1212,7 @@ "line": "secret = \"we5345d0f3da48544z1t1e275y05i161x995q485\n\"; ", "line_num": 1, "path": "./tests/samples/binary.yaml", - "info": "./tests/samples/binary.yaml|STRUCT|STRUCT:body|KEYWORD:`secret = \"we5345d0f3da48544z1t1e275y05i161x995q485\n\"; `", + "info": "FILE|STRUCT|STRUCT:body|KEYWORD:`secret = \"we5345d0f3da48544z1t1e275y05i161x995q485\n\"; `", "value": "we5345d0f3da48544z1t1e275y05i161x995q485\n", "value_start": 10, "value_end": 51, @@ -1237,7 +1237,7 @@ "line": "\"bitbucket\" : \"BBDC-MzQ2Njc4NjkyMDgwOsEidtxMt9WDExIOYPEWBFXH093l\"", "line_num": 1, "path": "./tests/samples/bitbuckert_http_access_token", - "info": "./tests/samples/bitbuckert_http_access_token|RAW", + "info": "FILE|RAW", "value": "BBDC-MzQ2Njc4NjkyMDgwOsEidtxMt9WDExIOYPEWBFXH093l", "value_start": 15, "value_end": 64, @@ -1262,7 +1262,7 @@ "line": "app_sample:ATBBcCe6fczW96Vzwgvb4r8F2gZS54D591C4", "line_num": 1, "path": "./tests/samples/bitbucket_app_password", - "info": "./tests/samples/bitbucket_app_password|RAW", + "info": "FILE|RAW", "value": "ATBBcCe6fczW96Vzwgvb4r8F2gZS54D591C4", "value_start": 11, "value_end": 47, @@ -1287,7 +1287,7 @@ "line": "0DIwN2M1NTeGd6S6jU", "line_num": 1, "path": "./tests/samples/bitbucket_client_id", - "info": "./tests/samples/bitbucket_client_id|STRUCT|STRING:bitbucket_client_2|RAW", + "info": "FILE|STRUCT|STRING:bitbucket_client_2|RAW", "value": "0DIwN2M1NTeGd6S6jU", "value_start": 0, "value_end": 18, @@ -1312,7 +1312,7 @@ "line": "0DIwN2M1NefTgs3Ghr54TMxNzOhFZPhB", "line_num": 1, "path": "./tests/samples/bitbucket_client_id", - "info": "./tests/samples/bitbucket_client_id|STRUCT|STRING:bitbucket_client|RAW", + "info": "FILE|STRUCT|STRING:bitbucket_client|RAW", "value": "0DIwN2M1NefTgs3Ghr54TMxNzOhFZPhB", "value_start": 0, "value_end": 32, @@ -1337,7 +1337,7 @@ "line": "0DIwN2M1NefTgs3Ghr54TMxNzOhFZPhB", "line_num": 1, "path": "./tests/samples/bitbucket_client_id", - "info": "./tests/samples/bitbucket_client_id|STRUCT|STRING:bitbucket_client|RAW", + "info": "FILE|STRUCT|STRING:bitbucket_client|RAW", "value": "0DIwN2M1NefTgs3Ghr54TMxNzOhFZPhB", "value_start": 0, "value_end": 32, @@ -1362,7 +1362,7 @@ "line": "bitbucket_client_data_v2 : \"0sTMxNzkI3fDM1NwOhFZ_PhBuW-3keLB\"", "line_num": 2, "path": "./tests/samples/bitbucket_client_secret", - "info": "./tests/samples/bitbucket_client_secret|RAW", + "info": "FILE|RAW", "value": "0sTMxNzkI3fDM1NwOhFZ_PhBuW-3keLB", "value_start": 28, "value_end": 60, @@ -1387,7 +1387,7 @@ "line": "\"Bitbucket Repository Access Token\" : \"ATCTT3xFfGN0zXtbKHz2POF86xa-2aBiYC4o_T3-myk01bmFVluUIFtGm_VFQwLizp4o1FKw-AMZhtdA0NzizshnA8WzRdfgv6GeTyowCD101oqKbJ4nx9DFsar5YyUNkwO9maR9-00tQvfciyfOHtPKG6K1d76Ki3iFo7roGeyJu4j1jM3GwQ4=EDDE81AD\"", "line_num": 1, "path": "./tests/samples/bitbucket_repository_access_token", - "info": "./tests/samples/bitbucket_repository_access_token|RAW", + "info": "FILE|RAW", "value": "ATCTT3xFfGN0zXtbKHz2POF86xa-2aBiYC4o_T3-myk01bmFVluUIFtGm_VFQwLizp4o1FKw-AMZhtdA0NzizshnA8WzRdfgv6GeTyowCD101oqKbJ4nx9DFsar5YyUNkwO9maR9-00tQvfciyfOHtPKG6K1d76Ki3iFo7roGeyJu4j1jM3GwQ4=EDDE81AD", "value_start": 39, "value_end": 231, @@ -1412,7 +1412,7 @@ "line": "\"Bitbucket Repository Access Token\" : \"ATCTT3xFfGN0zXtbKHz2POF86xa-2aBiYC4o_T3-myk01bmFVluUIFtGm_VFQwLizp4o1FKw-AMZhtdA0NzizshnA8WzRdfgv6GeTyowCD101oqKbJ4nx9DFsar5YyUNkwO9maR9-00tQvfciyfOHtPKG6K1d76Ki3iFo7roGeyJu4j1jM3GwQ4=EDDE81AD\"", "line_num": 1, "path": "./tests/samples/bitbucket_repository_access_token", - "info": "./tests/samples/bitbucket_repository_access_token|RAW", + "info": "FILE|RAW", "value": "ATCTT3xFfGN0zXtbKHz2POF86xa-2aBiYC4o_T3-myk01bmFVluUIFtGm_VFQwLizp4o1FKw-AMZhtdA0NzizshnA8WzRdfgv6GeTyowCD101oqKbJ4nx9DFsar5YyUNkwO9maR9-00tQvfciyfOHtPKG6K1d76Ki3iFo7roGeyJu4j1jM3GwQ4=EDDE81AD", "value_start": 39, "value_end": 231, @@ -1437,7 +1437,7 @@ "line": "const certificatePEM := 'LS0tLS1CRUdJTiBDRVJUSUZ0VLQW9JQkFRRFkwYzFUS0I1b1pQd1EKN3QxQ3dNSXJ2cUI2R0lVM3RQeTZSaGNrWlhUa09COFllQldKN1VLZkN6OEhHZJQ0FURS0tLS0tCk1JSUMrekND'", "line_num": 1, "path": "./tests/samples/certificate.hs", - "info": "./tests/samples/certificate.hs|RAW", + "info": "FILE|RAW", "value": "LS0tLS1CRUdJTiBDRVJUSUZ0VLQW9JQkFRRFkwYzFUS0I1b1pQd1EKN3QxQ3dNSXJ2cUI2R0lVM3RQeTZSaGNrWlhUa09COFllQldKN1VLZkN6OEhHZJQ0FURS0tLS0tCk1JSUMrekND", "value_start": 25, "value_end": 165, @@ -1462,7 +1462,7 @@ "line": "dummy line", "line_num": 0, "path": "./tests/samples/changeit_crt.jks", - "info": "./tests/samples/changeit_crt.jks:'changeit' - default password", + "info": "FILE|JKS:'changeit' - default password", "value": null, "value_start": -2, "value_end": -2, @@ -1487,7 +1487,7 @@ "line": "dummy line", "line_num": 0, "path": "./tests/samples/changeit_crt.pkcs12", - "info": "./tests/samples/changeit_crt.pkcs12:'changeit' - default password PKCS12", + "info": "FILE|PKCS12:'changeit' - default password PKCS12", "value": null, "value_start": -2, "value_end": -2, @@ -1512,7 +1512,7 @@ "line": "dummy line", "line_num": 0, "path": "./tests/samples/changeme_key.jks", - "info": "./tests/samples/changeme_key.jks:'changeme' - has keys", + "info": "FILE|JKS:'changeme' - has keys", "value": null, "value_start": -2, "value_end": -2, @@ -1537,7 +1537,7 @@ "line": "mysql -u root --password Sne3sd8AZjq", "line_num": 2, "path": "./tests/samples/cmd_credential", - "info": "./tests/samples/cmd_credential|RAW", + "info": "FILE|RAW", "value": "Sne3sd8AZjq", "value_start": 25, "value_end": 36, @@ -1562,7 +1562,7 @@ "line": "-Domain 'localhost' -Password 'Sjdn43ss@!'", "line_num": 3, "path": "./tests/samples/cmd_credential", - "info": "./tests/samples/cmd_credential|RAW", + "info": "FILE|RAW", "value": "Sjdn43ss@!", "value_start": 31, "value_end": 41, @@ -1587,7 +1587,7 @@ "line": "--super-secret_token 1ace4d19-fa7e-b4e2-c3f0-9129474bcd81", "line_num": 4, "path": "./tests/samples/cmd_credential", - "info": "./tests/samples/cmd_credential|RAW", + "info": "FILE|RAW", "value": "1ace4d19-fa7e-b4e2-c3f0-9129474bcd81", "value_start": 21, "value_end": 57, @@ -1612,7 +1612,7 @@ "line": "--super-secret_token 1ace4d19-fa7e-b4e2-c3f0-9129474bcd81", "line_num": 4, "path": "./tests/samples/cmd_credential", - "info": "./tests/samples/cmd_credential|RAW", + "info": "FILE|RAW", "value": "1ace4d19-fa7e-b4e2-c3f0-9129474bcd81", "value_start": 21, "value_end": 57, @@ -1637,7 +1637,7 @@ "line": "--super-secret_token 1ace4d19-fa7e-b4e2-c3f0-9129474bcd81", "line_num": 4, "path": "./tests/samples/cmd_credential", - "info": "./tests/samples/cmd_credential|RAW", + "info": "FILE|RAW", "value": "1ace4d19-fa7e-b4e2-c3f0-9129474bcd81", "value_start": 21, "value_end": 57, @@ -1662,7 +1662,7 @@ "line": "\"ConvertTo-SecureString \\\"4yd21JKH~GE8dkd\\\"\"", "line_num": 2, "path": "./tests/samples/cmd_secure_string", - "info": "./tests/samples/cmd_secure_string|RAW", + "info": "FILE|RAW", "value": "4yd21JKH~GE8dkd", "value_start": 26, "value_end": 41, @@ -1687,7 +1687,7 @@ "line": "gi_reo_gi_credential = \"K2u6mFw8wJOsAf\"", "line_num": 1, "path": "./tests/samples/credential.hs", - "info": "./tests/samples/credential.hs|RAW", + "info": "FILE|RAW", "value": "K2u6mFw8wJOsAf", "value_start": 24, "value_end": 38, @@ -1712,7 +1712,7 @@ "line": "doo_v1_c46dde8bd623be6efab141fa2452e10fcc382e70d5da882493477828eba24a8c", "line_num": 1, "path": "./tests/samples/digital_ocean_oauth_access_token", - "info": "./tests/samples/digital_ocean_oauth_access_token|STRUCT|STRUCT:0|STRING:digital_oc|RAW", + "info": "FILE|STRUCT|STRUCT:0|STRING:digital_oc|RAW", "value": "doo_v1_c46dde8bd623be6efab141fa2452e10fcc382e70d5da882493477828eba24a8c", "value_start": 0, "value_end": 71, @@ -1737,7 +1737,7 @@ "line": "dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "line_num": 1, "path": "./tests/samples/digital_ocean_pat", - "info": "./tests/samples/digital_ocean_pat|RAW", + "info": "FILE|RAW", "value": "dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "value_start": 0, "value_end": 71, @@ -1762,7 +1762,7 @@ "line": "MTIzNDU2Nzg5MDEyMzQ1Njc4OQ.E2-E4_.Zig9V5mpMk-JybgCFvqSfgY9EoqWjkA5O_qDje", "line_num": 1, "path": "./tests/samples/discord_bot_token", - "info": "./tests/samples/discord_bot_token|RAW", + "info": "FILE|RAW", "value": "MTIzNDU2Nzg5MDEyMzQ1Njc4OQ.E2-E4_.Zig9V5mpMk-JybgCFvqSfgY9EoqWjkA5O_qDje", "value_start": 0, "value_end": 72, @@ -1787,7 +1787,7 @@ "line": "T https://discordapp.com/api/webhooks/148392840000482200/ihUFAgIi-OsnNHsjJBpvzkzZOicbe0R2UkWo1nvOnkLGHWJnW8HZjF_dRDj7fi5q3u2h", "line_num": 1, "path": "./tests/samples/discord_webhook", - "info": "./tests/samples/discord_webhook|RAW", + "info": "FILE|RAW", "value": "/148392840000482200/ihUFAgIi-OsnNHsjJBpvzkzZOicbe0R2UkWo1nvOnkLGHWJnW8HZjF_dRDj7fi5q3u2h", "value_start": 37, "value_end": 125, @@ -1812,7 +1812,7 @@ "line": "Username:master Password:dipPr13Gg!", "line_num": 4, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr13Gg!", "value_start": 25, "value_end": 35, @@ -1837,7 +1837,7 @@ "line": "id:master,password:dipPr14Gg!", "line_num": 5, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr14Gg!", "value_start": 19, "value_end": 29, @@ -1862,7 +1862,7 @@ "line": "ID:master/PW:dipPr15Gg!", "line_num": 6, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr15Gg!", "value_start": 13, "value_end": 23, @@ -1887,7 +1887,7 @@ "line": "id:master password:dipPr16Gg!", "line_num": 7, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr16Gg!", "value_start": 19, "value_end": 29, @@ -1912,7 +1912,7 @@ "line": "user:master password:dipPr17Gg!", "line_num": 8, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr17Gg!", "value_start": 21, "value_end": 31, @@ -1937,7 +1937,7 @@ "line": "username:master,password:dipPr19Gg!", "line_num": 10, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr19Gg!", "value_start": 25, "value_end": 35, @@ -1962,7 +1962,7 @@ "line": "ANYid:master,password:dipPr111Gg!", "line_num": 12, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr111Gg!", "value_start": 22, "value_end": 33, @@ -1987,7 +1987,7 @@ "line": "user id:master password:dipPr113Gg!", "line_num": 14, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr113Gg!", "value_start": 24, "value_end": 35, @@ -2012,7 +2012,7 @@ "line": "user:master,password:dipPr114Gg!", "line_num": 15, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr114Gg!", "value_start": 21, "value_end": 32, @@ -2037,7 +2037,7 @@ "line": "user=master,password=dipPr115Gg!", "line_num": 16, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr115Gg!", "value_start": 21, "value_end": 32, @@ -2062,7 +2062,7 @@ "line": "username=master password=dipPr116Gg!", "line_num": 17, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr116Gg!", "value_start": 25, "value_end": 36, @@ -2087,7 +2087,7 @@ "line": "User name:master Password:dipPr117Gg!", "line_num": 18, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr117Gg!", "value_start": 26, "value_end": 37, @@ -2112,7 +2112,7 @@ "line": "username=master,password=dipPr118Gg!", "line_num": 19, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr118Gg!", "value_start": 25, "value_end": 36, @@ -2137,7 +2137,7 @@ "line": "--user=master --password=dipPr119Gg!", "line_num": 20, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr119Gg!", "value_start": 25, "value_end": 36, @@ -2162,7 +2162,7 @@ "line": "user=master passwd=dipPr120Gg!", "line_num": 21, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr120Gg!", "value_start": 19, "value_end": 30, @@ -2187,7 +2187,7 @@ "line": "account:dipPr121Gg! password:dipPr121Gg!", "line_num": 22, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr121Gg!", "value_start": 29, "value_end": 40, @@ -2212,7 +2212,7 @@ "line": "id:master pass:dipPr122Gg!", "line_num": 23, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr122Gg!", "value_start": 15, "value_end": 26, @@ -2237,7 +2237,7 @@ "line": "user:master pw:dipPr124Gg!", "line_num": 25, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr124Gg!", "value_start": 15, "value_end": 26, @@ -2262,7 +2262,7 @@ "line": "Username:master/Password:dipPr125Gg!", "line_num": 26, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr125Gg!", "value_start": 25, "value_end": 36, @@ -2287,7 +2287,7 @@ "line": "userId:master,password:dipPr126Gg!", "line_num": 27, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr126Gg!", "value_start": 23, "value_end": 34, @@ -2312,7 +2312,7 @@ "line": "--user master --password dipPr127Gg!", "line_num": 28, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr127Gg!", "value_start": 25, "value_end": 36, @@ -2337,7 +2337,7 @@ "line": "dipPr128Gg! ID:master dipPr128Gg! Password:dipPr128Gg!", "line_num": 29, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr128Gg!", "value_start": 43, "value_end": 54, @@ -2362,7 +2362,7 @@ "line": "ANYid:master,pw:dipPr129Gg!", "line_num": 30, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr129Gg!", "value_start": 16, "value_end": 27, @@ -2387,7 +2387,7 @@ "line": "user:master pwd:dipPr130Gg!", "line_num": 31, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr130Gg!", "value_start": 16, "value_end": 27, @@ -2412,7 +2412,7 @@ "line": "ANYID:master Password:dipPr132Gg!", "line_num": 33, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr132Gg!", "value_start": 22, "value_end": 33, @@ -2437,7 +2437,7 @@ "line": "-Username:master -Password:dipPr133Gg!", "line_num": 34, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr133Gg!", "value_start": 27, "value_end": 38, @@ -2462,7 +2462,7 @@ "line": "account:dipPr134Gg! pw:dipPr134Gg!", "line_num": 35, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr134Gg!", "value_start": 23, "value_end": 34, @@ -2487,7 +2487,7 @@ "line": "user id:master user pw:dipPr135Gg!", "line_num": 36, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr135Gg!", "value_start": 23, "value_end": 34, @@ -2512,7 +2512,7 @@ "line": "user_name=master password=dipPr136Gg!", "line_num": 37, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr136Gg!", "value_start": 26, "value_end": 37, @@ -2537,7 +2537,7 @@ "line": "--username master --password dipPr137Gg!", "line_num": 38, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr137Gg!", "value_start": 29, "value_end": 40, @@ -2562,7 +2562,7 @@ "line": "ANYlogin:master,ANYpassword:dipPr138Gg!", "line_num": 39, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr138Gg!", "value_start": 28, "value_end": 39, @@ -2587,7 +2587,7 @@ "line": "ANYusername=master ANYpassword=dipPr139Gg!", "line_num": 40, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr139Gg!", "value_start": 31, "value_end": 42, @@ -2612,7 +2612,7 @@ "line": "ID:master/PASS:dipPr141Gg!", "line_num": 42, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr141Gg!", "value_start": 15, "value_end": 26, @@ -2637,7 +2637,7 @@ "line": "account:master passwd:dipPr142Gg!", "line_num": 43, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr142Gg!", "value_start": 22, "value_end": 33, @@ -2662,7 +2662,7 @@ "line": "login:master password:dipPr143Gg!", "line_num": 44, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr143Gg!", "value_start": 22, "value_end": 33, @@ -2687,7 +2687,7 @@ "line": "user=master,pass=dipPr144Gg!", "line_num": 45, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr144Gg!", "value_start": 17, "value_end": 28, @@ -2712,7 +2712,7 @@ "line": "password:dipPr145Gg! username:master", "line_num": 46, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr145Gg!", "value_start": 9, "value_end": 20, @@ -2737,7 +2737,7 @@ "line": "Login as:master Password:dipPr146Gg!", "line_num": 47, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr146Gg!", "value_start": 25, "value_end": 36, @@ -2762,7 +2762,7 @@ "line": "ID:master,pass:dipPr147Gg!", "line_num": 48, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr147Gg!", "value_start": 15, "value_end": 26, @@ -2787,7 +2787,7 @@ "line": "id:master pw:dipPr148Gg!", "line_num": 49, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr148Gg!", "value_start": 13, "value_end": 24, @@ -2812,7 +2812,7 @@ "line": "(98.76.54.32)ID:master PW:dipPr149Gg!", "line_num": 50, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr149Gg!", "value_start": 26, "value_end": 37, @@ -2837,7 +2837,7 @@ "line": "-id:master -pw:dipPr151Gg!", "line_num": 52, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr151Gg!", "value_start": 15, "value_end": 26, @@ -2862,7 +2862,7 @@ "line": "username:master pw:dipPr152Gg!", "line_num": 53, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr152Gg!", "value_start": 19, "value_end": 30, @@ -2887,7 +2887,7 @@ "line": "-User Name:master -Password:dipPr154Gg!", "line_num": 55, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr154Gg!", "value_start": 28, "value_end": 39, @@ -2912,7 +2912,7 @@ "line": "account:dipPr155Gg!/password:dipPr155Gg!", "line_num": 56, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr155Gg!", "value_start": 29, "value_end": 40, @@ -2937,7 +2937,7 @@ "line": "ANYuser=master ANY_pass=dipPr156Gg!", "line_num": 57, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr156Gg!", "value_start": 24, "value_end": 35, @@ -2962,7 +2962,7 @@ "line": "ANYUser:master password:dipPr157Gg!", "line_num": 58, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr157Gg!", "value_start": 24, "value_end": 35, @@ -2987,7 +2987,7 @@ "line": "user:master,pwd:dipPr158Gg!", "line_num": 59, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr158Gg!", "value_start": 16, "value_end": 27, @@ -3012,7 +3012,7 @@ "line": "ANY_username:master,ANY_password:dipPr159Gg!", "line_num": 60, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr159Gg!", "value_start": 33, "value_end": 44, @@ -3037,7 +3037,7 @@ "line": "ANYusername:master,ANY_password:dipPr160Gg!", "line_num": 61, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr160Gg!", "value_start": 32, "value_end": 43, @@ -3062,7 +3062,7 @@ "line": "ANY_USER=master ANY_PASS=dipPr161Gg!", "line_num": 62, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr161Gg!", "value_start": 25, "value_end": 36, @@ -3087,7 +3087,7 @@ "line": "User Account:master User password:dipPr162Gg!", "line_num": 63, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr162Gg!", "value_start": 34, "value_end": 45, @@ -3112,7 +3112,7 @@ "line": "userid=master password=dipPr164Gg!", "line_num": 65, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr164Gg!", "value_start": 23, "value_end": 34, @@ -3137,7 +3137,7 @@ "line": "ANY-username=master ANY-password=dipPr165Gg!", "line_num": 66, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr165Gg!", "value_start": 33, "value_end": 44, @@ -3162,7 +3162,7 @@ "line": "username:master pass:dipPr166Gg!", "line_num": 67, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr166Gg!", "value_start": 21, "value_end": 32, @@ -3187,7 +3187,7 @@ "line": "user=master pwd=dipPr168Gg!", "line_num": 69, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr168Gg!", "value_start": 16, "value_end": 27, @@ -3212,7 +3212,7 @@ "line": "Name:master,PW:dipPr169Gg!", "line_num": 70, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr169Gg!", "value_start": 15, "value_end": 26, @@ -3237,7 +3237,7 @@ "line": "user:master pass:dipPr172Gg!", "line_num": 73, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr172Gg!", "value_start": 17, "value_end": 28, @@ -3262,7 +3262,7 @@ "line": "user=master password=dipPr174Gg!", "line_num": 75, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr174Gg!", "value_start": 21, "value_end": 32, @@ -3287,7 +3287,7 @@ "line": "Host name:master/Password:dipPr175Gg!", "line_num": 76, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr175Gg!", "value_start": 26, "value_end": 37, @@ -3312,7 +3312,7 @@ "line": "role:master,password:dipPr176Gg!", "line_num": 77, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr176Gg!", "value_start": 21, "value_end": 32, @@ -3337,7 +3337,7 @@ "line": "Wifi Name:master,PW:dipPr177Gg!", "line_num": 78, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr177Gg!", "value_start": 20, "value_end": 31, @@ -3362,7 +3362,7 @@ "line": "ID:master/Password:dipPr178Gg!", "line_num": 79, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr178Gg!", "value_start": 19, "value_end": 30, @@ -3387,7 +3387,7 @@ "line": "name:master,password:dipPr179Gg!", "line_num": 80, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr179Gg!", "value_start": 21, "value_end": 32, @@ -3412,7 +3412,7 @@ "line": "Loging:master Password:dipPr180Gg!", "line_num": 81, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr180Gg!", "value_start": 23, "value_end": 34, @@ -3437,7 +3437,7 @@ "line": "id:master,default pw:dipPr182Gg!", "line_num": 83, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr182Gg!", "value_start": 21, "value_end": 32, @@ -3462,7 +3462,7 @@ "line": "id/pw id:master pw:dipPr185Gg!", "line_num": 86, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr185Gg!", "value_start": 19, "value_end": 30, @@ -3487,7 +3487,7 @@ "line": "user:master,pwd:dipPr186Gg!", "line_num": 87, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr186Gg!", "value_start": 16, "value_end": 27, @@ -3512,7 +3512,7 @@ "line": "username:master/pw:dipPr188Gg!", "line_num": 89, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr188Gg!", "value_start": 19, "value_end": 30, @@ -3537,7 +3537,7 @@ "line": "username:master pw:dipPr189Gg!", "line_num": 90, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr189Gg!", "value_start": 19, "value_end": 30, @@ -3562,7 +3562,7 @@ "line": "PW:dipPr190Gg! ID:master", "line_num": 91, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr190Gg!", "value_start": 3, "value_end": 14, @@ -3587,7 +3587,7 @@ "line": "ANYid:master pw:dipPr194Gg! ip:98.76.54.32", "line_num": 95, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr194Gg!", "value_start": 16, "value_end": 27, @@ -3612,7 +3612,7 @@ "line": "id: master pw:dipPr197Gg!", "line_num": 98, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr197Gg!", "value_start": 14, "value_end": 25, @@ -3637,7 +3637,7 @@ "line": "id:master@example.com,pw:dipPr198Gg!", "line_num": 99, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr198Gg!", "value_start": 25, "value_end": 36, @@ -3662,7 +3662,7 @@ "line": "id:master@example.com,pw:IHQSB1GG!", "line_num": 102, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "IHQSB1GG!", "value_start": 25, "value_end": 34, @@ -3687,7 +3687,7 @@ "line": "ID/Password:master/iPp2@GRq", "line_num": 3, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp2@GRq", "value_start": 12, "value_end": 27, @@ -3712,7 +3712,7 @@ "line": "username/password:master/iPp7@GRq", "line_num": 8, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp7@GRq", "value_start": 18, "value_end": 33, @@ -3737,7 +3737,7 @@ "line": "id/passwd:master/iPp8@GRq", "line_num": 9, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp8@GRq", "value_start": 10, "value_end": 25, @@ -3762,7 +3762,7 @@ "line": "98.76.54.32(ID:master/PW:iPp10@GRq) # todo: move into other sample ?", "line_num": 11, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp10@GRq", "value_start": 25, "value_end": 34, @@ -3787,7 +3787,7 @@ "line": "98.76.54.32 id/pw:master/iPp19@GRq", "line_num": 20, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp19@GRq", "value_start": 18, "value_end": 34, @@ -3812,7 +3812,7 @@ "line": "user/pass:master/iPp25@GRq", "line_num": 26, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp25@GRq", "value_start": 10, "value_end": 26, @@ -3837,7 +3837,7 @@ "line": "ID/Password=master/iPp27@GRq", "line_num": 28, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp27@GRq", "value_start": 12, "value_end": 28, @@ -3862,7 +3862,7 @@ "line": "Password:Prl23Db#@", "line_num": 1, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -3887,7 +3887,7 @@ "line": "Password=Prl23Db#@", "line_num": 4, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -3912,7 +3912,7 @@ "line": "ANY_password=Prl23Db#@", "line_num": 8, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -3937,7 +3937,7 @@ "line": "pass:Prl23Db#@", "line_num": 10, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 5, "value_end": 14, @@ -3962,7 +3962,7 @@ "line": "ANY-password=Prl23Db#@", "line_num": 11, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -3987,7 +3987,7 @@ "line": "master@98.76.54.32 password:Prl23Db#@", "line_num": 14, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 28, "value_end": 37, @@ -4012,7 +4012,7 @@ "line": "--Password Prl23Db#@", "line_num": 15, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 11, "value_end": 20, @@ -4037,7 +4037,7 @@ "line": "ANY_PW:Prl23Db#@", "line_num": 17, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 7, "value_end": 16, @@ -4062,7 +4062,7 @@ "line": "default password:Prl23Db#@", "line_num": 18, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 17, "value_end": 26, @@ -4087,7 +4087,7 @@ "line": "\"password\":\"Prl23Db#@\"", "line_num": 21, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 12, "value_end": 21, @@ -4112,7 +4112,7 @@ "line": "Passwd:Prl23Db#@ Prl23Db#@", "line_num": 23, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 7, "value_end": 16, @@ -4137,7 +4137,7 @@ "line": "PW:Prl23Db#@,password:Prl23Db#@", "line_num": 24, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 22, "value_end": 31, @@ -4162,7 +4162,7 @@ "line": "password:Prl23Db#@,\ube44\ubc88:Prl23Db#@", "line_num": 25, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -4187,7 +4187,7 @@ "line": "passwd=Prl23Db#@", "line_num": 26, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 7, "value_end": 16, @@ -4212,7 +4212,7 @@ "line": "password:Prl23Db#@, paasword:Prl23Db#@", "line_num": 30, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -4237,7 +4237,7 @@ "line": "password:Prl23Db#@,ANYPassword:Prl23Db#@", "line_num": 31, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -4262,7 +4262,7 @@ "line": "password:Prl23Db#@,ANYPassword:Prl23Db#@", "line_num": 31, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 31, "value_end": 40, @@ -4287,7 +4287,7 @@ "line": "Password:Prl23Db#@,pwd=Prl23Db#@", "line_num": 32, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -4312,7 +4312,7 @@ "line": "Password:Prl23Db#@,pwd=Prl23Db#@", "line_num": 32, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 23, "value_end": 32, @@ -4337,7 +4337,7 @@ "line": "-password \"Prl23Db#@\"", "line_num": 33, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 11, "value_end": 20, @@ -4362,7 +4362,7 @@ "line": "ANY_password:Prl23Db#@", "line_num": 34, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -4387,7 +4387,7 @@ "line": "--password=Prl23Db#@", "line_num": 37, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 11, "value_end": 20, @@ -4412,7 +4412,7 @@ "line": "root/Prl23Db#@,root password:Prl23Db#@", "line_num": 38, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 29, "value_end": 38, @@ -4437,7 +4437,7 @@ "line": "Prl23Db#@ username:Prl23Db#@,Prl23Db#@ password:Prl23Db#@", "line_num": 40, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 48, "value_end": 57, @@ -4462,7 +4462,7 @@ "line": "Prl23Db#@:password:Prl23Db#@", "line_num": 41, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 19, "value_end": 28, @@ -4487,7 +4487,7 @@ "line": "ANYpassword=Prl23Db#@", "line_num": 45, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 12, "value_end": 21, @@ -4512,7 +4512,7 @@ "line": "passwords:Prl23Db#@", "line_num": 46, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 10, "value_end": 19, @@ -4537,7 +4537,7 @@ "line": "password=>Prl23Db#@", "line_num": 48, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 10, "value_end": 19, @@ -4562,7 +4562,7 @@ "line": "# password: keep empty", "line_num": 56, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "keep", "value_start": 12, "value_end": 16, @@ -4587,7 +4587,7 @@ "line": "ANY-Token:AIhq5Xyb1Gga9Q0", "line_num": 1, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q0", "value_start": 10, "value_end": 25, @@ -4612,7 +4612,7 @@ "line": "token:AIhq5Xyb1Gga9Q2", "line_num": 3, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q2", "value_start": 6, "value_end": 21, @@ -4637,7 +4637,7 @@ "line": "SECRET KEY:AIhq5Xyb1Gga9Q3", "line_num": 4, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q3", "value_start": 11, "value_end": 26, @@ -4662,7 +4662,7 @@ "line": "SECRET KEY:AIhq5Xyb1Gga9Q3", "line_num": 4, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q3", "value_start": 11, "value_end": 26, @@ -4687,7 +4687,7 @@ "line": "secret=AIhq5Xyb1Gga9Q4", "line_num": 5, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q4", "value_start": 7, "value_end": 22, @@ -4712,7 +4712,7 @@ "line": "--token AIhq5Xyb1Gga9Q5", "line_num": 6, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q5", "value_start": 8, "value_end": 23, @@ -4737,7 +4737,7 @@ "line": "secret:AIhq5Xyb1Gga9Q6", "line_num": 7, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q6", "value_start": 7, "value_end": 22, @@ -4762,7 +4762,7 @@ "line": "ANY_token=AIhq5Xyb1Gga9Q7", "line_num": 8, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q7", "value_start": 10, "value_end": 25, @@ -4787,7 +4787,7 @@ "line": "-secret AIhq5Xyb1Gga9Q10", "line_num": 11, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q10", "value_start": 8, "value_end": 24, @@ -4812,7 +4812,7 @@ "line": "ANY.secret=AIhq5Xyb1Gga9Q19", "line_num": 20, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q19", "value_start": 11, "value_end": 27, @@ -4837,7 +4837,7 @@ "line": "--secret=AIhq5Xyb1Gga9Q21", "line_num": 22, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q21", "value_start": 9, "value_end": 25, @@ -4862,7 +4862,7 @@ "line": "ANY_secret:AIhq5Xyb1Gga9Q22", "line_num": 23, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q22", "value_start": 11, "value_end": 27, @@ -4887,7 +4887,7 @@ "line": "-Token:AIhq5Xyb1Gga9Q23", "line_num": 24, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q23", "value_start": 7, "value_end": 23, @@ -4912,7 +4912,7 @@ "line": "API Secret:AIhq5Xyb1Gga9Q24", "line_num": 25, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q24", "value_start": 11, "value_end": 27, @@ -4937,7 +4937,7 @@ "line": "API Secret:AIhq5Xyb1Gga9Q24", "line_num": 25, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q24", "value_start": 11, "value_end": 27, @@ -4962,7 +4962,7 @@ "line": "access key:AIhq5Xyb1Gga9Q26", "line_num": 27, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q26", "value_start": 11, "value_end": 27, @@ -4987,7 +4987,7 @@ "line": "Secret Key:AIhq5Xyb1Gga9Q27", "line_num": 28, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q27", "value_start": 11, "value_end": 27, @@ -5012,7 +5012,7 @@ "line": "Secret Key:AIhq5Xyb1Gga9Q27", "line_num": 28, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q27", "value_start": 11, "value_end": 27, @@ -5037,7 +5037,7 @@ "line": "ANY_key=AIhq5Xyb1Gga9Q29", "line_num": 30, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q29", "value_start": 8, "value_end": 24, @@ -5062,7 +5062,7 @@ "line": "secret-ANYkey:AIhq5Xyb1Gga9Q30", "line_num": 31, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q30", "value_start": 14, "value_end": 30, @@ -5087,7 +5087,7 @@ "line": "secret-ANYkey:AIhq5Xyb1Gga9Q30", "line_num": 31, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q30", "value_start": 14, "value_end": 30, @@ -5112,7 +5112,7 @@ "line": "ANY_id=AIhq5Xyb1Gga9Q31 ANY_token=AIhq5Xyb1Gga9Q31", "line_num": 32, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q31", "value_start": 34, "value_end": 50, @@ -5137,7 +5137,7 @@ "line": "access_token:AIhq5Xyb1Gga9Q33", "line_num": 34, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q33", "value_start": 13, "value_end": 29, @@ -5162,7 +5162,7 @@ "line": "Authentication key:AIhq5Xyb1Gga9Q35", "line_num": 36, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q35", "value_start": 19, "value_end": 35, @@ -5187,7 +5187,7 @@ "line": "Authentication key:AIhq5Xyb1Gga9Q35", "line_num": 36, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q35", "value_start": 19, "value_end": 35, @@ -5212,7 +5212,7 @@ "line": "master@98.76.54.32(pw:IhqSb1Gg)", "line_num": 3, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -5237,7 +5237,7 @@ "line": "ID:gildong.hong@example.com mailto:{1} PW:IhqSb1Gg", "line_num": 4, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -5262,7 +5262,7 @@ "line": "Password:master/IhqSb1Gg", "line_num": 5, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "master/IhqSb1Gg", "value_start": 9, "value_end": 24, @@ -5287,7 +5287,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (PW:IhqSb1Gg)", "line_num": 6, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -5312,7 +5312,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} password:IhqSb1Gg", "line_num": 7, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 49, "value_end": 57, @@ -5337,7 +5337,7 @@ "line": "ssh -P IhqSb1Gg gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 11, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 62, "value_end": 70, @@ -5362,7 +5362,7 @@ "line": "gildong.hong@98.76.54.32 pwd:IhqSb1Gg", "line_num": 15, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 29, "value_end": 37, @@ -5387,7 +5387,7 @@ "line": "\uacc4\uc815:master(PW:IhqSb1Gg)", "line_num": 16, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 13, "value_end": 21, @@ -5412,7 +5412,7 @@ "line": "98.76.54.32(pw:IhqSb1Gg)", "line_num": 17, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -5437,7 +5437,7 @@ "line": "98.76.54.32/pw:IhqSb1Gg", "line_num": 19, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -5462,7 +5462,7 @@ "line": "ID:gildong.hong@example.com mailto:{1}/pw:IhqSb1Gg", "line_num": 20, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -5487,7 +5487,7 @@ "line": "ID:gildong.hong@any.example.com mailto:{1} PWD:IhqSb1Gg", "line_num": 21, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 47, "value_end": 55, @@ -5512,7 +5512,7 @@ "line": "sftp gildong.hong@98.76.54.32 mailto:{1} (pw:IhqSb1Gg)", "line_num": 22, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -5537,7 +5537,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} (pw:IhqSb1Gg)", "line_num": 23, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 40, "value_end": 48, @@ -5562,7 +5562,7 @@ "line": "-id:gildong.hong@example.com mailto:{1} -pwd:IhqSb1Gg", "line_num": 24, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -5587,7 +5587,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 25, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 50, "value_end": 58, @@ -5612,7 +5612,7 @@ "line": "id:gildong.hong@example.com mailto:{1} password:IhqSb1Gg", "line_num": 28, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 48, "value_end": 56, @@ -5637,7 +5637,7 @@ "line": "ANY_password,default:IhqSb1Gg", "line_num": 31, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 21, "value_end": 29, @@ -5662,7 +5662,7 @@ "line": "Key(ANYSecret):IhqSb1Gg", "line_num": 32, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -5687,7 +5687,7 @@ "line": "Key(ANYSecret):IhqSb1Gg", "line_num": 32, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -5712,7 +5712,7 @@ "line": "98.76.54.32 ANY_PW:IhqSb1Gg", "line_num": 34, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 19, "value_end": 27, @@ -5737,7 +5737,7 @@ "line": "98.76.54.32(ID/PW:IhqSb1Gg)", "line_num": 36, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 18, "value_end": 26, @@ -5762,7 +5762,7 @@ "line": "gildong.hong@98.76.54.32 (pwd:IhqSb1Gg)", "line_num": 38, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 30, "value_end": 38, @@ -5787,7 +5787,7 @@ "line": "password for master:IhqSb1Gg", "line_num": 43, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 20, "value_end": 28, @@ -5812,7 +5812,7 @@ "line": "id:xxxx(ANYpw:IhqSb1Ga)", "line_num": 46, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Ga", "value_start": 14, "value_end": 22, @@ -5837,7 +5837,7 @@ "line": "gildong.hong@98.76.54.32,pw:IhqSb1Gg", "line_num": 47, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 28, "value_end": 36, @@ -5862,7 +5862,7 @@ "line": "98.76.54.32:xxxx(PW:IhqSb1Gg)", "line_num": 51, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 20, "value_end": 28, @@ -5887,7 +5887,7 @@ "line": "\uacc4\uc815/Password-xxxx:master/IhqSb1Gg", "line_num": 55, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "master/IhqSb1Gg", "value_start": 17, "value_end": 32, @@ -5912,7 +5912,7 @@ "line": "gildong.hong@98.76.54.32 PW:IhqSb1Gg", "line_num": 56, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 28, "value_end": 36, @@ -5937,7 +5937,7 @@ "line": "ANY_user:xxxx ANY_pwd:IhqSb1Gg", "line_num": 61, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -5962,7 +5962,7 @@ "line": "Acount name:xxxx Initial Password:IhqSb1Gg", "line_num": 62, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 34, "value_end": 42, @@ -5987,7 +5987,7 @@ "line": "Access wifi:xxxx(PW:IhqSb1Gg)", "line_num": 63, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 20, "value_end": 28, @@ -6012,7 +6012,7 @@ "line": "-User:master -PasswordANY:IhqSb1Gg", "line_num": 66, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 26, "value_end": 34, @@ -6037,7 +6037,7 @@ "line": "password(default:IhqSb1Gg)", "line_num": 68, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 17, "value_end": 25, @@ -6062,7 +6062,7 @@ "line": "98.76.54.32(ID/PW:master/IhqSb1Gg)", "line_num": 70, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "master/IhqSb1Gg", "value_start": 18, "value_end": 33, @@ -6087,7 +6087,7 @@ "line": "master@98.76.54.32(pw:IhqSb1Gg)", "line_num": 73, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -6112,7 +6112,7 @@ "line": "master@98.76.54.32,PW:IhqSb1Gg", "line_num": 74, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -6137,7 +6137,7 @@ "line": "98.76.54.32 pw:IhqSb1Gg", "line_num": 75, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -6162,7 +6162,7 @@ "line": "config:xxxx,PW:IhqSb1Gg", "line_num": 78, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -6187,7 +6187,7 @@ "line": "scp gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 82, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -6212,7 +6212,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1} pw:IhqSb1Gg", "line_num": 83, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 38, "value_end": 46, @@ -6237,7 +6237,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 84, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 39, "value_end": 47, @@ -6262,7 +6262,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1},pw:IhqSb1Gg", "line_num": 85, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -6287,7 +6287,7 @@ "line": "(ssh gildong.hong@98.76.54.32 mailto{1}) pwd:IhqSb1Gg", "line_num": 87, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -6312,7 +6312,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1}, pw:IhqSb1Gg", "line_num": 90, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -6337,7 +6337,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (pwd:IhqSb1Gg)", "line_num": 93, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -6362,7 +6362,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 94, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 46, "value_end": 54, @@ -6387,7 +6387,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} Password:IhqSb1Gg", "line_num": 96, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -6412,7 +6412,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} (pass:IhqSb1Gg)", "line_num": 97, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -6437,7 +6437,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 100, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -6462,7 +6462,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} pass:IhqSb1Gg", "line_num": 101, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -6487,7 +6487,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1}/password:IhqSb1Gg", "line_num": 102, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -6512,7 +6512,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1}/password:IhqSb1Gg", "line_num": 104, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 49, "value_end": 57, @@ -6537,7 +6537,7 @@ "line": "-ANYID:gildong.hong@example.com mailto:{1} -pw:IhqSb1Gg", "line_num": 105, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 47, "value_end": 55, @@ -6562,7 +6562,7 @@ "line": "ID:gildong.hong@xxxx.net mailto:{1} pw:IhqSb1Gg", "line_num": 106, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 39, "value_end": 47, @@ -6587,7 +6587,7 @@ "line": "http://98.76.54.32:xxx(pw:IhqSb1Gg)", "line_num": 108, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 26, "value_end": 34, @@ -6612,7 +6612,7 @@ "line": "Password: \"Dw7^&ndgf", "line_num": 16, "path": "./tests/samples/drawio", - "info": "./tests/samples/drawio|MXFILE", + "info": "FILE|MXFILE", "value": "Df34D<345&>gf", "value_start": 14, "value_end": 27, @@ -6687,7 +6687,7 @@ "line": "pass: Dsfgh%$d<>s&", "line_num": 34, "path": "./tests/samples/drawio", - "info": "./tests/samples/drawio|MXFILE", + "info": "FILE|MXFILE", "value": "Dsfgh%$d<>s&", "value_start": 6, "value_end": 18, @@ -6712,7 +6712,7 @@ "line": "page2 secret is ce49dba1-e4fe-b2a7-4ffa-132bcd819474", "line_num": 45, "path": "./tests/samples/drawio", - "info": "./tests/samples/drawio|MXFILE", + "info": "FILE|MXFILE", "value": "ce49dba1-e4fe-b2a7-4ffa-132bcd819474", "value_start": 16, "value_end": 52, @@ -6737,7 +6737,7 @@ "line": "var g = '7rBynGo0b1cAAAAAAAAAAc72L3T6rQK51mB5a06ijnwRG91deTxvSqdZNAlxq8pZ'", "line_num": 1, "path": "./tests/samples/dropbox_api_secret_long_term", - "info": "./tests/samples/dropbox_api_secret_long_term|RAW", + "info": "FILE|RAW", "value": "7rBynGo0b1cAAAAAAAAAAc72L3T6rQK51mB5a06ijnwRG91deTxvSqdZNAlxq8pZ", "value_start": 9, "value_end": 73, @@ -6762,7 +6762,7 @@ "line": "var app_unique_val_s = 'wpv1jq9xwanbn3n';", "line_num": 1, "path": "./tests/samples/dropbox_app_secret", - "info": "./tests/samples/dropbox_app_secret|RAW", + "info": "FILE|RAW", "value": "wpv1jq9xwanbn3n", "value_start": 24, "value_end": 39, @@ -6787,7 +6787,7 @@ "line": "var dropbox = 'sl.BdmpmC82mhhySscKk2oQGyE5l--8LdAQftLTXVGQhP39Z8FtAK1BhePhyevurA-Elt7ToIr6OpwzKAYE7RBqpu6VVyQU5WlCTL_Q7N4gElXahaWou6aPpOIwgGCIOq9aeC3YFoc';", "line_num": 1, "path": "./tests/samples/dropbox_oauth_token", - "info": "./tests/samples/dropbox_oauth_token|RAW", + "info": "FILE|RAW", "value": "sl.BdmpmC82mhhySscKk2oQGyE5l--8LdAQftLTXVGQhP39Z8FtAK1BhePhyevurA-Elt7ToIr6OpwzKAYE7RBqpu6VVyQU5WlCTL_Q7N4gElXahaWou6aPpOIwgGCIOq9aeC3YFoc", "value_start": 15, "value_end": 153, @@ -6812,7 +6812,7 @@ "line": "dt0c01.ST2EY72KQINMH574WMNVI7YN.G3DFPBEJYMODIDAEX454M7YWBUVEFOWKPRVMWFASS64NFH52PX6BNDVFFM572RZM", "line_num": 1, "path": "./tests/samples/dynatrace_api.hs", - "info": "./tests/samples/dynatrace_api.hs|RAW", + "info": "FILE|RAW", "value": "dt0c01.ST2EY72KQINMH574WMNVI7YN.G3DFPBEJYMODIDAEX454M7YWBUVEFOWKPRVMWFASS64NFH52PX6BNDVFFM572RZM", "value_start": 0, "value_end": 96, @@ -6837,7 +6837,7 @@ "line": "\\ngit_token = \"gireogicracklecrackle1231567190113413981\"\\n\\n", "line_num": 1, "path": "./tests/samples/encoded_data", - "info": "./tests/samples/encoded_data|ENCODED|RAW", + "info": "FILE|BASE64|RAW", "value": "gireogicracklecrackle1231567190113413981", "value_start": 15, "value_end": 55, @@ -6862,7 +6862,7 @@ "line": "\\ngit_token = \"gireogicracklecrackle1231567190113413981\"\\n\\n", "line_num": 1, "path": "./tests/samples/encoded_data", - "info": "./tests/samples/encoded_data|ENCODED|RAW", + "info": "FILE|BASE64|RAW", "value": "gireogicracklecrackle1231567190113413981", "value_start": 15, "value_end": 55, @@ -6887,7 +6887,7 @@ "line": "GI_REO_GI_FACEBOOK_TOKEN = \"EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD\"", "line_num": 1, "path": "./tests/samples/facebook_key", - "info": "./tests/samples/facebook_key|RAW", + "info": "FILE|RAW", "value": "EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "value_start": 28, "value_end": 115, @@ -6912,7 +6912,7 @@ "line": "GI_REO_GI_FACEBOOK_TOKEN = \"EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD\"", "line_num": 1, "path": "./tests/samples/facebook_key", - "info": "./tests/samples/facebook_key|RAW", + "info": "FILE|RAW", "value": "EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "value_start": 28, "value_end": 115, @@ -6937,7 +6937,7 @@ "line": "1527194624358273|qbBf2-fdB9zZpqLA0_2nNzZDw2M", "line_num": 2, "path": "./tests/samples/facebook_key", - "info": "./tests/samples/facebook_key|RAW", + "info": "FILE|RAW", "value": "1527194624358273|qbBf2-fdB9zZpqLA0_2nNzZDw2M", "value_start": 0, "value_end": 44, @@ -6962,7 +6962,7 @@ "line": "test-app-domain-42.firebaseapp.com", "line_num": 1, "path": "./tests/samples/firebase_domain", - "info": "./tests/samples/firebase_domain|RAW", + "info": "FILE|RAW", "value": "test-app-domain-42.firebaseapp.com", "value_start": 0, "value_end": 34, @@ -6987,7 +6987,7 @@ "line": "test2.io.firebaseio.com", "line_num": 2, "path": "./tests/samples/firebase_domain", - "info": "./tests/samples/firebase_domain|RAW", + "info": "FILE|RAW", "value": "test2.io.firebaseio.com", "value_start": 0, "value_end": 23, @@ -7012,7 +7012,7 @@ "line": "ghp_00000000000000000000000000000004WZ4EQ # classic", "line_num": 1, "path": "./tests/samples/github_classic_token", - "info": "./tests/samples/github_classic_token|RAW", + "info": "FILE|RAW", "value": "ghp_00000000000000000000000000000004WZ4EQ", "value_start": 0, "value_end": 41, @@ -7037,7 +7037,7 @@ "line": "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", "line_num": 2, "path": "./tests/samples/github_fine_granted_token", - "info": "./tests/samples/github_fine_granted_token|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 93, @@ -7062,7 +7062,7 @@ "line": "GITHUB_ACCESS_TOKEN = \"lbyxnhqjfnzhlpnvcvaxjumgvdlnktgugdofmzyy\"", "line_num": 1, "path": "./tests/samples/github_key.groovy", - "info": "./tests/samples/github_key.groovy|RAW", + "info": "FILE|RAW", "value": "lbyxnhqjfnzhlpnvcvaxjumgvdlnktgugdofmzyy", "value_start": 23, "value_end": 63, @@ -7087,7 +7087,7 @@ "line": "GITHUB_ACCESS_TOKEN = \"lbyxnhqjfnzhlpnvcvaxjumgvdlnktgugdofmzyy\"", "line_num": 1, "path": "./tests/samples/github_key.groovy", - "info": "./tests/samples/github_key.groovy|RAW", + "info": "FILE|RAW", "value": "lbyxnhqjfnzhlpnvcvaxjumgvdlnktgugdofmzyy", "value_start": 23, "value_end": 63, @@ -7112,7 +7112,7 @@ "line": "var email_t = '7e4v6v5j2nepcc8f5zvatgl9g';", "line_num": 1, "path": "./tests/samples/gitlab_email_token", - "info": "./tests/samples/gitlab_email_token|RAW", + "info": "FILE|RAW", "value": "7e4v6v5j2nepcc8f5zvatgl9g", "value_start": 15, "value_end": 40, @@ -7137,7 +7137,7 @@ "line": "feed_n = 'o9aEaH32LN618KhF7e_L'", "line_num": 1, "path": "./tests/samples/gitlab_feed_token", - "info": "./tests/samples/gitlab_feed_token|RAW", + "info": "FILE|RAW", "value": "o9aEaH32LN618KhF7e_L", "value_start": 10, "value_end": 30, @@ -7162,7 +7162,7 @@ "line": "glpat-8d5ri2n9g85LAnC9YW85 # Personal access token, Impersonation token, Project access token, Group access token", "line_num": 2, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glpat-8d5ri2n9g85LAnC9YW85", "value_start": 0, "value_end": 26, @@ -7187,7 +7187,7 @@ "line": "gloas-7fc1974b38580e6ceca8c077863cd5e88745895dfcbe1ae3c36eab9c498103dc # OAuth Application Secret", "line_num": 3, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "gloas-7fc1974b38580e6ceca8c077863cd5e88745895dfcbe1ae3c36eab9c498103dc", "value_start": 0, "value_end": 70, @@ -7212,7 +7212,7 @@ "line": "gldt-9BeUoeWu2V9uUS3uLoMy # Deploy token", "line_num": 4, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "gldt-9BeUoeWu2V9uUS3uLoMy", "value_start": 0, "value_end": 25, @@ -7237,7 +7237,7 @@ "line": "glrt-2CR8_eVxiio-1QmzPZwa # Runner authentication token", "line_num": 5, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glrt-2CR8_eVxiio-1QmzPZwa", "value_start": 0, "value_end": 25, @@ -7262,7 +7262,7 @@ "line": "glcbt-1375_cgpAsnEmP-79kcfRLyK_", "line_num": 6, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glcbt-1375_cgpAsnEmP-79kcfRLyK_", "value_start": 0, "value_end": 31, @@ -7287,7 +7287,7 @@ "line": "glcbt-0_c1k_AsgyRp4mP-Kcn8fL # CI/CD Job token", "line_num": 7, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glcbt-0_c1k_AsgyRp4mP-Kcn8fL", "value_start": 0, "value_end": 28, @@ -7312,7 +7312,7 @@ "line": "glptt-33276248c9748113e978392e5c074b7f974f8683 # Trigger token", "line_num": 8, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glptt-33276248c9748113e978392e5c074b7f974f8683", "value_start": 0, "value_end": 46, @@ -7337,7 +7337,7 @@ "line": "glft-Aafqn5A31G-2VipZMh28 # Feed token", "line_num": 9, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glft-Aafqn5A31G-2VipZMh28", "value_start": 0, "value_end": 25, @@ -7362,7 +7362,7 @@ "line": "glimt-1jpqzsnw2n71om0r9kgt06os3 # Incoming mail token", "line_num": 10, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glimt-1jpqzsnw2n71om0r9kgt06os3", "value_start": 0, "value_end": 31, @@ -7387,7 +7387,7 @@ "line": "glagent-ZQmgbRr-Ydu5YehnXCGiiSLxjd53EkFnYapS7A4TwyNE8Y2XVg # GitLab agent for Kubernetes token", "line_num": 11, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glagent-ZQmgbRr-Ydu5YehnXCGiiSLxjd53EkFnYapS7A4TwyNE8Y2XVg", "value_start": 0, "value_end": 58, @@ -7412,7 +7412,7 @@ "line": "_gitlab_session=8d2a78c080a3af1e6a4677be474432f2 # GitLab session cookies", "line_num": 12, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "_gitlab_session=8d2a78c080a3af1e6a4677be474432f2", "value_start": 0, "value_end": 48, @@ -7437,7 +7437,7 @@ "line": "glsoat-971om0ecn5A386r9k481 # SCIM Tokens", "line_num": 13, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glsoat-971om0ecn5A386r9k481", "value_start": 0, "value_end": 27, @@ -7462,7 +7462,7 @@ "line": "glffct-AnRWYdo3Si_Xm2Q6n7zu # Feature Flags Client token", "line_num": 14, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glffct-AnRWYdo3Si_Xm2Q6n7zu", "value_start": 0, "value_end": 27, @@ -7487,7 +7487,7 @@ "line": "GR1348941jG6xeSsmN8DFVKoyBYu2 # Runner registration token", "line_num": 17, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "GR1348941jG6xeSsmN8DFVKoyBYu2", "value_start": 0, "value_end": 29, @@ -7512,7 +7512,7 @@ "line": "AIzaGiReoG-CrackleCrackle12315618_12315", "line_num": 1, "path": "./tests/samples/google_api_key.toml", - "info": "./tests/samples/google_api_key.toml|RAW", + "info": "FILE|RAW", "value": "AIzaGiReoG-CrackleCrackle12315618_12315", "value_start": 0, "value_end": 39, @@ -7537,7 +7537,7 @@ "line": "194206074328-qp89pdv6fi35vsi71258g1eh31q6h7c3.apps.googleusercontent.com", "line_num": 2, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "194206074328-qp89pdv6fi35vsi71258g1eh31q6h7c3.apps.googleusercontent.com", "value_start": 0, "value_end": 72, @@ -7554,7 +7554,7 @@ "line": "4L2QMyTm6Rr0o46ytGiReoG1", "line_num": 4, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "4L2QMyTm6Rr0o46ytGiReoG1", "value_start": 0, "value_end": 24, @@ -7579,7 +7579,7 @@ "line": "\"id\":\"194206074328-qdv6fi3eh31q6h7c35vsi7p89p1258g1.apps.googleusercontent.com\",\"CEKPET\":\"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\",", "line_num": 18, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "194206074328-qdv6fi3eh31q6h7c35vsi7p89p1258g1.apps.googleusercontent.com", "value_start": 6, "value_end": 78, @@ -7596,7 +7596,7 @@ "line": "\"id\":\"194206074328-qdv6fi3eh31q6h7c35vsi7p89p1258g1.apps.googleusercontent.com\",\"CEKPET\":\"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\",", "line_num": 18, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 90, "value_end": 125, @@ -7621,7 +7621,7 @@ "line": "\"id\":\"194206074328-qdv6fi3eh31q6h7c35vsi7p89p1258g1.apps.googleusercontent.com\",\"CEKPET\":\"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\",", "line_num": 18, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 90, "value_end": 125, @@ -7646,7 +7646,7 @@ "line": "google_oauth_key = \"ya29.gi_reo_gi_crackle_ln22\"", "line_num": 1, "path": "./tests/samples/google_oauth_key", - "info": "./tests/samples/google_oauth_key|RAW", + "info": "FILE|RAW", "value": "ya29.gi_reo_gi_crackle_ln22", "value_start": 20, "value_end": 47, @@ -7671,7 +7671,7 @@ "line": "grafana_policy = 'glc_eyJvIjoiMjA0NjMwIiwibiI6InRlc3QtdG9rZW4iLCJrIjoidklnbjJ2WHc5MTVXOWtNOWxsNHcyZHEyIiwibSI6eyJyIjoicHJvZC0wIn19'", "line_num": 1, "path": "./tests/samples/grafana_access_policy_token", - "info": "./tests/samples/grafana_access_policy_token|RAW", + "info": "FILE|RAW", "value": "glc_eyJvIjoiMjA0NjMwIiwibiI6InRlc3QtdG9rZW4iLCJrIjoidklnbjJ2WHc5MTVXOWtNOWxsNHcyZHEyIiwibSI6eyJyIjoicHJvZC0wIn19", "value_start": 18, "value_end": 130, @@ -7696,7 +7696,7 @@ "line": "grafana = 'eyJrIjoiMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCIsIm4iOiJ4eHh4IiwiaWQiOjIwNDM2MH0='", "line_num": 1, "path": "./tests/samples/grafana_provisioned_api_key", - "info": "./tests/samples/grafana_provisioned_api_key|RAW", + "info": "FILE|RAW", "value": "eyJrIjoiMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCIsIm4iOiJ4eHh4IiwiaWQiOjIwNDM2MH0=", "value_start": 11, "value_end": 107, @@ -7721,7 +7721,7 @@ "line": "glsa_ThisI5NtTheTok3nYou8reLo0k1ngF0r_0a2a3df7", "line_num": 1, "path": "./tests/samples/grafana_service_accounts", - "info": "./tests/samples/grafana_service_accounts|RAW", + "info": "FILE|RAW", "value": "glsa_ThisI5NtTheTok3nYou8reLo0k1ngF0r_0a2a3df7", "value_start": 0, "value_end": 46, @@ -7746,7 +7746,7 @@ "line": "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", "line_num": 1, "path": "./tests/samples/groq_api_key", - "info": "./tests/samples/groq_api_key|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 56, @@ -7771,7 +7771,7 @@ "line": "url/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?part", "line_num": 2, "path": "./tests/samples/groq_api_key", - "info": "./tests/samples/groq_api_key|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 4, "value_end": 60, @@ -7796,7 +7796,7 @@ "line": "Z28P3STmkBQi1Y.atlasv1.YE7RBqu6VVyQIOq9a1eC3YFU5Elt7ToIr6OwzKAWlCTQ7N4gElXaWou6aPpOIwGCoc0", "line_num": 1, "path": "./tests/samples/hashicorp", - "info": "./tests/samples/hashicorp|RAW", + "info": "FILE|RAW", "value": "Z28P3STmkBQi1Y.atlasv1.YE7RBqu6VVyQIOq9a1eC3YFU5Elt7ToIr6OwzKAWlCTQ7N4gElXaWou6aPpOIwGCoc0", "value_start": 0, "value_end": 90, @@ -7821,7 +7821,7 @@ "line": "hvs.atlasv1-Z28P3STmkBQi1Y-YE7RBqu6VVyQIOq9a1eC3YFU5Elt7ToIr6OwzKAWlCTQ7N4gElXaWou6aPpOIwGCoc0", "line_num": 2, "path": "./tests/samples/hashicorp", - "info": "./tests/samples/hashicorp|RAW", + "info": "FILE|RAW", "value": "hvs.atlasv1-Z28P3STmkBQi1Y-YE7RBqu6VVyQIOq9a1eC3YFU5Elt7ToIr6OwzKAWlCTQ7N4gElXaWou6aPpOIwGCoc0", "value_start": 0, "value_end": 94, @@ -7846,7 +7846,7 @@ "line": "HerOkUa04b8c1d-A147-b252-3b6a8f9c2b16", "line_num": 1, "path": "./tests/samples/heroku_api.toml", - "info": "./tests/samples/heroku_api.toml|RAW", + "info": "FILE|RAW", "value": "HerOkUa04b8c1d-A147-b252-3b6a8f9c2b16", "value_start": 0, "value_end": 37, @@ -7871,7 +7871,7 @@ "line": "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", "line_num": 1, "path": "./tests/samples/huggingface", - "info": "./tests/samples/huggingface|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 37, @@ -7896,7 +7896,7 @@ "line": "url/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/part", "line_num": 2, "path": "./tests/samples/huggingface", - "info": "./tests/samples/huggingface|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 4, "value_end": 41, @@ -7921,7 +7921,7 @@ "line": "hf_UdYjVqYvybBLEhIrwwEUYjOgkeyexample", "line_num": 6, "path": "./tests/samples/huggingface", - "info": "./tests/samples/huggingface|RAW", + "info": "FILE|RAW", "value": "hf_UdYjVqYvybBLEhIrwwEUYjOgkeyexample", "value_start": 0, "value_end": 37, @@ -7946,7 +7946,7 @@ "line": "IGQVJWS3pUNmZA2MUJDVlRwLW9ac1lrU05nZAmpzWHQtWHFJSEFRMF9tWVpRdEd70HQ5Wk8wSnY0R0VEQnVQdUU0MnpxNWxocUYyNmZAXSTUtVVNrMmh1ZAHZAQQno2ZA0VHR0lLWkk1N1R5RDFvM0dmVEpIYQZGZX", "line_num": 1, "path": "./tests/samples/instagram_access_token", - "info": "./tests/samples/instagram_access_token|RAW", + "info": "FILE|RAW", "value": "IGQVJWS3pUNmZA2MUJDVlRwLW9ac1lrU05nZAmpzWHQtWHFJSEFRMF9tWVpRdEd70HQ5Wk8wSnY0R0VEQnVQdUU0MnpxNWxocUYyNmZAXSTUtVVNrMmh1ZAHZAQQno2ZA0VHR0lLWkk1N1R5RDFvM0dmVEpIYQZGZX", "value_start": 0, "value_end": 162, @@ -7971,7 +7971,7 @@ "line": "+ \"password\": \"dkajco1\"", "line_num": 10, "path": "./tests/samples/iso_ir_111.patch", - "info": "./tests/samples/iso_ir_111.patch|RAW", + "info": "FILE|RAW", "value": "dkajco1", "value_start": 16, "value_end": 23, @@ -7996,7 +7996,7 @@ "line": "cmVmdGtuOjAxOjAxMjM0NTY3ODk6QWJjZGVmR2hpamtsbW5vUHFyc3R1dnd4eXow", "line_num": 1, "path": "./tests/samples/jfrog_p", - "info": "./tests/samples/jfrog_p|RAW", + "info": "FILE|RAW", "value": "cmVmdGtuOjAxOjAxMjM0NTY3ODk6QWJjZGVmR2hpamtsbW5vUHFyc3R1dnd4eXow", "value_start": 0, "value_end": 64, @@ -8021,7 +8021,7 @@ "line": "AKCp2UNCd8uK7hQoxZnFE4PGtRHnAcBHr43HgLcj7nJmWb4JhVUqBwa2iwXszftnogpo2EVFa", "line_num": 2, "path": "./tests/samples/jfrog_p", - "info": "./tests/samples/jfrog_p|RAW", + "info": "FILE|RAW", "value": "AKCp2UNCd8uK7hQoxZnFE4PGtRHnAcBHr43HgLcj7nJmWb4JhVUqBwa2iwXszftnogpo2EVFa", "value_start": 0, "value_end": 73, @@ -8046,7 +8046,7 @@ "line": "WXFES7QNTET5DQYC", "line_num": 1, "path": "./tests/samples/jira_2fa", - "info": "./tests/samples/jira_2fa|RAW", + "info": "FILE|RAW", "value": "WXFES7QNTET5DQYC", "value_start": 0, "value_end": 16, @@ -8071,7 +8071,7 @@ "line": "TP: https://www.example.com/api/verification/version2322/token/OTI2NjA3NjU1NTI2Oh2DOnASdOHoIhEGyqIuYrdkYaQZ", "line_num": 1, "path": "./tests/samples/jira_confluence_pat", - "info": "./tests/samples/jira_confluence_pat|RAW", + "info": "FILE|RAW", "value": "OTI2NjA3NjU1NTI2Oh2DOnASdOHoIhEGyqIuYrdkYaQZ", "value_start": 63, "value_end": 107, @@ -8096,7 +8096,7 @@ "line": "TP: \"image/png\": \"iVBORx09VIskhxhCe7sh03R1dnENPiB66xQSIZjEYN13vafX/OTI2NjA3NjU1NTI2Oh2DOnASdOHoIhEGyqIuYrdkYaQZ/hZwUteHsmN+z+aoEAAAAvL+Q5FSQGyqIuYrdkYaQZuW1TvI=\\n\",", "line_num": 2, "path": "./tests/samples/jira_confluence_pat", - "info": "./tests/samples/jira_confluence_pat|RAW", + "info": "FILE|RAW", "value": "OTI2NjA3NjU1NTI2Oh2DOnASdOHoIhEGyqIuYrdkYaQZ", "value_start": 67, "value_end": 111, @@ -8121,7 +8121,7 @@ "line": "detected: eyJhbGciOiJSUzI1NiJ9Cg.eyJleHAiOjY1NTM2fQo.Ce7sh0ENPiBlE_dose0cBA", "line_num": 1, "path": "./tests/samples/json_web_token", - "info": "./tests/samples/json_web_token|RAW", + "info": "FILE|RAW", "value": "eyJhbGciOiJSUzI1NiJ9Cg.eyJleHAiOjY1NTM2fQo.Ce7sh0ENPiBlE_dose0cBA", "value_start": 10, "value_end": 75, @@ -8146,7 +8146,7 @@ "line": "prKeyValid=LS0tLS1CRUdJTiBQUklWQVRFIENDcUdTTTQ5QXdFSEJHMHdhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJBTkNBQVNnRlRLandKQUFVOTVnKysvdnpLV0hrekFWbU5NSQp0QjV2VGpaT09Jd25FYjcwTXNXWkZJeVVGRDFQOUd3c3R6NCtha0hYN3ZJOEJINmhIbUJtZmVRbAotLS0tLUVORCBQUklWJNR0J5cUdTTTQ5QW5aUHhmQXl4cUUKWlYwNdFR0QVRFIEtFWS0tLS0tCgtFWS0tLS0tCk1JR0hBZ0VBTU==", "line_num": 1, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "LS0tLS1CRUdJTiBQUklWQVRFIENDcUdTTTQ5QXdFSEJHMHdhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJBTkNBQVNnRlRLandKQUFVOTVnKysvdnpLV0hrekFWbU5NSQp0QjV2VGpaT09Jd25FYjcwTXNXWkZJeVVGRDFQOUd3c3R6NCtha0hYN3ZJOEJINmhIbUJtZmVRbAotLS0tLUVORCBQUklWJNR0J5cUdTTTQ5QW5aUHhmQXl4cUUKWlYwNdFR0QVRFIEtFWS0tLS0tCgtFWS0tLS0tCk1JR0hBZ0VBTU==", "value_start": 11, "value_end": 335, @@ -8171,7 +8171,7 @@ "line": "secret_looks_like_linux_path_1=\"/VnpmUGWxhQW9KQAwrL2ZYdDJPNG1PQjYxMXNPaF\"", "line_num": 2, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "/VnpmUGWxhQW9KQAwrL2ZYdDJPNG1PQjYxMXNPaF", "value_start": 32, "value_end": 72, @@ -8196,7 +8196,7 @@ "line": "secret_looks_like_linux_path_2=\"VnpmUGWxhQW/9KQAwrL2ZYd/DJPNG1PQjYxMXNPF\"", "line_num": 3, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "VnpmUGWxhQW/9KQAwrL2ZYd/DJPNG1PQjYxMXNPF", "value_start": 32, "value_end": 72, @@ -8221,7 +8221,7 @@ "line": "secret_looks_like_linux_path_3=\"VnpmUGWxhQW/9KQAwrL2ZYdDJPNG1PQjYxMXNPF=\"", "line_num": 4, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "VnpmUGWxhQW/9KQAwrL2ZYdDJPNG1PQjYxMXNPF=", "value_start": 32, "value_end": 72, @@ -8246,7 +8246,7 @@ "line": "secret_looks_like_linux_path__=\"VnpmUGWxhQW/9KQAwrL2ZYd/DJPNG1PQjEXAMbLE\"", "line_num": 5, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "VnpmUGWxhQW/9KQAwrL2ZYd/DJPNG1PQjEXAMbLE", "value_start": 32, "value_end": 72, @@ -8271,7 +8271,7 @@ "line": "\"https://example.com/api/js?key=dhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJB&bug=true\"", "line_num": 7, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "dhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJB", "value_start": 32, "value_end": 87, @@ -8296,7 +8296,7 @@ "line": "$key = 'gmUGWxhQW9KQWdhd0lCQVFRZ0ViVnpwrLzZYdDJPNG1PQjYxMXNPaFJ1", "line_num": 1, "path": "./tests/samples/key.php", - "info": "./tests/samples/key.php|RAW", + "info": "FILE|RAW", "value": "gmUGWxhQW9KQWdhd0lCQVFRZ0ViVnpwrLzZYdDJPNG1PQjYxMXNPaFJ1", "value_start": 8, "value_end": 64, @@ -8321,7 +8321,7 @@ "line": "api_key = \"QMEFk2TZGlkGcOkG-R9UwV1ZmlNkWEYvQzF\"", "line_num": 1, "path": "./tests/samples/key_value.json", - "info": "./tests/samples/key_value.json|STRUCT|KEY_VALUE:`api_key = \"QMEFk2TZGlkGcOkG-R9UwV1ZmlNkWEYvQzF\"`", + "info": "FILE|STRUCT|KEY_VALUE:`api_key = \"QMEFk2TZGlkGcOkG-R9UwV1ZmlNkWEYvQzF\"`", "value": "QMEFk2TZGlkGcOkG-R9UwV1ZmlNkWEYvQzF", "value_start": 11, "value_end": 46, @@ -8346,7 +8346,7 @@ "line": "api_key = \"QMEFk2TZGlkGcOkG-R9UwV1ZmlNkWEYvQzF\"", "line_num": 1, "path": "./tests/samples/key_value.json", - "info": "./tests/samples/key_value.json|STRUCT|KEY_VALUE:`api_key = \"QMEFk2TZGlkGcOkG-R9UwV1ZmlNkWEYvQzF\"`", + "info": "FILE|STRUCT|KEY_VALUE:`api_key = \"QMEFk2TZGlkGcOkG-R9UwV1ZmlNkWEYvQzF\"`", "value": "QMEFk2TZGlkGcOkG-R9UwV1ZmlNkWEYvQzF", "value_start": 11, "value_end": 46, @@ -8371,7 +8371,7 @@ "line": "mailchimp = \"LRINSm5Vdi9BMCzCWSJ8M3TMysUHwDzB-us36\"", "line_num": 1, "path": "./tests/samples/mailchimp_key", - "info": "./tests/samples/mailchimp_key|RAW", + "info": "FILE|RAW", "value": "LRINSm5Vdi9BMCzCWSJ8M3TMysUHwDzB-us36", "value_start": 13, "value_end": 50, @@ -8396,7 +8396,7 @@ "line": "key-01tFV84CdKU95USNy977sDU0FoTkqXyQ", "line_num": 1, "path": "./tests/samples/mailgun_key.hs", - "info": "./tests/samples/mailgun_key.hs|RAW", + "info": "FILE|RAW", "value": "key-01tFV84CdKU95USNy977sDU0FoTkqXyQ", "value_start": 0, "value_end": 36, @@ -8421,7 +8421,7 @@ "line": "+ clid = \"AKIAQWADE5R42RDZ4JEM\"", "line_num": 45, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "AKIAQWADE5R42RDZ4JEM", "value_start": 11, "value_end": 31, @@ -8446,7 +8446,7 @@ "line": "+ clid = \"AKIAQWADE5R42RDZ4JEM\"", "line_num": 45, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "AKIAQWADE5R42RDZ4JEM", "value_start": 11, "value_end": 31, @@ -8463,7 +8463,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 46, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -8488,7 +8488,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 46, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -8513,7 +8513,7 @@ "line": "+ clid = \"AKIAQWADE5R42RDZ4JEM\"", "line_num": 8, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "AKIAQWADE5R42RDZ4JEM", "value_start": 11, "value_end": 31, @@ -8538,7 +8538,7 @@ "line": "+ clid = \"AKIAQWADE5R42RDZ4JEM\"", "line_num": 8, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "AKIAQWADE5R42RDZ4JEM", "value_start": 11, "value_end": 31, @@ -8555,7 +8555,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 9, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -8580,7 +8580,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 9, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -8605,7 +8605,7 @@ "line": "key_multi = \"KJHfdjs8767gr54534wsFHGf5hJKhK\nU7yguyuyFHGf5==\"; ", "line_num": 1, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|STRUCT|STRUCT:3|KEYWORD:`key_multi = \"KJHfdjs8767gr54534wsFHGf5hJKhK\nU7yguyuyFHGf5==\"; `", + "info": "FILE|STRUCT|STRUCT:3|KEYWORD:`key_multi = \"KJHfdjs8767gr54534wsFHGf5hJKhK\nU7yguyuyFHGf5==\"; `", "value": "KJHfdjs8767gr54534wsFHGf5hJKhK\nU7yguyuyFHGf5==", "value_start": 13, "value_end": 59, @@ -8630,7 +8630,7 @@ "line": "key_wrap = \"KJHhJKhKU7yguyuyfrtsdESffhjgkhYTfdjs8Gf5jlli==\"; ", "line_num": 1, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|STRUCT|STRUCT:2|KEYWORD:`key_wrap = \"KJHhJKhKU7yguyuyfrtsdESffhjgkhYTfdjs8Gf5jlli==\"; `", + "info": "FILE|STRUCT|STRUCT:2|KEYWORD:`key_wrap = \"KJHhJKhKU7yguyuyfrtsdESffhjgkhYTfdjs8Gf5jlli==\"; `", "value": "KJHhJKhKU7yguyuyfrtsdESffhjgkhYTfdjs8Gf5jlli==", "value_start": 12, "value_end": 58, @@ -8655,7 +8655,7 @@ "line": "nonce = \"bsfcvir57nt40rydvtbhs8lzbgljmet5\"; ", "line_num": 1, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|STRUCT|STRUCT:0|KEYWORD:`nonce = \"bsfcvir57nt40rydvtbhs8lzbgljmet5\"; `", + "info": "FILE|STRUCT|STRUCT:0|KEYWORD:`nonce = \"bsfcvir57nt40rydvtbhs8lzbgljmet5\"; `", "value": "bsfcvir57nt40rydvtbhs8lzbgljmet5", "value_start": 9, "value_end": 41, @@ -8680,7 +8680,7 @@ "line": "password: F1lT3ReDw17hQoT3s", "line_num": 2, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|STRUCT|STRUCT:1|STRING:secure_yaml|RAW", + "info": "FILE|STRUCT|STRUCT:1|STRING:secure_yaml|RAW", "value": "F1lT3ReDw17hQoT3s", "value_start": 10, "value_end": 27, @@ -8705,7 +8705,7 @@ "line": "key_wrap = 'KJHhJKhKU7yguyuyfrtsdESffhjgkhYT\\", "line_num": 7, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|RAW", + "info": "FILE|RAW", "value": "KJHhJKhKU7yguyuyfrtsdESffhjgkhYT", "value_start": 12, "value_end": 44, @@ -8730,7 +8730,7 @@ "line": "key_multi = '''KJHfdjs8767gr54534wsFHGf5hJKhK", "line_num": 11, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|RAW", + "info": "FILE|RAW", "value": "KJHfdjs8767gr54534wsFHGf5hJKhK", "value_start": 15, "value_end": 45, @@ -8755,7 +8755,7 @@ "line": "k = 'oy2mlf2v7jl2firuegfqwzc4zxyebz3ethzd14g4hw4iam'", "line_num": 1, "path": "./tests/samples/nuget_api_key", - "info": "./tests/samples/nuget_api_key|RAW", + "info": "FILE|RAW", "value": "oy2mlf2v7jl2firuegfqwzc4zxyebz3ethzd14g4hw4iam", "value_start": 5, "value_end": 51, @@ -8780,7 +8780,7 @@ "line": "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", "line_num": 2, "path": "./tests/samples/open_ai_token", - "info": "./tests/samples/open_ai_token|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 51, @@ -8805,7 +8805,7 @@ "line": "sk-proj-qa25MV9c7Qu0EjDIEWdcT3BlbkFJ83uCF0K4yw7RzpY39bio", "line_num": 3, "path": "./tests/samples/open_ai_token", - "info": "./tests/samples/open_ai_token|RAW", + "info": "FILE|RAW", "value": "sk-proj-qa25MV9c7Qu0EjDIEWdcT3BlbkFJ83uCF0K4yw7RzpY39bio", "value_start": 0, "value_end": 56, @@ -8830,7 +8830,7 @@ "line": "gi_reo_gi_passwd = \"cAc48k1Zd7\"; password_confirmation = \"cAc48k1Zd7\";", "line_num": 1, "path": "./tests/samples/passwd.groovy", - "info": "./tests/samples/passwd.groovy|RAW", + "info": "FILE|RAW", "value": "cAc48k1Zd7", "value_start": 20, "value_end": 30, @@ -8855,7 +8855,7 @@ "line": "gi_reo_gi_passwd = \"cAc48k1Zd7\"; password_confirmation = \"cAc48k1Zd7\";", "line_num": 1, "path": "./tests/samples/passwd.groovy", - "info": "./tests/samples/passwd.groovy|RAW", + "info": "FILE|RAW", "value": "cAc48k1Zd7", "value_start": 58, "value_end": 68, @@ -8880,7 +8880,7 @@ "line": "password = \"cackle!\"; ", "line_num": 1, "path": "./tests/samples/password.gradle", - "info": "./tests/samples/password.gradle|STRUCT|STRUCT:0|KEYWORD:`password = \"cackle!\"; `", + "info": "FILE|STRUCT|STRUCT:0|KEYWORD:`password = \"cackle!\"; `", "value": "cackle!", "value_start": 12, "value_end": 19, @@ -8905,7 +8905,7 @@ "line": "+ \"password\": \"dkajco1\"", "line_num": 9, "path": "./tests/samples/password.patch", - "info": "./tests/samples/password.patch|RAW", + "info": "FILE|RAW", "value": "dkajco1", "value_start": 16, "value_end": 23, @@ -8930,7 +8930,7 @@ "line": "password = \"MYPSWRD!@#$%^&*\"", "line_num": 1, "path": "./tests/samples/password.tfvars", - "info": "./tests/samples/password.tfvars|RAW", + "info": "FILE|RAW", "value": "MYPSWRD!@#$%^&*", "value_start": 12, "value_end": 27, @@ -8955,7 +8955,7 @@ "line": "my_pw: nCzx8A8#!", "line_num": 2, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "nCzx8A8#!", "value_start": 7, "value_end": 16, @@ -8980,7 +8980,7 @@ "line": "val password: String = \"exord13Paw64\", // scala", "line_num": 3, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "exord13Paw64", "value_start": 24, "value_end": 36, @@ -9005,7 +9005,7 @@ "line": "if passworsd == \"q4c1a2oPd\": # __eq__ separator", "line_num": 5, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "q4c1a2oPd", "value_start": 17, "value_end": 26, @@ -9030,7 +9030,7 @@ "line": "if passworsd != \"x6s7djtEa\": # __ne__ separator", "line_num": 6, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "x6s7djtEa", "value_start": 17, "value_end": 26, @@ -9055,7 +9055,7 @@ "line": "password=2bkJgtJDiLcq1t", "line_num": 7, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "2bkJgtJDiLcq1t", "value_start": 9, "value_end": 23, @@ -9080,7 +9080,7 @@ "line": "RUN openssl x509 -req -days 365 -passin \"pass:nCzx8A8#!\" -sha256 -in server.csr -CA ca.pem -CAkey ca-key", "line_num": 8, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "nCzx8A8#!", "value_start": 46, "value_end": 55, @@ -9105,7 +9105,7 @@ "line": "RUN openssl x509 -req -days 365 -passin \"pass:nCzx8A8#!\" -sha256 -in server.csr -CA ca.pem -CAkey ca-key", "line_num": 8, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "nCzx8A8#!", "value_start": 46, "value_end": 55, @@ -9130,7 +9130,7 @@ "line": "MYSQL_DATABASE_USER=CRED;MYSQL_DATABASE_PASSWORD=2IWJD88FH4Y;", "line_num": 12, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "2IWJD88FH4Y", "value_start": 49, "value_end": 60, @@ -9155,7 +9155,7 @@ "line": "+ \"password\": \"dkajco1\"", "line_num": 10, "path": "./tests/samples/password_utf16.patch", - "info": "./tests/samples/password_utf16.patch|RAW", + "info": "FILE|RAW", "value": "dkajco1", "value_start": 16, "value_end": 23, @@ -9180,7 +9180,7 @@ "line": "+ \"password\": \"dkajc\u00f61\"", "line_num": 9, "path": "./tests/samples/password_western.patch", - "info": "./tests/samples/password_western.patch|RAW", + "info": "FILE|RAW", "value": "dkajc\u00f61", "value_start": 16, "value_end": 23, @@ -9205,7 +9205,7 @@ "line": "password = \"cackle_!\"", "line_num": 1, "path": "./tests/samples/passwords.tar", - "info": "./tests/samples/passwords.tar.bz2|BZIP2|./tests/samples/passwords.tar|TAR|./password|RAW", + "info": "FILE|BZIP2:./tests/samples/passwords.tar|TAR:./password|RAW", "value": "cackle_!", "value_start": 12, "value_end": 20, @@ -9230,7 +9230,7 @@ "line": "password = \"cackle_1!\"", "line_num": 1, "path": "./tests/samples/passwords.tar", - "info": "./tests/samples/passwords.tar.bz2|BZIP2|./tests/samples/passwords.tar|TAR|./1/password|RAW", + "info": "FILE|BZIP2:./tests/samples/passwords.tar|TAR:./1/password|RAW", "value": "cackle_1!", "value_start": 12, "value_end": 21, @@ -9255,7 +9255,7 @@ "line": "password = \"cackle_2!\"", "line_num": 1, "path": "./tests/samples/passwords.tar", - "info": "./tests/samples/passwords.tar.bz2|BZIP2|./tests/samples/passwords.tar|TAR|./1/2/password|RAW", + "info": "FILE|BZIP2:./tests/samples/passwords.tar|TAR:./1/2/password|RAW", "value": "cackle_2!", "value_start": 12, "value_end": 21, @@ -9280,7 +9280,7 @@ "line": "access_token$production$gireogi121451781$abcaeaabadef01134517891121451781", "line_num": 1, "path": "./tests/samples/paypal_key", - "info": "./tests/samples/paypal_key|RAW", + "info": "FILE|RAW", "value": "access_token$production$gireogi121451781$abcaeaabadef01134517891121451781", "value_start": 0, "value_end": 73, @@ -9305,7 +9305,7 @@ "line": "-----BEGIN RSA PRIVATE KEY-----", "line_num": 1, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "-----BEGIN RSA PRIVATE KEY-----", "value_start": 0, "value_end": 31, @@ -9322,7 +9322,7 @@ "line": "MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp", "line_num": 2, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp", "value_start": 0, "value_end": 76, @@ -9339,7 +9339,7 @@ "line": "wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5", "line_num": 3, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5", "value_start": 0, "value_end": 76, @@ -9356,7 +9356,7 @@ "line": "1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh", "line_num": 4, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh", "value_start": 0, "value_end": 76, @@ -9373,7 +9373,7 @@ "line": "3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2", "line_num": 5, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2", "value_start": 0, "value_end": 76, @@ -9390,7 +9390,7 @@ "line": "pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX", "line_num": 6, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX", "value_start": 0, "value_end": 76, @@ -9407,7 +9407,7 @@ "line": "GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il", "line_num": 7, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il", "value_start": 0, "value_end": 76, @@ -9424,7 +9424,7 @@ "line": "AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF", "line_num": 8, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF", "value_start": 0, "value_end": 76, @@ -9441,7 +9441,7 @@ "line": "L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k", "line_num": 9, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k", "value_start": 0, "value_end": 76, @@ -9458,7 +9458,7 @@ "line": "X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl", "line_num": 10, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl", "value_start": 0, "value_end": 76, @@ -9475,7 +9475,7 @@ "line": "U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ", "line_num": 11, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ", "value_start": 0, "value_end": 76, @@ -9492,7 +9492,7 @@ "line": "37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=", "line_num": 12, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=", "value_start": 0, "value_end": 52, @@ -9509,7 +9509,7 @@ "line": "-----END RSA PRIVATE KEY-----", "line_num": 13, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.bz2|BZIP2|./tests/samples/pem_key|RAW", + "info": "FILE|BZIP2:./tests/samples/pem_key|RAW", "value": "-----END RSA PRIVATE KEY-----", "value_start": 0, "value_end": 29, @@ -9534,7 +9534,7 @@ "line": "-----BEGIN RSA PRIVATE KEY-----", "line_num": 1, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "-----BEGIN RSA PRIVATE KEY-----", "value_start": 0, "value_end": 31, @@ -9551,7 +9551,7 @@ "line": "MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp", "line_num": 2, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp", "value_start": 0, "value_end": 76, @@ -9568,7 +9568,7 @@ "line": "wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5", "line_num": 3, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5", "value_start": 0, "value_end": 76, @@ -9585,7 +9585,7 @@ "line": "1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh", "line_num": 4, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh", "value_start": 0, "value_end": 76, @@ -9602,7 +9602,7 @@ "line": "3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2", "line_num": 5, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2", "value_start": 0, "value_end": 76, @@ -9619,7 +9619,7 @@ "line": "pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX", "line_num": 6, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX", "value_start": 0, "value_end": 76, @@ -9636,7 +9636,7 @@ "line": "GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il", "line_num": 7, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il", "value_start": 0, "value_end": 76, @@ -9653,7 +9653,7 @@ "line": "AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF", "line_num": 8, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF", "value_start": 0, "value_end": 76, @@ -9670,7 +9670,7 @@ "line": "L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k", "line_num": 9, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k", "value_start": 0, "value_end": 76, @@ -9687,7 +9687,7 @@ "line": "X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl", "line_num": 10, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl", "value_start": 0, "value_end": 76, @@ -9704,7 +9704,7 @@ "line": "U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ", "line_num": 11, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ", "value_start": 0, "value_end": 76, @@ -9721,7 +9721,7 @@ "line": "37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=", "line_num": 12, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=", "value_start": 0, "value_end": 52, @@ -9738,7 +9738,7 @@ "line": "-----END RSA PRIVATE KEY-----", "line_num": 13, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key.gz|GZIP|./tests/samples/pem_key|RAW", + "info": "FILE|GZIP:./tests/samples/pem_key|RAW", "value": "-----END RSA PRIVATE KEY-----", "value_start": 0, "value_end": 29, @@ -9763,7 +9763,7 @@ "line": "str value = \"-----BEGIN RSA PRIVATE KEY-----\\n\" +", "line_num": 2, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "-----BEGIN RSA PRIVATE KEY-----", "value_start": 13, "value_end": 44, @@ -9780,7 +9780,7 @@ "line": "\"MIICXQIBAAKBgQDwcEN7vZygGg6DvPpsw17hRD6S5N8+huaqs1JGXQfPhbvLTUsHdzGLVNQ/Z0wQVGdPiaJDflqhcT1IH8BLD4SHn+ \\n\"", "line_num": 3, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "MIICXQIBAAKBgQDwcEN7vZygGg6DvPpsw17hRD6S5N8+huaqs1JGXQfPhbvLTUsHdzGLVNQ/Z0wQVGdPiaJDflqhcT1IH8BLD4SHn+", "value_start": 1, "value_end": 103, @@ -9797,7 +9797,7 @@ "line": "\t+ \"WuRIzX77P7oVKM2CoTA6VzT6s/bvr7HxFLl4NhohfyDsV0YCDc4I6EHGWMCUHZb0IWxzEGRWD3jbG8KAZUsQIDAQABAoGAOD7a2o\\r \\n\"", "line_num": 4, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "WuRIzX77P7oVKM2CoTA6VzT6s/bvr7HxFLl4NhohfyDsV0YCDc4I6EHGWMCUHZb0IWxzEGRWD3jbG8KAZUsQIDAQABAoGAOD7a2o", "value_start": 4, "value_end": 104, @@ -9814,7 +9814,7 @@ "line": "\" CRujY+PP0hS/4sHOBdDvnxa2wdW8NVNNagdCBhvP5Y1edBNMnkWOyuM4e7HzUgO0+8ndWis1OSJTz9EFTyHJm6GOn+/JR62NWNr \"", "line_num": 5, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "CRujY+PP0hS/4sHOBdDvnxa2wdW8NVNNagdCBhvP5Y1edBNMnkWOyuM4e7HzUgO0+8ndWis1OSJTz9EFTyHJm6GOn+/JR62NWNr", "value_start": 3, "value_end": 102, @@ -9831,7 +9831,7 @@ "line": "\t\t\"9lfCb8cWq0eoOk3UUO9P+1nZNHjE/iDhuTi3x/5naW4SzdkZfxHo/NMI6i5w1ZnQ60CQQD9d0G9gBy6lPhC \\\\", "line_num": 6, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "9lfCb8cWq0eoOk3UUO9P+1nZNHjE/iDhuTi3x/5naW4SzdkZfxHo/NMI6i5w1ZnQ60CQQD9d0G9gBy6lPhC", "value_start": 3, "value_end": 86, @@ -9848,7 +9848,7 @@ "line": "\"\"\" mbHzYovVjSnyfzUtyWPNSrXNiUCR5vu2f6eCgSVzFZ0oHAv8nLaYnXrhyT25lwzNK5OhR/oPAkEA8tep3NmfxV \"\"\" +", "line_num": 7, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "mbHzYovVjSnyfzUtyWPNSrXNiUCR5vu2f6eCgSVzFZ0oHAv8nLaYnXrhyT25lwzNK5OhR/oPAkEA8tep3NmfxV", "value_start": 4, "value_end": 90, @@ -9865,7 +9865,7 @@ "line": "QSBfKGfotblIG709xxfd6vHfDS0eZuTFUxkZDcayZDhMDjTMZxP8rokSbMaOSqUseUeYhx5TqFPwJAAhC0smyWz1ZjZ3eFIayN4yGRU+6B\\r\\n", "line_num": 8, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "QSBfKGfotblIG709xxfd6vHfDS0eZuTFUxkZDcayZDhMDjTMZxP8rokSbMaOSqUseUeYhx5TqFPwJAAhC0smyWz1ZjZ3eFIayN4yGRU+6B", "value_start": 0, "value_end": 106, @@ -9882,7 +9882,7 @@ "line": "\"amwXqhaPwKr7obS2HFiR7thKi9ODQk5oMpi8TCYMWEahgB+g9RMD0u6ZNQJBAMla\\\\\\\\nUJmySGuRnbAYu7PJURH90AOG0QOQ1Jp6yBMKgYIB\\\\", "line_num": 9, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "amwXqhaPwKr7obS2HFiR7thKi9ODQk5oMpi8TCYMWEahgB+g9RMD0u6ZNQJBAMla\\\\\\\\nUJmySGuRnbAYu7PJURH90AOG0QOQ1Jp6yBMKgYIB", "value_start": 1, "value_end": 110, @@ -9899,7 +9899,7 @@ "line": "Uaxk9J5Th8BXPyC1mclPMS7J\\\\\\\\ngMuobiFdIpryq51pvHkCQQDInvDaKI24Ho+cj6SCKnEO4kbjh/yx1XGwNmY0ld1i\\\\r5micHFiMI7/IcVZ4\\n", "line_num": 10, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "Uaxk9J5Th8BXPyC1mclPMS7J", "value_start": 0, "value_end": 24, @@ -9916,7 +9916,7 @@ "line": "2cl1OwdGjRdmO1LT6P1cl8UYIj/S\\n-----END RSA PRIVATE KEY-----\"\"\";", "line_num": 11, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "2cl1OwdGjRdmO1LT6P1cl8UYIj/S\\n-----END RSA PRIVATE KEY-----", "value_start": 0, "value_end": 59, @@ -9941,7 +9941,7 @@ "line": "char pk[] = \"\\\\n-----BEGIN EC PRIVATE KEY-----\\nMHcCAQEEID4VC4s0b2n3yvypHb2GO9prFUctYt\\r\\r\\n\\nHmGCMvpxkpexbHoAoGCCqGSM49\\\\\\\\\\nAwEHoUQDQgAE2GwUUuO9/dKl51bOryWzHF8wTSezSqdRIucGhDRsmDITLcNEZw3V\\\\\\\\rIaQP59Ufkz8NIkLeIAa1HZGZxCVMQ907FA==\\\\n-----END EC PRIVATE KEY-----\\n\";", "line_num": 14, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "-----BEGIN EC PRIVATE KEY-----\\nMHcCAQEEID4VC4s0b2n3yvypHb2GO9prFUctYt\\r\\r\\n\\nHmGCMvpxkpexbHoAoGCCqGSM49\\\\\\\\\\nAwEHoUQDQgAE2GwUUuO9/dKl51bOryWzHF8wTSezSqdRIucGhDRsmDITLcNEZw3V\\\\\\\\rIaQP59Ufkz8NIkLeIAa1HZGZxCVMQ907FA==\\\\n-----END EC PRIVATE KEY-----", "value_start": 16, "value_end": 262, @@ -9966,7 +9966,7 @@ "line": "-----BEGIN OPENSSH LOW ENTROPY PRIVATE KEY-----", "line_num": 27, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "-----BEGIN OPENSSH LOW ENTROPY PRIVATE KEY-----", "value_start": 0, "value_end": 47, @@ -9983,7 +9983,7 @@ "line": "12345678901231278634987284736283548102438723941563428762374129402103402394932746672734543664375t7323341253845186253784==", "line_num": 28, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "12345678901231278634987284736283548102438723941563428762374129402103402394932746672734543664375t7323341253845186253784==", "value_start": 0, "value_end": 120, @@ -10000,7 +10000,7 @@ "line": "-----END LOW ENTROPY PRIVATE KEY-----", "line_num": 29, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "-----END LOW ENTROPY PRIVATE KEY-----", "value_start": 0, "value_end": 37, @@ -10025,7 +10025,7 @@ "line": "-----BEGIN RSA PRIVATE KEY-----", "line_num": 1, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "-----BEGIN RSA PRIVATE KEY-----", "value_start": 0, "value_end": 31, @@ -10042,7 +10042,7 @@ "line": "MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp", "line_num": 2, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp", "value_start": 0, "value_end": 76, @@ -10059,7 +10059,7 @@ "line": "wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5", "line_num": 3, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5", "value_start": 0, "value_end": 76, @@ -10076,7 +10076,7 @@ "line": "1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh", "line_num": 4, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh", "value_start": 0, "value_end": 76, @@ -10093,7 +10093,7 @@ "line": "3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2", "line_num": 5, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2", "value_start": 0, "value_end": 76, @@ -10110,7 +10110,7 @@ "line": "pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX", "line_num": 6, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX", "value_start": 0, "value_end": 76, @@ -10127,7 +10127,7 @@ "line": "GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il", "line_num": 7, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il", "value_start": 0, "value_end": 76, @@ -10144,7 +10144,7 @@ "line": "AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF", "line_num": 8, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF", "value_start": 0, "value_end": 76, @@ -10161,7 +10161,7 @@ "line": "L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k", "line_num": 9, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k", "value_start": 0, "value_end": 76, @@ -10178,7 +10178,7 @@ "line": "X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl", "line_num": 10, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl", "value_start": 0, "value_end": 76, @@ -10195,7 +10195,7 @@ "line": "U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ", "line_num": 11, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ", "value_start": 0, "value_end": 76, @@ -10212,7 +10212,7 @@ "line": "37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=", "line_num": 12, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=", "value_start": 0, "value_end": 52, @@ -10229,7 +10229,7 @@ "line": "-----END RSA PRIVATE KEY-----", "line_num": 13, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|cred/pem_key.zip|ZIP|key.pem|RAW", + "info": "FILE|ZIP:cred/pem_key.zip|ZIP:key.pem|RAW", "value": "-----END RSA PRIVATE KEY-----", "value_start": 0, "value_end": 29, @@ -10254,7 +10254,7 @@ "line": "access_token$production$gireogi121451781$abcaeaabadef01134517891121451781", "line_num": 1, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|.git/paypal_key|RAW", + "info": "FILE|ZIP:.git/paypal_key|RAW", "value": "access_token$production$gireogi121451781$abcaeaabadef01134517891121451781", "value_start": 0, "value_end": 73, @@ -10279,7 +10279,7 @@ "line": "cmVmdGtuOjAxOjAxMjM0NTY3ODk6QWJjZGVmR2hpamtsbW5vUHFyc3R1dnd4eXow", "line_num": 1, "path": "./tests/samples/pem_key.apk", - "info": "./tests/samples/pem_key.apk|ZIP|3.zip|ZIP|2.zip|ZIP|2|RAW", + "info": "FILE|ZIP:3.zip|ZIP:2.zip|ZIP:2|RAW", "value": "cmVmdGtuOjAxOjAxMjM0NTY3ODk6QWJjZGVmR2hpamtsbW5vUHFyc3R1dnd4eXow", "value_start": 0, "value_end": 64, @@ -10304,7 +10304,7 @@ "line": "-----BEGIN RSA PRIVATE KEY-----", "line_num": 1, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "-----BEGIN RSA PRIVATE KEY-----", "value_start": 0, "value_end": 31, @@ -10321,7 +10321,7 @@ "line": "MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp", "line_num": 2, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "MIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ/DgYSF6vUp", "value_start": 0, "value_end": 76, @@ -10338,7 +10338,7 @@ "line": "wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5", "line_num": 3, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "wmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1/3j+skZ6UtW+5u09lHNsj6tQ5", "value_start": 0, "value_end": 76, @@ -10355,7 +10355,7 @@ "line": "1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh", "line_num": 4, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh", "value_start": 0, "value_end": 76, @@ -10372,7 +10372,7 @@ "line": "3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2", "line_num": 5, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2", "value_start": 0, "value_end": 76, @@ -10389,7 +10389,7 @@ "line": "pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX", "line_num": 6, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "pIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55/mbSYxECQQDeAw6fiIQX", "value_start": 0, "value_end": 76, @@ -10406,7 +10406,7 @@ "line": "GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il", "line_num": 7, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "GukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd/aNzQ/W9WaI+NRfcxUJrmfPwIGm63il", "value_start": 0, "value_end": 76, @@ -10423,7 +10423,7 @@ "line": "AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF", "line_num": 8, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "AkEAxCL5HQb2bQr4ByorcMWm/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3/9s5p+sqGxOlF", "value_start": 0, "value_end": 76, @@ -10440,7 +10440,7 @@ "line": "L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k", "line_num": 9, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "L0NDt4SkosjgGwJAFklyR1uZ/wPJjj611cdBcztlPdqoxssQGnh85BzCj/u3WqBpE2vjvyyvyI5k", "value_start": 0, "value_end": 76, @@ -10457,7 +10457,7 @@ "line": "X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl", "line_num": 10, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "X6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu/fhrT8ebHkTz2epl", "value_start": 0, "value_end": 76, @@ -10474,7 +10474,7 @@ "line": "U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ", "line_num": 11, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ", "value_start": 0, "value_end": 76, @@ -10491,7 +10491,7 @@ "line": "37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=", "line_num": 12, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0=", "value_start": 0, "value_end": 52, @@ -10508,7 +10508,7 @@ "line": "-----END RSA PRIVATE KEY-----", "line_num": 13, "path": "./tests/samples/pem_key.zip", - "info": "./tests/samples/pem_key.zip|ZIP|pem_key|RAW", + "info": "FILE|ZIP:pem_key|RAW", "value": "-----END RSA PRIVATE KEY-----", "value_start": 0, "value_end": 29, @@ -10533,7 +10533,7 @@ "line": "sk_live_gireogicracklegireogicrackle1231", "line_num": 1, "path": "./tests/samples/picatic_key", - "info": "./tests/samples/picatic_key|RAW", + "info": "FILE|RAW", "value": "sk_live_gireogicracklegireogicrackle1231", "value_start": 0, "value_end": 40, @@ -10558,7 +10558,7 @@ "line": "sk_live_gireogicracklegireogicrackle1231", "line_num": 1, "path": "./tests/samples/picatic_key", - "info": "./tests/samples/picatic_key|RAW", + "info": "FILE|RAW", "value": "sk_live_gireogicracklegireogicrackle1231", "value_start": 0, "value_end": 40, @@ -10583,7 +10583,7 @@ "line": "pypi-AgEIcHlvdS5bcmcCJGDmMTllXWJjLTRhODAtNDBhYi01Y2Y4LThjNjcxZTg3MsRjOAACKlszLCJlPDYzYmUxOC0wNjQ3LTQ4AzQtODFhYy1jZGRlNTk2MGYxNDYiXQAABiDDbVAEnaUMn4zZHlFr5NWy7JEYfvoay--cVmKO5lr3Xp", "line_num": 1, "path": "./tests/samples/pypi_token", - "info": "./tests/samples/pypi_token|RAW", + "info": "FILE|RAW", "value": "pypi-AgEIcHlvdS5bcmcCJGDmMTllXWJjLTRhODAtNDBhYi01Y2Y4LThjNjcxZTg3MsRjOAACKlszLCJlPDYzYmUxOC0wNjQ3LTQ4AzQtODFhYy1jZGRlNTk2MGYxNDYiXQAABiDDbVAEnaUMn4zZHlFr5NWy7JEYfvoay--cVmKO5lr3Xp", "value_start": 0, "value_end": 179, @@ -10608,7 +10608,7 @@ "line": "t_token 00DUI000005AecQ!AR8Amtqc2drcmpoZ3dlanJoMzQ5ODc1OTg0Mzc5NzQ1OCsrKysKLS0tLQp.cm9jLVR5cGU6IDQsRU5DUllwwMzQ1NzY3MzQ1", "line_num": 2, "path": "./tests/samples/salesfoce", - "info": "./tests/samples/salesfoce|RAW", + "info": "FILE|RAW", "value": "00DUI000005AecQ!AR8Amtqc2drcmpoZ3dlanJoMzQ5ODc1OTg0Mzc5NzQ1OCsrKysKLS0tLQp.cm9jLVR5cGU6IDQsRU5DUllwwMzQ1NzY3MzQ1", "value_start": 8, "value_end": 120, @@ -10633,7 +10633,7 @@ "line": "{\\\"salt8\\\":\\\"4b9a6d8b638eb0c6\\\"}", "line_num": 1, "path": "./tests/samples/salt.py", - "info": "./tests/samples/salt.py|STRUCT|STRUCT:3|STRING:json_escaped|RAW", + "info": "FILE|STRUCT|STRUCT:3|STRING:json_escaped|RAW", "value": "4b9a6d8b638eb0c6", "value_start": 13, "value_end": 29, @@ -10658,7 +10658,7 @@ "line": "salt1 = b\"\\x23!\\xae2389x&543@\"", "line_num": 1, "path": "./tests/samples/salt.py", - "info": "./tests/samples/salt.py|RAW", + "info": "FILE|RAW", "value": "\\x23!\\xae2389x&543@", "value_start": 10, "value_end": 29, @@ -10683,7 +10683,7 @@ "line": "salt3 = u\"\\u0020827634876\"", "line_num": 3, "path": "./tests/samples/salt.py", - "info": "./tests/samples/salt.py|RAW", + "info": "FILE|RAW", "value": "\\u0020827634876", "value_start": 10, "value_end": 25, @@ -10708,7 +10708,7 @@ "line": "salt4 = {\"salt5\": \"my124%#$@s\\x04clt\\0\"}", "line_num": 4, "path": "./tests/samples/salt.py", - "info": "./tests/samples/salt.py|RAW", + "info": "FILE|RAW", "value": "my124%#$@s\\x04clt\\0", "value_start": 19, "value_end": 38, @@ -10733,7 +10733,7 @@ "line": "Password = WeR15tr0n6", "line_num": 1, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx.gz|GZIP|./tests/samples/sample.docx|DOCX", + "info": "FILE|GZIP:./tests/samples/sample.docx|DOCX", "value": "WeR15tr0n6", "value_start": 11, "value_end": 21, @@ -10758,7 +10758,7 @@ "line": "First line bace4d11-a001-be1a-c3fe-9829474b5d84", "line_num": 1, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d11-a001-be1a-c3fe-9829474b5d84", "value_start": 11, "value_end": 47, @@ -10783,7 +10783,7 @@ "line": "Default footer bace4119-f002-bdef-dafe-9129474bcd89", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|ZIP|word/footer1.xml|RAW", + "info": "FILE|ZIP:word/footer1.xml|RAW", "value": "bace4119-f002-bdef-dafe-9129474bcd89", "value_start": 1649, "value_end": 1685, @@ -10808,7 +10808,7 @@ "line": "Default footer bace4119-f002-bdef-dafe-9129474bcd89", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|ZIP|word/footer2.xml|RAW", + "info": "FILE|ZIP:word/footer2.xml|RAW", "value": "bace4119-f002-bdef-dafe-9129474bcd89", "value_start": 1649, "value_end": 1685, @@ -10833,7 +10833,7 @@ "line": "First line bace4d11-a001-be1a-c3fe-9829474b5d84second line bace4d11-a002-be1a-c3fe-9829474b5d84Innner cell bace4d11-b003-be1a-c3fe-9829474b5d84New page first line bace4d19-b001-b3e2-eac1-9129474bcd84Next page section bace4d19-c001-b3e2-eac1-9129474bcd84Section R2C2 b5c6471d-a2b2-b4ef-ca5e-9121476bc881next line in section bace4d19-c001-b3e2-eac1-9129474bcd84last page bace4d11-a003-be2a-c3fe-9829474b5d84", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|ZIP|word/document.xml|RAW", + "info": "FILE|ZIP:word/document.xml|RAW", "value": "bace4d11-a002-be1a-c3fe-9829474b5d84", "value_start": 1913, "value_end": 1949, @@ -10858,7 +10858,7 @@ "line": "First line bace4d11-a001-be1a-c3fe-9829474b5d84second line bace4d11-a002-be1a-c3fe-9829474b5d84Innner cell bace4d11-b003-be1a-c3fe-9829474b5d84New page first line bace4d19-b001-b3e2-eac1-9129474bcd84Next page section bace4d19-c001-b3e2-eac1-9129474bcd84Section R2C2 b5c6471d-a2b2-b4ef-ca5e-9121476bc881next line in section bace4d19-c001-b3e2-eac1-9129474bcd84last page bace4d11-a003-be2a-c3fe-9829474b5d84", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|ZIP|word/document.xml|RAW", + "info": "FILE|ZIP:word/document.xml|RAW", "value": "bace4d11-a003-be2a-c3fe-9829474b5d84", "value_start": 14444, "value_end": 14480, @@ -10883,7 +10883,7 @@ "line": "First line bace4d11-a001-be1a-c3fe-9829474b5d84second line bace4d11-a002-be1a-c3fe-9829474b5d84Innner cell bace4d11-b003-be1a-c3fe-9829474b5d84New page first line bace4d19-b001-b3e2-eac1-9129474bcd84Next page section bace4d19-c001-b3e2-eac1-9129474bcd84Section R2C2 b5c6471d-a2b2-b4ef-ca5e-9121476bc881next line in section bace4d19-c001-b3e2-eac1-9129474bcd84last page bace4d11-a003-be2a-c3fe-9829474b5d84", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|ZIP|word/document.xml|RAW", + "info": "FILE|ZIP:word/document.xml|RAW", "value": "bace4d11-b003-be1a-c3fe-9829474b5d84", "value_start": 4417, "value_end": 4453, @@ -10908,7 +10908,7 @@ "line": " PAGE 2 Second page header bace4d19-b002-beda-cafe-0929375bcd82", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|ZIP|word/header1.xml|RAW", + "info": "FILE|ZIP:word/header1.xml|RAW", "value": "bace4d19-b002-beda-cafe-0929375bcd82", "value_start": 1318, "value_end": 1354, @@ -10933,7 +10933,7 @@ "line": "First line bace4d11-a001-be1a-c3fe-9829474b5d84second line bace4d11-a002-be1a-c3fe-9829474b5d84Innner cell bace4d11-b003-be1a-c3fe-9829474b5d84New page first line bace4d19-b001-b3e2-eac1-9129474bcd84Next page section bace4d19-c001-b3e2-eac1-9129474bcd84Section R2C2 b5c6471d-a2b2-b4ef-ca5e-9121476bc881next line in section bace4d19-c001-b3e2-eac1-9129474bcd84last page bace4d11-a003-be2a-c3fe-9829474b5d84", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|ZIP|word/document.xml|RAW", + "info": "FILE|ZIP:word/document.xml|RAW", "value": "bace4d19-c001-b3e2-eac1-9129474bcd84", "value_start": 8850, "value_end": 8886, @@ -10958,7 +10958,7 @@ "line": "First line bace4d11-a001-be1a-c3fe-9829474b5d84second line bace4d11-a002-be1a-c3fe-9829474b5d84Innner cell bace4d11-b003-be1a-c3fe-9829474b5d84New page first line bace4d19-b001-b3e2-eac1-9129474bcd84Next page section bace4d19-c001-b3e2-eac1-9129474bcd84Section R2C2 b5c6471d-a2b2-b4ef-ca5e-9121476bc881next line in section bace4d19-c001-b3e2-eac1-9129474bcd84last page bace4d11-a003-be2a-c3fe-9829474b5d84", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|ZIP|word/document.xml|RAW", + "info": "FILE|ZIP:word/document.xml|RAW", "value": "bace4d19-c001-b3e2-eac1-9129474bcd84", "value_start": 13449, "value_end": 13485, @@ -10983,7 +10983,7 @@ "line": "New page first line bace4d19-b001-b3e2-eac1-9129474bcd84", "line_num": 4, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d19-b001-b3e2-eac1-9129474bcd84", "value_start": 20, "value_end": 56, @@ -11008,7 +11008,7 @@ "line": "Section R2C2 b5c6471d-a2b2-b4ef-ca5e-9121476bc881", "line_num": 6, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "b5c6471d-a2b2-b4ef-ca5e-9121476bc881", "value_start": 13, "value_end": 49, @@ -11033,7 +11033,7 @@ "line": "Third page header bace4d19-b003-beda-cafe-0929375bcd82", "line_num": 10, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d19-b003-beda-cafe-0929375bcd82", "value_start": 18, "value_end": 54, @@ -11058,7 +11058,7 @@ "line": "first_page_header bace4d11-f001-beea-c3fe-9829474b5d84", "line_num": 11, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d11-f001-beea-c3fe-9829474b5d84", "value_start": 18, "value_end": 54, @@ -11083,7 +11083,7 @@ "line": "TokenRequest", "line_num": 9, "path": "./tests/samples/sample.html", - "info": "./tests/samples/sample.html|RAW", + "info": "FILE|RAW", "value": "g1re0g1T0keN3zWx", "value_start": 40, "value_end": 56, @@ -11108,7 +11108,7 @@ "line": " placeholder=\"Your password: "g1re0g1Pa5$w0Rd"\"", "line_num": 16, "path": "./tests/samples/sample.html", - "info": "./tests/samples/sample.html|RAW", + "info": "FILE|RAW", "value": "g1re0g1Pa5$w0Rd", "value_start": 38, "value_end": 53, @@ -11133,7 +11133,7 @@ "line": " ", "line_num": 21, "path": "./tests/samples/sample.html", - "info": "./tests/samples/sample.html|RAW", + "info": "FILE|RAW", "value": "g1re0g2Pa5$w0Rd", "value_start": 39, "value_end": 54, @@ -11149,50 +11149,50 @@ ] }, { - "rule": "AWS Client ID", - "severity": "high", + "rule": "Password", + "severity": "medium", "confidence": "moderate", - "ml_probability": null, + "ml_probability": 0.923, "line_data_list": [ { - "line": "AKIAGIREOGIAXLSX4BT5userhostloginpassword\ud64d\uae38\ub3d9\uc804192.168.0.1adminH0NgGi1d0nGroot127.0.0.1rootiMr00TA1 password is w3Ry5tR0nGA2 ID:master,PW:dipPr10Gg!B3 192.168.0.1 master/NBd@126t!\uc8fc\uc778 FNAT-CC0TG_old10.53.51.17192.168.101.96377710.53.51.17192.168.101.9 63777 \uc8fc\uc778 FNAT-CC0TG_oldpassword:\u25a1 \ubb38\uc758 \ub0b4\uc6a9 : \u203b Error Stack Trace\ub3c4 \ud568\uaed8 \ucca8\ubd80 \ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4.12345F16 224.52.124.93 root/A0dM1Nka", - "line_num": 2, + "line": "A2 ID:master,PW:dipPr10Gg!", + "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|ZIP|content.xml|RAW", - "value": "AKIAGIREOGIAXLSX4BT5", - "value_start": 7621, - "value_end": 7641, - "variable": null, - "variable_start": -2, - "variable_end": -2, + "info": "FILE|SheetAny:A2", + "value": "dipPr10Gg!", + "value_start": 16, + "value_end": 26, + "variable": "PW", + "variable_start": 13, + "variable_end": 15, "entropy_validation": { "iterator": "BASE64STDPAD_CHARS", - "entropy": 3.6464393446710153, + "entropy": 2.989735285398626, "valid": false } } ] }, { - "rule": "Password", - "severity": "medium", + "rule": "AWS Client ID", + "severity": "high", "confidence": "moderate", - "ml_probability": 0.921, + "ml_probability": null, "line_data_list": [ { - "line": "A2 ID:master,PW:dipPr10Gg!\t\t\t\t\t", + "line": "AKIAGIREOGIAXLSX4BT5userhostloginpassword\ud64d\uae38\ub3d9\uc804192.168.0.1adminH0NgGi1d0nGroot127.0.0.1rootiMr00TA1 password is w3Ry5tR0nGA2 ID:master,PW:dipPr10Gg!B3 192.168.0.1 master/NBd@126t!\uc8fc\uc778 FNAT-CC0TG_old10.53.51.17192.168.101.96377710.53.51.17192.168.101.9 63777 \uc8fc\uc778 FNAT-CC0TG_oldpassword:\u25a1 \ubb38\uc758 \ub0b4\uc6a9 : \u203b Error Stack Trace\ub3c4 \ud568\uaed8 \ucca8\ubd80 \ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4.12345F16 224.52.124.93 root/A0dM1Nka", "line_num": 2, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:SheetAny", - "value": "dipPr10Gg!", - "value_start": 16, - "value_end": 26, - "variable": "PW", - "variable_start": 13, - "variable_end": 15, + "info": "FILE|ZIP:content.xml|RAW", + "value": "AKIAGIREOGIAXLSX4BT5", + "value_start": 7621, + "value_end": 7641, + "variable": null, + "variable_start": -2, + "variable_end": -2, "entropy_validation": { "iterator": "BASE64STDPAD_CHARS", - "entropy": 2.989735285398626, + "entropy": 3.6464393446710153, "valid": false } } @@ -11208,7 +11208,7 @@ "line": "AwsAccessKey:AKIAGIREOGIAWSKEY123", "line_num": 1, "path": "./tests/samples/sample.pdf", - "info": "./tests/samples/sample.pdf|PDF[1]|ENCODED|RAW", + "info": "FILE|PDF:1|BASE64|RAW", "value": "AKIAGIREOGIAWSKEY123", "value_start": 13, "value_end": 33, @@ -11233,7 +11233,7 @@ "line": "password = Xdj@jcN834b", "line_num": 1, "path": "./tests/samples/sample.pdf", - "info": "./tests/samples/sample.pdf|PDF[1]|RAW", + "info": "FILE|PDF:1|RAW", "value": "Xdj@jcN834b", "value_start": 11, "value_end": 22, @@ -11258,7 +11258,7 @@ "line": "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", "line_num": 1, "path": "./tests/samples/sample.pdf", - "info": "./tests/samples/sample.pdf|PDF[1]|RAW", + "info": "FILE|PDF:1|RAW", "value": "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", "value_start": 0, "value_end": 40, @@ -11283,7 +11283,7 @@ "line": " Click to edit the title text format<footer><number><date/time>", "line_num": 2, "path": "./tests/samples/sample.pptx", - "info": "./tests/samples/sample.pptx|ZIP|ppt/slideMasters/slideMaster1.xml|RAW", + "info": "FILE|ZIP:ppt/slideMasters/slideMaster1.xml|RAW", "value": "1B26FE4F-8819-409F-9556-40447A77EBF2", "value_start": 3868, "value_end": 3904, @@ -11308,7 +11308,7 @@ "line": " Footer<#>", "line_num": 2, "path": "./tests/samples/sample.pptx", - "info": "./tests/samples/sample.pptx|ZIP|ppt/slideLayouts/slideLayout1.xml|RAW", + "info": "FILE|ZIP:ppt/slideLayouts/slideLayout1.xml|RAW", "value": "42F61B0C-09B2-455B-8854-E1D3A3979B74", "value_start": 2610, "value_end": 2646, @@ -11333,7 +11333,7 @@ "line": " Follow the white rabbitAKIAGIREOGIPPTX1Y45X", "line_num": 2, "path": "./tests/samples/sample.pptx", - "info": "./tests/samples/sample.pptx|ZIP|ppt/slides/slide1.xml|RAW", + "info": "FILE|ZIP:ppt/slides/slide1.xml|RAW", "value": "AKIAGIREOGIPPTX1Y45X", "value_start": 2403, "value_end": 2423, @@ -11358,7 +11358,7 @@ "line": "password = \"WeR15tr0n6\"; ", "line_num": 1, "path": "./tests/samples/sample.py", - "info": "./tests/samples/sample.py|STRUCT|STRUCT:0|KEYWORD:`password = \"WeR15tr0n6\"; `", + "info": "FILE|STRUCT|STRUCT:0|KEYWORD:`password = \"WeR15tr0n6\"; `", "value": "WeR15tr0n6", "value_start": 12, "value_end": 22, @@ -11383,7 +11383,7 @@ "line": "{http://schemas.openxmlformats.org/spreadsheetml/2006/main}t : AKIAGIREOGIAXLSX4BT5", "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|ZIP|xl/sharedStrings.xml|XML", + "info": "FILE|ZIP:xl/sharedStrings.xml|XML", "value": "AKIAGIREOGIAXLSX4BT5", "value_start": 63, "value_end": 83, @@ -11408,7 +11408,7 @@ "line": "{http://schemas.openxmlformats.org/spreadsheetml/2006/main}t : A2 ID:master,PW:dipPr10Gg!", "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|ZIP|xl/sharedStrings.xml|XML", + "info": "FILE|ZIP:xl/sharedStrings.xml|XML", "value": "dipPr10Gg!", "value_start": 79, "value_end": 89, @@ -11433,7 +11433,7 @@ "line": "", "line_num": 2, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|ZIP|xl/workbook.xml|RAW", + "info": "FILE|ZIP:xl/workbook.xml|RAW", "value": "7626C862-2A13-11E5-B345-FEFF819CDC9F", "value_start": 1015, "value_end": 1051, @@ -11458,7 +11458,7 @@ "line": "SG.gireogigireogigi.gireogigireogigi", "line_num": 1, "path": "./tests/samples/sendgrid_api_key", - "info": "./tests/samples/sendgrid_api_key|RAW", + "info": "FILE|RAW", "value": "SG.gireogigireogigi.gireogigireogigi", "value_start": 0, "value_end": 36, @@ -11483,7 +11483,7 @@ "line": " \"shopyfy_k\": \"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\",", "line_num": 1, "path": "./tests/samples/shopify_token", - "info": "./tests/samples/shopify_token|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 18, "value_end": 56, @@ -11508,7 +11508,7 @@ "line": "xoxa-FLYLIKEAGIREOGI-9d8cfc0f59", "line_num": 1, "path": "./tests/samples/slack_token.hs", - "info": "./tests/samples/slack_token.hs|RAW", + "info": "FILE|RAW", "value": "xoxa-FLYLIKEAGIREOGI-9d8cfc0f59", "value_start": 0, "value_end": 31, @@ -11533,7 +11533,7 @@ "line": " \"hook\": \"https://hooks.slack.com/services/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\",", "line_num": 1, "path": "./tests/samples/slack_webhook.template", - "info": "./tests/samples/slack_webhook.template|RAW", + "info": "FILE|RAW", "value": "/T1029384756/B102984756/sjsbfzowhhqbsgftrvajxzpg", "value_start": 45, "value_end": 93, @@ -11558,7 +11558,7 @@ "line": "qpF8Q~PCM5MhMoyTFc5TYEomnzRUKim9UJhe8a2P", "line_num": 1, "path": "./tests/samples/small.pdf", - "info": "./tests/samples/small.pdf|PDF[1]|RAW", + "info": "FILE|PDF:1|RAW", "value": "qpF8Q~PCM5MhMoyTFc5TYEomnzRUKim9UJhe8a2P", "value_start": 0, "value_end": 40, @@ -11583,7 +11583,7 @@ "line": " \"SQT\": \"EAAAEEPtuW9FnP_CuCV-3DFPB54M7YWBUVEFOWKPRVMWEJYMODIDAEX4FASS64NF\",", "line_num": 1, "path": "./tests/samples/square_access_token", - "info": "./tests/samples/square_access_token|RAW", + "info": "FILE|RAW", "value": "EAAAEEPtuW9FnP_CuCV-3DFPB54M7YWBUVEFOWKPRVMWEJYMODIDAEX4FASS64NF", "value_start": 12, "value_end": 76, @@ -11608,7 +11608,7 @@ "line": "sq0atp-GIREOGICRACKLE12145178", "line_num": 1, "path": "./tests/samples/square_client_id", - "info": "./tests/samples/square_client_id|RAW", + "info": "FILE|RAW", "value": "sq0atp-GIREOGICRACKLE12145178", "value_start": 0, "value_end": 29, @@ -11633,7 +11633,7 @@ "line": "20241204_112356 Colored line: \"\u001b[94msq0csp-ST2dsfwyVI7Ydj343EY72hb48ehKQINMST2ds_fwyVI\u001b[0m\";", "line_num": 1, "path": "./tests/samples/square_oauth_secret", - "info": "./tests/samples/square_oauth_secret|RAW", + "info": "FILE|RAW", "value": "sq0csp-ST2dsfwyVI7Ydj343EY72hb48ehKQINMST2ds_fwyVI", "value_start": 36, "value_end": 86, @@ -11658,7 +11658,7 @@ "line": "pk_test_Tph4NiI7TYooMQaujxvdEDq5", "line_num": 3, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "pk_test_Tph4NiI7TYooMQaujxvdEDq5", "value_start": 0, "value_end": 32, @@ -11683,7 +11683,7 @@ "line": "rk_live_TsS4QI2dNfwyVM7YdjI78ehK", "line_num": 4, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "rk_live_TsS4QI2dNfwyVM7YdjI78ehK", "value_start": 0, "value_end": 32, @@ -11708,7 +11708,7 @@ "line": "sk_test_T1z4jtdp7dcC39HqLyjWareD", "line_num": 5, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "sk_test_T1z4jtdp7dcC39HqLyjWareD", "value_start": 0, "value_end": 32, @@ -11733,7 +11733,7 @@ "line": "pk_live_KQI2pIpqzh1Nv2ZXfJBqUJItqoO5WdI6zUkITxodxICz85zC00cv0Gk63bDVUMwIymb3zKTeiqfU588jyYJdNYekpiI56wY0IIx", "line_num": 6, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "pk_live_KQI2pIpqzh1Nv2ZXfJBqUJItqoO5WdI6zUkITxodxICz85zC00cv0Gk63bDVUMwIymb3zKTeiqfU588jyYJdNYekpiI56wY0IIx", "value_start": 0, "value_end": 107, @@ -11758,7 +11758,7 @@ "line": "sk_test_KQI2pIpqzh1Nv2ZXfyfDQUTUQ63Cw359VjKMwtfJ000DsiXxtcVuxT40W8QRSYWZLQZxszLqOMkbYwYWDV1xKCmRKWR3kgSpi9h", "line_num": 7, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "sk_test_KQI2pIpqzh1Nv2ZXfyfDQUTUQ63Cw359VjKMwtfJ000DsiXxtcVuxT40W8QRSYWZLQZxszLqOMkbYwYWDV1xKCmRKWR3kgSpi9h", "value_start": 0, "value_end": 107, @@ -11783,7 +11783,7 @@ "line": "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", "line_num": 8, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 107, @@ -11808,7 +11808,7 @@ "line": "whsec_IsQVcHgjVWTBwlClIsICTD0mpDr4gJ4m", "line_num": 9, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "whsec_IsQVcHgjVWTBwlClIsICTD0mpDr4gJ4m", "value_start": 0, "value_end": 38, @@ -11833,7 +11833,7 @@ "line": "whsec_Q4KGL7AstjhYfzCtzK2RTB2EmncHgjVW", "line_num": 10, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "whsec_Q4KGL7AstjhYfzCtzK2RTB2EmncHgjVW", "value_start": 0, "value_end": 38, @@ -11858,7 +11858,7 @@ "line": "password = \"Axt4T0eO0lm9sS==\"", "line_num": 1, "path": "./tests/samples/struct.json", - "info": "./tests/samples/struct.json|STRUCT|KEY_VALUE:`password = \"Axt4T0eO0lm9sS==\"`", + "info": "FILE|STRUCT|KEY_VALUE:`password = \"Axt4T0eO0lm9sS==\"`", "value": "Axt4T0eO0lm9sS==", "value_start": 12, "value_end": 28, @@ -11883,7 +11883,7 @@ "line": "SWMTKN-1-n24a1r8ap4o4f1toc8ek9jh7tr4l5vbt3rtfav3jhw8etrlf7m-a1m0st7rue70ken4te5t0nly1", "line_num": 1, "path": "./tests/samples/swmtkn", - "info": "./tests/samples/swmtkn|RAW", + "info": "FILE|RAW", "value": "SWMTKN-1-n24a1r8ap4o4f1toc8ek9jh7tr4l5vbt3rtfav3jhw8etrlf7m-a1m0st7rue70ken4te5t0nly1", "value_start": 0, "value_end": 85, @@ -11908,7 +11908,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd81", "line_num": 19, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd81", "value_start": 8, "value_end": 44, @@ -11933,7 +11933,7 @@ "line": "secret : 5EcRe7_r0", "line_num": 20, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "5EcRe7_r0", "value_start": 9, "value_end": 18, @@ -11958,7 +11958,7 @@ "line": "key : AK1AGIREOGIAWSKEY555", "line_num": 21, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "AK1AGIREOGIAWSKEY555", "value_start": 6, "value_end": 26, @@ -11983,7 +11983,7 @@ "line": "password : Pas1wrD0", "line_num": 22, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "Pas1wrD0", "value_start": 11, "value_end": 19, @@ -12008,7 +12008,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd82", "line_num": 25, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd82", "value_start": 8, "value_end": 44, @@ -12033,7 +12033,7 @@ "line": "key : SDFHBH2398SG5VF62VZVQFG2TYGVF9WYSGR", "line_num": 27, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "SDFHBH2398SG5VF62VZVQFG2TYGVF9WYSGR", "value_start": 6, "value_end": 41, @@ -12058,7 +12058,7 @@ "line": "key : 3TJDSLKGDFG4MTB34UHWYYSDFHKSDKJH34S", "line_num": 29, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "3TJDSLKGDFG4MTB34UHWYYSDFHKSDKJH34S", "value_start": 6, "value_end": 41, @@ -12083,7 +12083,7 @@ "line": "password : Pas1wrD2", "line_num": 30, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "Pas1wrD2", "value_start": 11, "value_end": 19, @@ -12108,7 +12108,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd83", "line_num": 34, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd83", "value_start": 8, "value_end": 44, @@ -12133,7 +12133,7 @@ "line": "key : 0284-8946-3216-4010", "line_num": 36, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "0284-8946-3216-4010", "value_start": 6, "value_end": 25, @@ -12158,7 +12158,7 @@ "line": "key : 3216-4010-0284-8946", "line_num": 37, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "3216-4010-0284-8946", "value_start": 6, "value_end": 25, @@ -12183,7 +12183,7 @@ "line": "password : Pas1wrD3", "line_num": 38, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "Pas1wrD3", "value_start": 11, "value_end": 19, @@ -12208,7 +12208,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd85", "line_num": 42, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd85", "value_start": 8, "value_end": 44, @@ -12233,7 +12233,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd86", "line_num": 43, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd86", "value_start": 8, "value_end": 44, @@ -12258,7 +12258,7 @@ "line": "secret : 5EcRe7_r4", "line_num": 44, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "5EcRe7_r4", "value_start": 9, "value_end": 18, @@ -12283,7 +12283,7 @@ "line": "key : 741852-321654-963852-654913", "line_num": 45, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "741852-321654-963852-654913", "value_start": 6, "value_end": 33, @@ -12308,7 +12308,7 @@ "line": "key : 184824-202847-623730-837462", "line_num": 46, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "184824-202847-623730-837462", "value_start": 6, "value_end": 33, @@ -12333,7 +12333,7 @@ "line": "password : Pas1wrD4", "line_num": 47, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "Pas1wrD4", "value_start": 11, "value_end": 19, @@ -12358,7 +12358,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd87", "line_num": 51, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd87", "value_start": 8, "value_end": 44, @@ -12383,7 +12383,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd88", "line_num": 52, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd88", "value_start": 8, "value_end": 44, @@ -12408,7 +12408,7 @@ "line": "secret : 5EcRe7_r5", "line_num": 53, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "5EcRe7_r5", "value_start": 9, "value_end": 18, @@ -12433,7 +12433,7 @@ "line": "key : 321654-741852-963852-654980", "line_num": 54, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "321654-741852-963852-654980", "value_start": 6, "value_end": 33, @@ -12458,7 +12458,7 @@ "line": "key : 321654-741852-963852-654981", "line_num": 55, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "321654-741852-963852-654981", "value_start": 6, "value_end": 33, @@ -12483,7 +12483,7 @@ "line": "password : Pas1wrD5", "line_num": 56, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "Pas1wrD5", "value_start": 11, "value_end": 19, @@ -12508,7 +12508,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd89", "line_num": 60, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd89", "value_start": 8, "value_end": 44, @@ -12533,7 +12533,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd80", "line_num": 61, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd80", "value_start": 8, "value_end": 44, @@ -12558,7 +12558,7 @@ "line": "key : 321654-963852-654987-741851", "line_num": 62, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "321654-963852-654987-741851", "value_start": 6, "value_end": 33, @@ -12583,7 +12583,7 @@ "line": "key : 321654-963852-654987-741853", "line_num": 63, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "321654-963852-654987-741853", "value_start": 6, "value_end": 33, @@ -12608,7 +12608,7 @@ "line": "password : Pas1wrD67", "line_num": 64, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "Pas1wrD67", "value_start": 11, "value_end": 20, @@ -12633,7 +12633,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd11", "line_num": 67, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd11", "value_start": 8, "value_end": 44, @@ -12658,7 +12658,7 @@ "line": "token : bace4d19-fa7e-beer-care-9129474bcd22", "line_num": 68, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "bace4d19-fa7e-beer-care-9129474bcd22", "value_start": 8, "value_end": 44, @@ -12683,7 +12683,7 @@ "line": "key : 654987-321654-963852-741851", "line_num": 69, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "654987-321654-963852-741851", "value_start": 6, "value_end": 33, @@ -12708,7 +12708,7 @@ "line": "key : 654987-321654-963852-741852", "line_num": 70, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "654987-321654-963852-741852", "value_start": 6, "value_end": 33, @@ -12733,7 +12733,7 @@ "line": "key : 654987-321654-963852-741853", "line_num": 71, "path": "./tests/samples/table.html", - "info": "./tests/samples/table.html|HTML", + "info": "FILE|HTML", "value": "654987-321654-963852-741853", "value_start": 6, "value_end": 33, @@ -12758,7 +12758,7 @@ "line": "508627689:AAEuLPKs-EhrjrYGnz60bnYNZqakf6HJxc0", "line_num": 1, "path": "./tests/samples/telegram_api_key", - "info": "./tests/samples/telegram_api_key|RAW", + "info": "FILE|RAW", "value": "508627689:AAEuLPKs-EhrjrYGnz60bnYNZqakf6HJxc0", "value_start": 0, "value_end": 45, @@ -12783,7 +12783,7 @@ "line": "td : Password: MU$T6Ef09#D!", "line_num": 1, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|XML", + "info": "FILE|XML", "value": "MU$T6Ef09#D!", "value_start": 26, "value_end": 38, @@ -12808,7 +12808,7 @@ "line": "password : 0dm1nk0", "line_num": 29, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "0dm1nk0", "value_start": 11, "value_end": 18, @@ -12833,7 +12833,7 @@ "line": "secret : BNbNbws73bdhss329ssakKhds120384", "line_num": 32, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "BNbNbws73bdhss329ssakKhds120384", "value_start": 9, "value_end": 40, @@ -12858,7 +12858,7 @@ "line": "password : Cr3DeHTbIal", "line_num": 42, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "Cr3DeHTbIal", "value_start": 11, "value_end": 22, @@ -12883,7 +12883,7 @@ "line": "secret : Ndjbwu88s22ygavsdhgt5454v3h1x", "line_num": 45, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "Ndjbwu88s22ygavsdhgt5454v3h1x", "value_start": 9, "value_end": 38, @@ -12908,7 +12908,7 @@ "line": "token : H72gsdv2dswPneHduwhfd", "line_num": 65, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "H72gsdv2dswPneHduwhfd", "value_start": 8, "value_end": 29, @@ -12933,7 +12933,7 @@ "line": "password : p@$$w0Rd42", "line_num": 71, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "p@$$w0Rd42", "value_start": 11, "value_end": 21, @@ -12958,7 +12958,7 @@ "line": "508627689:AAEuLPKs-EhrjrYGnz60bnYNZqakf6HJxc0", "line_num": 83, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "508627689:AAEuLPKs-EhrjrYGnz60bnYNZqakf6HJxc0", "value_start": 0, "value_end": 45, @@ -12983,7 +12983,7 @@ "line": "# 94 ya29.dshMb48ehfXwydAj34D32J", "line_num": 86, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "ya29.dshMb48ehfXwydAj34D32J", "value_start": 5, "value_end": 32, @@ -13008,7 +13008,7 @@ "line": "# 95 dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "line_num": 89, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "value_start": 5, "value_end": 76, @@ -13033,7 +13033,7 @@ "line": "# 94 ya29.dshMb48ehfXwydAj34D32J", "line_num": 91, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "ya29.dshMb48ehfXwydAj34D32J", "value_start": 5, "value_end": 32, @@ -13058,7 +13058,7 @@ "line": "the line will be found twice # 100 EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "line_num": 94, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "value_start": 35, "value_end": 122, @@ -13083,7 +13083,7 @@ "line": "# 95 dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "line_num": 94, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "value_start": 5, "value_end": 76, @@ -13108,7 +13108,7 @@ "line": "the line will be found twice # 100 EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "line_num": 101, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "value_start": 35, "value_end": 122, @@ -13133,7 +13133,7 @@ "line": "token in zip: eyJrIjoiMDAwMDAwNDAwMDAwODAwMDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "line_num": 1, "path": "./tests/samples/test2.eml", - "info": "./tests/samples/test2.eml|EML-DATA|ZIP|token.txt|RAW", + "info": "FILE|EML-DATA|ZIP:token.txt|RAW", "value": "eyJrIjoiMDAwMDAwNDAwMDAwODAwMDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "value_start": 14, "value_end": 108, @@ -13158,7 +13158,7 @@ "line": "token in zip: eyJrIjoiMDAwMDAwNDAwMDAwODAwMDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "line_num": 1, "path": "./tests/samples/test2.eml", - "info": "./tests/samples/test2.eml|EML-DATA|ZIP|token.txt|RAW", + "info": "FILE|EML-DATA|ZIP:token.txt|RAW", "value": "eyJrIjoiMDAwMDAwNDAwMDAwODAwMDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "value_start": 14, "value_end": 108, @@ -13183,7 +13183,7 @@ "line": "token in text: eyJrIjoiMDAwMDAwNDAwMDAwODAwNDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "line_num": 8, "path": "./tests/samples/test2.eml", - "info": "./tests/samples/test2.eml|EML-TEXT", + "info": "FILE|EML-TEXT", "value": "eyJrIjoiMDAwMDAwNDAwMDAwODAwNDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "value_start": 15, "value_end": 109, @@ -13208,7 +13208,7 @@ "line": "token in text: eyJrIjoiMDAwMDAwNDAwMDAwODAwNDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "line_num": 8, "path": "./tests/samples/test2.eml", - "info": "./tests/samples/test2.eml|EML-TEXT", + "info": "FILE|EML-TEXT", "value": "eyJrIjoiMDAwMDAwNDAwMDAwODAwNDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "value_start": 15, "value_end": 109, @@ -13233,7 +13233,7 @@ "line": "gi_reo_gi_token = \"G1Re06G1BdgNseiJDN21Z094M\"", "line_num": 1, "path": "./tests/samples/token.toml", - "info": "./tests/samples/token.toml|RAW", + "info": "FILE|RAW", "value": "G1Re06G1BdgNseiJDN21Z094M", "value_start": 19, "value_end": 44, @@ -13258,7 +13258,7 @@ "line": "Token-> DemoToken: Nxs094M3ed2s1Re0F4M3ed2GZ8M= <- for User : demo", "line_num": 2, "path": "./tests/samples/token.toml", - "info": "./tests/samples/token.toml|RAW", + "info": "FILE|RAW", "value": "Nxs094M3ed2s1Re0F4M3ed2GZ8M=", "value_start": 19, "value_end": 47, @@ -13283,7 +13283,7 @@ "line": "tp_token_value=\"b035d48j9X2dfjF0hb9sd8Guf5hWu2ia\"", "line_num": 4, "path": "./tests/samples/token.toml", - "info": "./tests/samples/token.toml|RAW", + "info": "FILE|RAW", "value": "b035d48j9X2dfjF0hb9sd8Guf5hWu2ia", "value_start": 16, "value_end": 48, @@ -13308,7 +13308,7 @@ "line": "SK4D2F64E2A108CD72F648B1984C3B5A13", "line_num": 1, "path": "./tests/samples/twilio_credentials_p", - "info": "./tests/samples/twilio_credentials_p|RAW", + "info": "FILE|RAW", "value": "SK4D2F64E2A108CD72F648B1984C3B5A13", "value_start": 0, "value_end": 34, @@ -13333,7 +13333,7 @@ "line": "AC4d2f64e2a108cd72f648b1984c3b5a13", "line_num": 2, "path": "./tests/samples/twilio_credentials_p", - "info": "./tests/samples/twilio_credentials_p|RAW", + "info": "FILE|RAW", "value": "AC4d2f64e2a108cd72f648b1984c3b5a13", "value_start": 0, "value_end": 34, @@ -13358,7 +13358,7 @@ "line": "url: mongodb://jrfdeg:dh3sjr8b@prod-best-sec.example.com:32768/architecture", "line_num": 1, "path": "./tests/samples/url.groovy", - "info": "./tests/samples/url.groovy|RAW", + "info": "FILE|RAW", "value": "dh3sjr8b", "value_start": 22, "value_end": 30, @@ -13383,7 +13383,7 @@ "line": "const connection_url = require('dbconnection://ad%6Din:5WdF4f2jE76a@db-host-local');", "line_num": 1, "path": "./tests/samples/url_cred.js", - "info": "./tests/samples/url_cred.js|RAW", + "info": "FILE|RAW", "value": "5WdF4f2jE76a", "value_start": 55, "value_end": 67, @@ -13408,7 +13408,7 @@ "line": "url = \"https://secure.com/83675/39084?Credential=546DFS64N90P3AW7DX%2Fkeep%26cut\";", "line_num": 3, "path": "./tests/samples/url_cred.js", - "info": "./tests/samples/url_cred.js|RAW", + "info": "FILE|RAW", "value": "546DFS64N90P3AW7DX%2Fkeep%26cut", "value_start": 49, "value_end": 80, @@ -13433,7 +13433,7 @@ "line": "39084?Credential=546DFS64N90P3AW7DX&key=3487263-2384579834-234732875-345&hasToBefound=2", "line_num": 10, "path": "./tests/samples/url_cred.js", - "info": "./tests/samples/url_cred.js|RAW", + "info": "FILE|RAW", "value": "3487263-2384579834-234732875-345", "value_start": 40, "value_end": 72, @@ -13458,7 +13458,7 @@ "line": "39084?Credential=546DFS64N90P3AW7DX&key=3487263-2384579834-234732875-345&hasToBefound=2", "line_num": 10, "path": "./tests/samples/url_cred.js", - "info": "./tests/samples/url_cred.js|RAW", + "info": "FILE|RAW", "value": "546DFS64N90P3AW7DX", "value_start": 17, "value_end": 35, @@ -13483,7 +13483,7 @@ "line": "email_as_login = \"smtps://example@gmail.com:FnD83JZs@smtp.gmail.com:465\";", "line_num": 13, "path": "./tests/samples/url_cred.js", - "info": "./tests/samples/url_cred.js|RAW", + "info": "FILE|RAW", "value": "FnD83JZs", "value_start": 44, "value_end": 52, @@ -13508,7 +13508,7 @@ "line": "url3d = \"https://localhost.com/013948?26timestamp%3D1395782596%26token%3Dh1d3Me4ch534d801sl3jdk%26version%3D3.14%26si\";", "line_num": 19, "path": "./tests/samples/url_cred.js", - "info": "./tests/samples/url_cred.js|RAW", + "info": "FILE|RAW", "value": "h1d3Me4ch534d801sl3jdk", "value_start": 73, "value_end": 95, @@ -13533,7 +13533,7 @@ "line": "bace4d19-fa7e-beef-cafe-9129474bcd81 # tp", "line_num": 1, "path": "./tests/samples/uuid", - "info": "./tests/samples/uuid|RAW", + "info": "FILE|RAW", "value": "bace4d19-fa7e-beef-cafe-9129474bcd81", "value_start": 0, "value_end": 36, @@ -13558,7 +13558,7 @@ "line": "wxe191bc54fc7d529a", "line_num": 1, "path": "./tests/samples/wechat_p", - "info": "./tests/samples/wechat_p|RAW", + "info": "FILE|RAW", "value": "wxe191bc54fc7d529a", "value_start": 0, "value_end": 18, @@ -13583,7 +13583,7 @@ "line": "wx2274a335e18222d6", "line_num": 2, "path": "./tests/samples/wechat_p", - "info": "./tests/samples/wechat_p|RAW", + "info": "FILE|RAW", "value": "wx2274a335e18222d6", "value_start": 0, "value_end": 18, @@ -13608,7 +13608,7 @@ "line": "wx4d82d07e3eb5ba84", "line_num": 3, "path": "./tests/samples/wechat_p", - "info": "./tests/samples/wechat_p|RAW", + "info": "FILE|RAW", "value": "wx4d82d07e3eb5ba84", "value_start": 0, "value_end": 18, @@ -13633,7 +13633,7 @@ "line": "token : IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn hRFakQFbAuI769fdsbkjerfkjrekjnkerjnfkrejnfrejn==", "line_num": 1, "path": "./tests/samples/xml_data.xml", - "info": "./tests/samples/xml_data.xml|XML", + "info": "FILE|XML", "value": "IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn", "value_start": 8, "value_end": 58, @@ -13658,7 +13658,7 @@ "line": "token : \"IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn hRFakQFbAuI769fdsbkjerfkjrekjnkerjnfkrejnfrejn==\"", "line_num": 1, "path": "./tests/samples/xml_data.xml", - "info": "./tests/samples/xml_data.xml|XML", + "info": "FILE|XML", "value": "IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn hRFakQFbAuI769fdsbkjerfkjrekjnkerjnfkrejnfrejn==", "value_start": 9, "value_end": 115, @@ -13683,7 +13683,7 @@ "line": "data : MIIBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsnhRFakQFbAuI/ DaJSTVnp3ObjJPZhJs/P/XPWIKRNIglRqkkCAwEAAQJAbErPFMWah3EPxtfeVO1l 5R0yAZwrFKmLDO29/FoXyL2XbxthJlJmdMQgIYayZYn4W2PSq6C56AI201SlW7Ts AQIhAMwBYS+NST98g0nytTRD1Y94n+yrhTlyWNR/uC4tT8SpAiEAwthlcs9UDPh5 BnaO8Y7A+im+Aw5ANIhJwSVBxB3QnKECIQCJm9ihic1B7MxmojgGxEcXGwfNTjl0 caRn2qszQs9O2QIgdaBFvkXDrADkry4rpVBU17ETcKzNvej4/Y0MYuTM54ECIGtT EBUWuiacAxz/WKHb9WVp0F/zkRwucJ0Hr2W4P9cP", "line_num": 1, "path": "./tests/samples/xml_data.xml", - "info": "./tests/samples/xml_data.xml|XML", + "info": "FILE|XML", "value": "MIIBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsnhRFakQFbAuI/ DaJSTVnp3ObjJPZhJs/P/XPWIKRNIglRqkkCAwEAAQJAbErPFMWah3EPxtfeVO1l 5R0yAZwrFKmLDO29/FoXyL2XbxthJlJmdMQgIYayZYn4W2PSq6C56AI201SlW7Ts AQIhAMwBYS+NST98g0nytTRD1Y94n+yrhTlyWNR/uC4tT8SpAiEAwthlcs9UDPh5 BnaO8Y7A+im+Aw5ANIhJwSVBxB3QnKECIQCJm9ihic1B7MxmojgGxEcXGwfNTjl0 caRn2qszQs9O2QIgdaBFvkXDrADkry4rpVBU17ETcKzNvej4/Y0MYuTM54ECIGtT EBUWuiacAxz/WKHb9WVp0F/zkRwucJ0Hr2W4P9cP", "value_start": 7, "value_end": 479, @@ -13708,7 +13708,7 @@ "line": "password : cackle!", "line_num": 1, "path": "./tests/samples/xml_password.xml", - "info": "./tests/samples/xml_password.xml|XML", + "info": "FILE|XML", "value": "cackle!", "value_start": 11, "value_end": 18, diff --git a/tests/data/doc.json b/tests/data/doc.json index 468a169c5..f3867abcd 100644 --- a/tests/data/doc.json +++ b/tests/data/doc.json @@ -9,7 +9,7 @@ "line": "ZGVidWdDb250YWluZXI6CiAgaW1hZ2U6CiAgICB2ZXJzaW9uOiBpbnN0YWxsLWRlYnVnLXZlcnNpb24KaGVhcnRiZWF0U2NoZWR1bGU6IDEgMiAzIDQgNQppZGVudGl0eToKICBpc3N1ZXI6CiAgICB0bHM6CiAgICAgIGNydFBFTTogfAogICAgICAgIC0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQogICAgICAgIE1JSUJ3RENDQVdlZ0F3SUJBZ0lSQUpSSWdaOFJ0TzhFd2cxWGVwZjhUNDR3Q2dZSUtvWkl6ajBFQXdJd0tURW4KICAgICAgICBna2RqaHNsa2Roa2dkamhza2pkZmtkamhna2RqaGtkZmpibmtkZm52amtoYnZqaGRiZGpmaGJmamhiZGZNRGd5CiAgICAgICAgbGZrZGprc2xkamdrbGpkZmtnamhkZmtnamhzZGZrbGdqc2RrbGpmZ2hsa2Rmamhsa3NkZmpsa3Nkamt1YkdsdQogICAgICAgIGxzZGpoZnY1NDZtZmRza2dqaGRmamtoZ2tqZGhramhkZmtqZ2hrZGZqaGdramRmaGtqZGZoZ2tqZmRoZ2tqRnAKICAgICAgICBmY1JkZmdoZmRnbWRuZ2tqeGRuYnZqbmN2a2pua2pkbmdram5mZGtqYmt2YmpibnZja2puYmpuZGRmZ2ZkZ3QxCiAgICAgICAgMmJsa2puZ2JramhnbGpkZmxnaGtsamRmbmdqZGZuZ25sZGZrbWxrZGZqZ21sZGZrZ21sa2ZkbWdsa2RtTUFZQgogICAgICAgIEFmOENmZ2xibmpuZGJqZG5rZmpuZ2tkbmZnamtsbmRranZuYmlqZGlmamdpZXJqZ29pamRmbGtneGxrbmdrQ0MKICAgICAgICBIbWxkZmtmamdvaWRmamdnam5kamtmbmdranNkbnNram5qNXNiMk5oYkRBS0JnZ3Foa2pPUFFRREFnTkhBREJFCiAgICAgICAgQWlBdG9mZ2toOTk0NXU4OXV5OWU4dWdodWRmaGd1aGRmZmhpbGd1aGl1aGtkaGZna2pkaGZramhya2piazFwNQogICAgICAgIDVrZmRsc2lmaHU0aHRpdWg0aXR1aGtqaGt6az0KICAgICAgICAtLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCiAgICAgIGtleVBFTTogfAogICAgICAgIC0tLS0tQkVHSU4gRUMgUFJJVkFURSBLRVktLS0tLQogICAgICAgIE1IY0NBUUVFSUFBZThuZmJ6WnU5Yy9PQjJnZGZramdsaWRma2pibnhqa2hiZ2hiZmdoYmpoYmRqaGJzanhjazkKICAgICAgICBvZGlmanZpamRmdm9pamRmb2l2amRmb2lqZGpnbmZka2pnbmtqZGZna2pkZmtqZ2JrampoYmtnSmpYZ1p0TTcyCiAgICAgICAgZGZpb2hndXhoYmtqZ25rbGpkZm5rbGpkbmdram5rZ2puKz09CiAgICAgICAgLS0tLS1FTkQgRUMgUFJJVkFURSBLRVktLS0tLQppZGVudGl0eVRydXN0QW5jaG9yc1BFTTogfAogIC0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQogIE1JSUJ3VENDQVdhZ0F3SUJBZ0lRZURacDVsRGFJeWdRNVVmTUtaZGZuZ2puZGZrZ2puZmRramdua2RqbmtkamYKICBkZmtuZ2tqYmtqZGZic2tqYm5ma2puc2RrZ2psbnhrY2pibmt4am5ja2pnbmtqbmdreGpuZ2tqeGNua2dqbkk0CiAgTURkc2xrZmpvaWVyOGhzZGY4ZmdoZzc4NGg5OHQ5OGVydWhpdXNkaGtmZ2hoc2poYmdqa2hzdmpmaHZzYVc1cgogIFpYNDhrbmdraGdkZmtmamdic2RoYmpoYnNkaGJoeGJkZmxqZ2xkZmtqZ2tqaGpmZGdramJka2pmYmdrYmM3MFoKICBsZGZsa2pna2xqZGZoZmRrZ2poZXJramJnaGZia2dqYmtqbmtqeGNua2pmbmtnam5ma2pnbmtmam43SEJXVUM0CiAgdWZkZ2tqZGZpZ2hmdWRoZ2l1dWRoYm5ma25iZ3NibmRma2poc2tqa3NqbmdranNibmdramJrZ2pieGtqYmdFQgogIC9zZGZiaHNiamZoYmVod3did2poZmJqc2hiZGpoYnppdWhya2hiZXJoYnNqaGJkZmpoYmpoYmpoc2JqaGJzcysKICBsZGpmbGhranNka2ZqaHNrZGpma2pzZG5ma2puc2RramZuc2Rram5ranhjbmtqdm5ram5kc2Z3bGVra0FNRVlDCiAgSWVmb2h3a3VlaGZranNkaGZranNkaGtmamhzZGtqZmhrc2RqaGZranNkaGZranNkaGRramZoc2trZGpmaGpDOAogIHNkZnNkaHlnZmpoZ2RqaGZnanNoZGdmamhncXIKICAtLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCmxpbmtlcmRWZXJzaW9uOiBpbnN0YWxsLWNvbnRyb2wtcGxhbmUtdmVyc2lvbgpwb2xpY3lWYWxpZGF0b3I6CiAgY2FCdW5kbGU6IHBvbGljeSB2YWxpZGF0b3IgQ0EgYnVuZGxlCiAgZXh0ZXJuYWxTZWNyZXQ6IHRydWUKcHJvZmlsZVZhbGlkYXRvcjoKICBjYUJ1bmRsZTogcHJvZmlsZSB2YWxpZGF0b3IgQ0EgYnVuZGxlCiAgZXh0ZXJuYWxTZWNyZXQ6IHRydWUKcHJveHk6CiAgaW1hZ2U6CiAgICB2ZXJzaW9uOiBpbnN0YWxsLXByb3h5LXZlcnNpb24KcHJveHlJbml0OgogIGlnbm9yZUluYm91bmRQb3J0czogMjIsMzMwNi02MTkyCiAgaWdub3JlT3V0Ym91bmRQb3J0czogIjMyNzgiCnByb3h5SW5qZWN0b3I6CiAgY2FCdW5kbGU6IHByb3h5IGluamVjdG9yIENBIGJ1bmRsZQogIGV4dGVybmFsU2VjcmV0OiB0cnVlCg", "line_num": 1, "path": "./tests/samples/LS0t_p", - "info": "./tests/samples/LS0t_p|RAW", + "info": "FILE|RAW", "value": "ZGVidWdDb250YWluZXI6CiAgaW1hZ2U6CiAgICB2ZXJzaW9uOiBpbnN0YWxsLWRlYnVnLXZlcnNpb24KaGVhcnRiZWF0U2NoZWR1bGU6IDEgMiAzIDQgNQppZGVudGl0eToKICBpc3N1ZXI6CiAgICB0bHM6CiAgICAgIGNydFBFTTogfAogICAgICAgIC0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQogICAgICAgIE1JSUJ3RENDQVdlZ0F3SUJBZ0lSQUpSSWdaOFJ0TzhFd2cxWGVwZjhUNDR3Q2dZSUtvWkl6ajBFQXdJd0tURW4KICAgICAgICBna2RqaHNsa2Roa2dkamhza2pkZmtkamhna2RqaGtkZmpibmtkZm52amtoYnZqaGRiZGpmaGJmamhiZGZNRGd5CiAgICAgICAgbGZrZGprc2xkamdrbGpkZmtnamhkZmtnamhzZGZrbGdqc2RrbGpmZ2hsa2Rmamhsa3NkZmpsa3Nkamt1YkdsdQogICAgICAgIGxzZGpoZnY1NDZtZmRza2dqaGRmamtoZ2tqZGhramhkZmtqZ2hrZGZqaGdramRmaGtqZGZoZ2tqZmRoZ2tqRnAKICAgICAgICBmY1JkZmdoZmRnbWRuZ2tqeGRuYnZqbmN2a2pua2pkbmdram5mZGtqYmt2YmpibnZja2puYmpuZGRmZ2ZkZ3QxCiAgICAgICAgMmJsa2puZ2JramhnbGpkZmxnaGtsamRmbmdqZGZuZ25sZGZrbWxrZGZqZ21sZGZrZ21sa2ZkbWdsa2RtTUFZQgogICAgICAgIEFmOENmZ2xibmpuZGJqZG5rZmpuZ2tkbmZnamtsbmRranZuYmlqZGlmamdpZXJqZ29pamRmbGtneGxrbmdrQ0MKICAgICAgICBIbWxkZmtmamdvaWRmamdnam5kamtmbmdranNkbnNram5qNXNiMk5oYkRBS0JnZ3Foa2pPUFFRREFnTkhBREJFCiAgICAgICAgQWlBdG9mZ2toOTk0NXU4OXV5OWU4dWdodWRmaGd1aGRmZmhpbGd1aGl1aGtkaGZna2pkaGZramhya2piazFwNQogICAgICAgIDVrZmRsc2lmaHU0aHRpdWg0aXR1aGtqaGt6az0KICAgICAgICAtLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCiAgICAgIGtleVBFTTogfAogICAgICAgIC0tLS0tQkVHSU4gRUMgUFJJVkFURSBLRVktLS0tLQogICAgICAgIE1IY0NBUUVFSUFBZThuZmJ6WnU5Yy9PQjJnZGZramdsaWRma2pibnhqa2hiZ2hiZmdoYmpoYmRqaGJzanhjazkKICAgICAgICBvZGlmanZpamRmdm9pamRmb2l2amRmb2lqZGpnbmZka2pnbmtqZGZna2pkZmtqZ2JrampoYmtnSmpYZ1p0TTcyCiAgICAgICAgZGZpb2hndXhoYmtqZ25rbGpkZm5rbGpkbmdram5rZ2puKz09CiAgICAgICAgLS0tLS1FTkQgRUMgUFJJVkFURSBLRVktLS0tLQppZGVudGl0eVRydXN0QW5jaG9yc1BFTTogfAogIC0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQogIE1JSUJ3VENDQVdhZ0F3SUJBZ0lRZURacDVsRGFJeWdRNVVmTUtaZGZuZ2puZGZrZ2puZmRramdua2RqbmtkamYKICBkZmtuZ2tqYmtqZGZic2tqYm5ma2puc2RrZ2psbnhrY2pibmt4am5ja2pnbmtqbmdreGpuZ2tqeGNua2dqbkk0CiAgTURkc2xrZmpvaWVyOGhzZGY4ZmdoZzc4NGg5OHQ5OGVydWhpdXNkaGtmZ2hoc2poYmdqa2hzdmpmaHZzYVc1cgogIFpYNDhrbmdraGdkZmtmamdic2RoYmpoYnNkaGJoeGJkZmxqZ2xkZmtqZ2tqaGpmZGdramJka2pmYmdrYmM3MFoKICBsZGZsa2pna2xqZGZoZmRrZ2poZXJramJnaGZia2dqYmtqbmtqeGNua2pmbmtnam5ma2pnbmtmam43SEJXVUM0CiAgdWZkZ2tqZGZpZ2hmdWRoZ2l1dWRoYm5ma25iZ3NibmRma2poc2tqa3NqbmdranNibmdramJrZ2pieGtqYmdFQgogIC9zZGZiaHNiamZoYmVod3did2poZmJqc2hiZGpoYnppdWhya2hiZXJoYnNqaGJkZmpoYmpoYmpoc2JqaGJzcysKICBsZGpmbGhranNka2ZqaHNrZGpma2pzZG5ma2puc2RramZuc2Rram5ranhjbmtqdm5ram5kc2Z3bGVra0FNRVlDCiAgSWVmb2h3a3VlaGZranNkaGZranNkaGtmamhzZGtqZmhrc2RqaGZranNkaGZranNkaGRramZoc2trZGpmaGpDOAogIHNkZnNkaHlnZmpoZ2RqaGZnanNoZGdmamhncXIKICAtLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCmxpbmtlcmRWZXJzaW9uOiBpbnN0YWxsLWNvbnRyb2wtcGxhbmUtdmVyc2lvbgpwb2xpY3lWYWxpZGF0b3I6CiAgY2FCdW5kbGU6IHBvbGljeSB2YWxpZGF0b3IgQ0EgYnVuZGxlCiAgZXh0ZXJuYWxTZWNyZXQ6IHRydWUKcHJvZmlsZVZhbGlkYXRvcjoKICBjYUJ1bmRsZTogcHJvZmlsZSB2YWxpZGF0b3IgQ0EgYnVuZGxlCiAgZXh0ZXJuYWxTZWNyZXQ6IHRydWUKcHJveHk6CiAgaW1hZ2U6CiAgICB2ZXJzaW9uOiBpbnN0YWxsLXByb3h5LXZlcnNpb24KcHJveHlJbml0OgogIGlnbm9yZUluYm91bmRQb3J0czogMjIsMzMwNi02MTkyCiAgaWdub3JlT3V0Ym91bmRQb3J0czogIjMyNzgiCnByb3h5SW5qZWN0b3I6CiAgY2FCdW5kbGU6IHByb3h5IGluamVjdG9yIENBIGJ1bmRsZQogIGV4dGVybmFsU2VjcmV0OiB0cnVlCg", "value_start": 0, "value_end": 3078, @@ -34,7 +34,7 @@ "line": "ATLASSIAN_v3 = \"23OY2aMY4U3ubsQwBPvdyfYr\"", "line_num": 1, "path": "./tests/samples/atlassian_old_pat", - "info": "./tests/samples/atlassian_old_pat|RAW", + "info": "FILE|RAW", "value": "23OY2aMY4U3ubsQwBPvdyfYr", "value_start": 16, "value_end": 40, @@ -59,7 +59,7 @@ "line": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE=00203E68", "line_num": 1, "path": "./tests/samples/atlassian_pat", - "info": "./tests/samples/atlassian_pat|RAW", + "info": "FILE|RAW", "value": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE=00203E68", "value_start": 13, "value_end": 205, @@ -84,7 +84,7 @@ "line": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE\\=00203E68", "line_num": 2, "path": "./tests/samples/atlassian_pat", - "info": "./tests/samples/atlassian_pat|RAW", + "info": "FILE|RAW", "value": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE\\=00203E68", "value_start": 20, "value_end": 213, @@ -109,7 +109,7 @@ "line": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE%3D00203E68", "line_num": 3, "path": "./tests/samples/atlassian_pat", - "info": "./tests/samples/atlassian_pat|RAW", + "info": "FILE|RAW", "value": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE%3D00203E68", "value_start": 22, "value_end": 216, @@ -134,7 +134,7 @@ "line": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE%3d00203E68", "line_num": 4, "path": "./tests/samples/atlassian_pat", - "info": "./tests/samples/atlassian_pat|RAW", + "info": "FILE|RAW", "value": "ATATT3xFfGF0vNZ7oy6ON4KrWEzKEu96n-r2bCLOOcdOADizvJqPd89yKyP853uTZSflBi1Lk1zD460BqyMTa08VUEy8-oOzr1esg3j_mZKZwAELnRkCDTJZXhHsv5jaWHyAj4LRL-6h8LI-5MrYs4l7xXSaY8odQxDKJB4hDvdkmuh61xea2jE%3d00203E68", "value_start": 24, "value_end": 218, @@ -159,7 +159,7 @@ "line": "The items are AKIAGIREOGIAWSKEY123,AKIAGIREOGIAWSKEY45X", "line_num": 1, "path": "./tests/samples/aws_client_id", - "info": "./tests/samples/aws_client_id|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY123", "value_start": 14, "value_end": 34, @@ -184,7 +184,7 @@ "line": "The items are AKIAGIREOGIAWSKEY123,AKIAGIREOGIAWSKEY45X", "line_num": 1, "path": "./tests/samples/aws_client_id", - "info": "./tests/samples/aws_client_id|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY45X", "value_start": 35, "value_end": 55, @@ -209,7 +209,7 @@ "line": "\"AwsAccessKey\": \"AKIAGIREOGIAWSKEY123\",", "line_num": 2, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY123", "value_start": 21, "value_end": 41, @@ -234,7 +234,7 @@ "line": "\"AwsAccessKey\": \"AKIAGIREOGIAWSKEY123\",", "line_num": 2, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY123", "value_start": 21, "value_end": 41, @@ -251,7 +251,7 @@ "line": "\"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -276,7 +276,7 @@ "line": "\"AwsAccessKey2\": \"AKIAGIREOGIAWSKEY555\",", "line_num": 3, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY555", "value_start": 22, "value_end": 42, @@ -301,7 +301,7 @@ "line": "\"AwsAccessKey2\": \"AKIAGIREOGIAWSKEY555\",", "line_num": 3, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY555", "value_start": 22, "value_end": 42, @@ -318,7 +318,7 @@ "line": "\"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -343,7 +343,7 @@ "line": "\"AwsAccessKey2\": \"AKIAGIREOGIAWSKEY555\",", "line_num": 3, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAGIREOGIAWSKEY555", "value_start": 22, "value_end": 42, @@ -368,7 +368,7 @@ "line": "\"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -385,7 +385,7 @@ "line": "919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=96eabbec1f96", "line_num": 5, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAUJFP5MF6VFLQMG6K", "value_start": 242, "value_end": 262, @@ -410,7 +410,7 @@ "line": "\"AwsSecretKey\":\"CrackleGiReoGi123CrackleGiReoGi123AWSkey\",", "line_num": 4, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "CrackleGiReoGi123CrackleGiReoGi123AWSkey", "value_start": 20, "value_end": 60, @@ -435,7 +435,7 @@ "line": "919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAUJFP5MF6VFLQMG6K%2F21100651%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=96eabbec1f96", "line_num": 5, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "AKIAUJFP5MF6VFLQMG6K", "value_start": 242, "value_end": 262, @@ -460,7 +460,7 @@ "line": "\"output_url\": \"https://deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com/25a36d10001a8ef8e2f9cfa5-artsy-eigen-111-0?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20", "line_num": 5, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "deiqua-sagotxhozj-jijaik-uzkpa.s3.amazonaws.com", "value_start": 27, "value_end": 74, @@ -485,7 +485,7 @@ "line": "\"unicode_url\": \"https://iufurvyh.google.com/v1/projects/29182364324/clients?key=HrPioECfMsa602sfDyhzzIWok\\u0026amp;alt=json\\u003c/a\\u003e\\u003c/p\\u003e\\n\"", "line_num": 6, "path": "./tests/samples/aws_multi.json", - "info": "./tests/samples/aws_multi.json|RAW", + "info": "FILE|RAW", "value": "HrPioECfMsa602sfDyhzzIWok", "value_start": 84, "value_end": 109, @@ -510,7 +510,7 @@ "line": "\"AccessKeyId\" : \"AKIA0ON7V2DD57PL3JXM\",", "line_num": 7, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "AKIA0ON7V2DD57PL3JXM", "value_start": 21, "value_end": 41, @@ -535,7 +535,7 @@ "line": "\"AccessKeyId\" : \"AKIA0ON7V2DD57PL3JXM\",", "line_num": 7, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "AKIA0ON7V2DD57PL3JXM", "value_start": 21, "value_end": 41, @@ -552,7 +552,7 @@ "line": "\"SecretAccessKey\" : \"RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1\",", "line_num": 8, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1", "value_start": 25, "value_end": 60, @@ -577,7 +577,7 @@ "line": "\"AccessKeyId\" : \"AKIA0ON7V2DD57PL3JXM\",", "line_num": 7, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "AKIA0ON7V2DD57PL3JXM", "value_start": 21, "value_end": 41, @@ -602,7 +602,7 @@ "line": "\"SecretAccessKey\" : \"RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1\",", "line_num": 8, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1", "value_start": 25, "value_end": 60, @@ -627,7 +627,7 @@ "line": "\"SecretAccessKey\" : \"RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1\",", "line_num": 8, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "RMkMm8niUJ1iuhyugy3fFt5rtrf7GFQ9xz1", "value_start": 25, "value_end": 60, @@ -652,7 +652,7 @@ "line": "\"Token\" : \"J38YmIgn7dH6cw4W1yqoRgjsFsWvysFjfVcpCh7O9Yyv9/qNvNI\",", "line_num": 9, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "J38YmIgn7dH6cw4W1yqoRgjsFsWvysFjfVcpCh7O9Yyv9/qNvNI", "value_start": 15, "value_end": 66, @@ -677,7 +677,7 @@ "line": "\"Token\" : \"J38YmIgn7dH6cw4W1yqoRgjsFsWvysFjfVcpCh7O9Yyv9/qNvNI\",", "line_num": 9, "path": "./tests/samples/aws_multi.md", - "info": "./tests/samples/aws_multi.md|RAW", + "info": "FILE|RAW", "value": "J38YmIgn7dH6cw4W1yqoRgjsFsWvysFjfVcpCh7O9Yyv9/qNvNI", "value_start": 15, "value_end": 66, @@ -702,7 +702,7 @@ "line": "AWS_MWS_KEY = \"amzn.mws.c1dg4haz-6xd6-4gqi-vna2-ed3whf71x9k6\"", "line_num": 1, "path": "./tests/samples/aws_mws_key", - "info": "./tests/samples/aws_mws_key|RAW", + "info": "FILE|RAW", "value": "amzn.mws.c1dg4haz-6xd6-4gqi-vna2-ed3whf71x9k6", "value_start": 15, "value_end": 60, @@ -727,7 +727,7 @@ "line": "AWS_MWS_KEY = \"amzn.mws.c1dg4haz-6xd6-4gqi-vna2-ed3whf71x9k6\"", "line_num": 1, "path": "./tests/samples/aws_mws_key", - "info": "./tests/samples/aws_mws_key|RAW", + "info": "FILE|RAW", "value": "amzn.mws.c1dg4haz-6xd6-4gqi-vna2-ed3whf71x9k6", "value_start": 15, "value_end": 60, @@ -752,7 +752,7 @@ "line": "{\"url\" : \"https://circle-production-action-output.s3.amazonaws.com/283746ds4?X-Amz-Algorithm=AWS4-HMAC-SHA256\"}", "line_num": 1, "path": "./tests/samples/aws_s3_bucket", - "info": "./tests/samples/aws_s3_bucket|RAW", + "info": "FILE|RAW", "value": "circle-production-action-output.s3.amazonaws.com", "value_start": 18, "value_end": 66, @@ -777,7 +777,7 @@ "line": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiJlZjFkYTlkNC1mZjc3LTRjM2UtYTAwNS04NDBjM2Y4MzA3NDUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC9mYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTUyMjIyOS8iLCJpYXQiOjE1MzcyMzMxMDYsIm5iZiI6MTUzNzIzMzEwNiwiZXhwIjoxNTM3MjM3MDA2LCJhY3IiOiIxIiwiYWlvIjoiQVhRQWkvOElBQUFBRm0rRS9RVEcrZ0ZuVnhMaldkdzhLKzYxQUdyU091TU1GNmViYU1qN1hPM0libUQzZkdtck95RCtOdlp5R24yVmFUL2tES1h3NE1JaHJnR1ZxNkJuOHdMWG9UMUxrSVorRnpRVmtKUFBMUU9WNEtjWHFTbENWUERTL0RpQ0RnRTIyMlRJbU12V05hRU1hVU9Uc0lHdlRRPT0iLCJhbXIiOlsid2lhIl0sImFwcGlkIjoiNzVkYmU3N2YtMTBhMy00ZTU5LTg1ZmQtOGMxMjc1NDRmMTdjIiwiYXBwaWRhY3IiOiIwIiwiZW1haWwiOiJBYmVMaUBtaWNyb3NvZnQuY29tIiwiZmFtaWx5X25hbWUiOiJMaW5jb2xuIiwiZ2l2ZW5fbmFtZSI6IkFiZSAoTVNGVCkiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMjIyNDcvIiwiaXBhZGRyIjoiMjIyLjIyMi4yMjIuMjIiLCJuYW1lIjoiYWJlbGkiLCJvaWQiOiIwMjIyM2I2Yi1hYTFkLTQyZDQtOWVjMC0xYjJiYjkxOTQ0MzgiLCJyaCI6IkkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJsM19yb0lTUVUyMjJiVUxTOXlpMmswWHBxcE9pTXo1SDNaQUNvMUdlWEEiLCJ0aWQiOiJmYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTU2ZmQ0MjkiLCJ1bmlxdWVfbmFtZSI6ImFiZWxpQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJGVnNHeFlYSTMwLVR1aWt1dVVvRkFBIiwidmVyIjoiMS4wIn0.D3H6pMUtQnoJAGq6AHd", "line_num": 1, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiJlZjFkYTlkNC1mZjc3LTRjM2UtYTAwNS04NDBjM2Y4MzA3NDUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC9mYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTUyMjIyOS8iLCJpYXQiOjE1MzcyMzMxMDYsIm5iZiI6MTUzNzIzMzEwNiwiZXhwIjoxNTM3MjM3MDA2LCJhY3IiOiIxIiwiYWlvIjoiQVhRQWkvOElBQUFBRm0rRS9RVEcrZ0ZuVnhMaldkdzhLKzYxQUdyU091TU1GNmViYU1qN1hPM0libUQzZkdtck95RCtOdlp5R24yVmFUL2tES1h3NE1JaHJnR1ZxNkJuOHdMWG9UMUxrSVorRnpRVmtKUFBMUU9WNEtjWHFTbENWUERTL0RpQ0RnRTIyMlRJbU12V05hRU1hVU9Uc0lHdlRRPT0iLCJhbXIiOlsid2lhIl0sImFwcGlkIjoiNzVkYmU3N2YtMTBhMy00ZTU5LTg1ZmQtOGMxMjc1NDRmMTdjIiwiYXBwaWRhY3IiOiIwIiwiZW1haWwiOiJBYmVMaUBtaWNyb3NvZnQuY29tIiwiZmFtaWx5X25hbWUiOiJMaW5jb2xuIiwiZ2l2ZW5fbmFtZSI6IkFiZSAoTVNGVCkiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMjIyNDcvIiwiaXBhZGRyIjoiMjIyLjIyMi4yMjIuMjIiLCJuYW1lIjoiYWJlbGkiLCJvaWQiOiIwMjIyM2I2Yi1hYTFkLTQyZDQtOWVjMC0xYjJiYjkxOTQ0MzgiLCJyaCI6IkkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJsM19yb0lTUVUyMjJiVUxTOXlpMmswWHBxcE9pTXo1SDNaQUNvMUdlWEEiLCJ0aWQiOiJmYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTU2ZmQ0MjkiLCJ1bmlxdWVfbmFtZSI6ImFiZWxpQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJGVnNHeFlYSTMwLVR1aWt1dVVvRkFBIiwidmVyIjoiMS4wIn0.D3H6pMUtQnoJAGq6AHd", "value_start": 0, "value_end": 1316, @@ -802,7 +802,7 @@ "line": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiJlZjFkYTlkNC1mZjc3LTRjM2UtYTAwNS04NDBjM2Y4MzA3NDUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC9mYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTUyMjIyOS8iLCJpYXQiOjE1MzcyMzMxMDYsIm5iZiI6MTUzNzIzMzEwNiwiZXhwIjoxNTM3MjM3MDA2LCJhY3IiOiIxIiwiYWlvIjoiQVhRQWkvOElBQUFBRm0rRS9RVEcrZ0ZuVnhMaldkdzhLKzYxQUdyU091TU1GNmViYU1qN1hPM0libUQzZkdtck95RCtOdlp5R24yVmFUL2tES1h3NE1JaHJnR1ZxNkJuOHdMWG9UMUxrSVorRnpRVmtKUFBMUU9WNEtjWHFTbENWUERTL0RpQ0RnRTIyMlRJbU12V05hRU1hVU9Uc0lHdlRRPT0iLCJhbXIiOlsid2lhIl0sImFwcGlkIjoiNzVkYmU3N2YtMTBhMy00ZTU5LTg1ZmQtOGMxMjc1NDRmMTdjIiwiYXBwaWRhY3IiOiIwIiwiZW1haWwiOiJBYmVMaUBtaWNyb3NvZnQuY29tIiwiZmFtaWx5X25hbWUiOiJMaW5jb2xuIiwiZ2l2ZW5fbmFtZSI6IkFiZSAoTVNGVCkiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMjIyNDcvIiwiaXBhZGRyIjoiMjIyLjIyMi4yMjIuMjIiLCJuYW1lIjoiYWJlbGkiLCJvaWQiOiIwMjIyM2I2Yi1hYTFkLTQyZDQtOWVjMC0xYjJiYjkxOTQ0MzgiLCJyaCI6IkkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJsM19yb0lTUVUyMjJiVUxTOXlpMmswWHBxcE9pTXo1SDNaQUNvMUdlWEEiLCJ0aWQiOiJmYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTU2ZmQ0MjkiLCJ1bmlxdWVfbmFtZSI6ImFiZWxpQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJGVnNHeFlYSTMwLVR1aWt1dVVvRkFBIiwidmVyIjoiMS4wIn0.D3H6pMUtQnoJAGq6AHd", "line_num": 1, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiJlZjFkYTlkNC1mZjc3LTRjM2UtYTAwNS04NDBjM2Y4MzA3NDUiLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC9mYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTUyMjIyOS8iLCJpYXQiOjE1MzcyMzMxMDYsIm5iZiI6MTUzNzIzMzEwNiwiZXhwIjoxNTM3MjM3MDA2LCJhY3IiOiIxIiwiYWlvIjoiQVhRQWkvOElBQUFBRm0rRS9RVEcrZ0ZuVnhMaldkdzhLKzYxQUdyU091TU1GNmViYU1qN1hPM0libUQzZkdtck95RCtOdlp5R24yVmFUL2tES1h3NE1JaHJnR1ZxNkJuOHdMWG9UMUxrSVorRnpRVmtKUFBMUU9WNEtjWHFTbENWUERTL0RpQ0RnRTIyMlRJbU12V05hRU1hVU9Uc0lHdlRRPT0iLCJhbXIiOlsid2lhIl0sImFwcGlkIjoiNzVkYmU3N2YtMTBhMy00ZTU5LTg1ZmQtOGMxMjc1NDRmMTdjIiwiYXBwaWRhY3IiOiIwIiwiZW1haWwiOiJBYmVMaUBtaWNyb3NvZnQuY29tIiwiZmFtaWx5X25hbWUiOiJMaW5jb2xuIiwiZ2l2ZW5fbmFtZSI6IkFiZSAoTVNGVCkiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMjIyNDcvIiwiaXBhZGRyIjoiMjIyLjIyMi4yMjIuMjIiLCJuYW1lIjoiYWJlbGkiLCJvaWQiOiIwMjIyM2I2Yi1hYTFkLTQyZDQtOWVjMC0xYjJiYjkxOTQ0MzgiLCJyaCI6IkkiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJsM19yb0lTUVUyMjJiVUxTOXlpMmswWHBxcE9pTXo1SDNaQUNvMUdlWEEiLCJ0aWQiOiJmYTE1ZDY5Mi1lOWM3LTQ0NjAtYTc0My0yOWYyOTU2ZmQ0MjkiLCJ1bmlxdWVfbmFtZSI6ImFiZWxpQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJGVnNHeFlYSTMwLVR1aWt1dVVvRkFBIiwidmVyIjoiMS4wIn0.D3H6pMUtQnoJAGq6AHd", "value_start": 0, "value_end": 1316, @@ -827,7 +827,7 @@ "line": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiI2ZTc0MTcyYi1iZTU2LTQ4NDMtOWZmNC1lNjZhMzliYjEyZTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3YyLjAiLCJpYXQiOjE1MzcyMzEwNDgsIm5iZiI6MTUzNzIzMTA0OCwiZXhwIjoxNTM3MjM0OTQ4LCJhaW8iOiJBWFFBaS84SUFBQUF0QWFaTG8zQ2hNaWY2S09udHRSQjdlQnE0L0RjY1F6amNKR3hQWXkvQzNqRGFOR3hYZDZ3TklJVkdSZ2hOUm53SjFsT2NBbk5aY2p2a295ckZ4Q3R0djMzMTQwUmlvT0ZKNGJDQ0dWdW9DYWcxdU9UVDIyMjIyZ0h3TFBZUS91Zjc5UVgrMEtJaWpkcm1wNjlSY3R6bVE9PSIsImF6cCI6IjZlNzQxNzJiLWJlNTYtNDg0My05ZmY0LWU2NmEzOWJiMTJlMyIsImF6cGFjciI6IjAiLCJuYW1lIjoiQWJlIExpbmNvbG4iLCJvaWQiOiI2OTAyMjJiZS1mZjFhLTRkNTYtYWJkMS03ZTRmN2QzOGU0NzQiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJhYmVsaUBtaWNyb3NvZnQuY29tIiwicmgiOiJJIiwic2NwIjoiYWNjZXNzX2FzX3VzZXIiLCJzdWIiOiJIS1pwZmFIeVdhZGVPb3VZbGl0anJJLUtmZlRtMjIyWDVyclYzeERxZktRIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidXRpIjoiZnFpQnFYTFBqMGVRYTgyUy1JWUZBQSIsInZlciI6IjIuMCJ9.pj4N-w_3Us9DrBLfpCt", "line_num": 2, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiI2ZTc0MTcyYi1iZTU2LTQ4NDMtOWZmNC1lNjZhMzliYjEyZTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3YyLjAiLCJpYXQiOjE1MzcyMzEwNDgsIm5iZiI6MTUzNzIzMTA0OCwiZXhwIjoxNTM3MjM0OTQ4LCJhaW8iOiJBWFFBaS84SUFBQUF0QWFaTG8zQ2hNaWY2S09udHRSQjdlQnE0L0RjY1F6amNKR3hQWXkvQzNqRGFOR3hYZDZ3TklJVkdSZ2hOUm53SjFsT2NBbk5aY2p2a295ckZ4Q3R0djMzMTQwUmlvT0ZKNGJDQ0dWdW9DYWcxdU9UVDIyMjIyZ0h3TFBZUS91Zjc5UVgrMEtJaWpkcm1wNjlSY3R6bVE9PSIsImF6cCI6IjZlNzQxNzJiLWJlNTYtNDg0My05ZmY0LWU2NmEzOWJiMTJlMyIsImF6cGFjciI6IjAiLCJuYW1lIjoiQWJlIExpbmNvbG4iLCJvaWQiOiI2OTAyMjJiZS1mZjFhLTRkNTYtYWJkMS03ZTRmN2QzOGU0NzQiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJhYmVsaUBtaWNyb3NvZnQuY29tIiwicmgiOiJJIiwic2NwIjoiYWNjZXNzX2FzX3VzZXIiLCJzdWIiOiJIS1pwZmFIeVdhZGVPb3VZbGl0anJJLUtmZlRtMjIyWDVyclYzeERxZktRIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidXRpIjoiZnFpQnFYTFBqMGVRYTgyUy1JWUZBQSIsInZlciI6IjIuMCJ9.pj4N-w_3Us9DrBLfpCt", "value_start": 0, "value_end": 1029, @@ -852,7 +852,7 @@ "line": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiI2ZTc0MTcyYi1iZTU2LTQ4NDMtOWZmNC1lNjZhMzliYjEyZTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3YyLjAiLCJpYXQiOjE1MzcyMzEwNDgsIm5iZiI6MTUzNzIzMTA0OCwiZXhwIjoxNTM3MjM0OTQ4LCJhaW8iOiJBWFFBaS84SUFBQUF0QWFaTG8zQ2hNaWY2S09udHRSQjdlQnE0L0RjY1F6amNKR3hQWXkvQzNqRGFOR3hYZDZ3TklJVkdSZ2hOUm53SjFsT2NBbk5aY2p2a295ckZ4Q3R0djMzMTQwUmlvT0ZKNGJDQ0dWdW9DYWcxdU9UVDIyMjIyZ0h3TFBZUS91Zjc5UVgrMEtJaWpkcm1wNjlSY3R6bVE9PSIsImF6cCI6IjZlNzQxNzJiLWJlNTYtNDg0My05ZmY0LWU2NmEzOWJiMTJlMyIsImF6cGFjciI6IjAiLCJuYW1lIjoiQWJlIExpbmNvbG4iLCJvaWQiOiI2OTAyMjJiZS1mZjFhLTRkNTYtYWJkMS03ZTRmN2QzOGU0NzQiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJhYmVsaUBtaWNyb3NvZnQuY29tIiwicmgiOiJJIiwic2NwIjoiYWNjZXNzX2FzX3VzZXIiLCJzdWIiOiJIS1pwZmFIeVdhZGVPb3VZbGl0anJJLUtmZlRtMjIyWDVyclYzeERxZktRIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidXRpIjoiZnFpQnFYTFBqMGVRYTgyUy1JWUZBQSIsInZlciI6IjIuMCJ9.pj4N-w_3Us9DrBLfpCt", "line_num": 2, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Imk2bEdrM0ZaenhSY1ViMkMzbkVRN3N5SEpsWSJ9.eyJhdWQiOiI2ZTc0MTcyYi1iZTU2LTQ4NDMtOWZmNC1lNjZhMzliYjEyZTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3YyLjAiLCJpYXQiOjE1MzcyMzEwNDgsIm5iZiI6MTUzNzIzMTA0OCwiZXhwIjoxNTM3MjM0OTQ4LCJhaW8iOiJBWFFBaS84SUFBQUF0QWFaTG8zQ2hNaWY2S09udHRSQjdlQnE0L0RjY1F6amNKR3hQWXkvQzNqRGFOR3hYZDZ3TklJVkdSZ2hOUm53SjFsT2NBbk5aY2p2a295ckZ4Q3R0djMzMTQwUmlvT0ZKNGJDQ0dWdW9DYWcxdU9UVDIyMjIyZ0h3TFBZUS91Zjc5UVgrMEtJaWpkcm1wNjlSY3R6bVE9PSIsImF6cCI6IjZlNzQxNzJiLWJlNTYtNDg0My05ZmY0LWU2NmEzOWJiMTJlMyIsImF6cGFjciI6IjAiLCJuYW1lIjoiQWJlIExpbmNvbG4iLCJvaWQiOiI2OTAyMjJiZS1mZjFhLTRkNTYtYWJkMS03ZTRmN2QzOGU0NzQiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJhYmVsaUBtaWNyb3NvZnQuY29tIiwicmgiOiJJIiwic2NwIjoiYWNjZXNzX2FzX3VzZXIiLCJzdWIiOiJIS1pwZmFIeVdhZGVPb3VZbGl0anJJLUtmZlRtMjIyWDVyclYzeERxZktRIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidXRpIjoiZnFpQnFYTFBqMGVRYTgyUy1JWUZBQSIsInZlciI6IjIuMCJ9.pj4N-w_3Us9DrBLfpCt", "value_start": 0, "value_end": 1029, @@ -877,7 +877,7 @@ "line": "t 189shdhgr893rgdg74sdsdfkksdhtg87dyfwegjddshjhsgjsgdhJQQJ99ALACAAAAAAAAAAAAASAZDO1e4drs==", "line_num": 5, "path": "./tests/samples/azure_access_token", - "info": "./tests/samples/azure_access_token|RAW", + "info": "FILE|RAW", "value": "189shdhgr893rgdg74sdsdfkksdhtg87dyfwegjddshjhsgjsgdhJQQJ99ALACAAAAAAAAAAAAASAZDO1e4drs==", "value_start": 2, "value_end": 90, @@ -902,7 +902,7 @@ "line": "client_srt = \"qpF8Q~PCM5MhMoyTFc5TYEomnzRUKim9UJhe8a2P\";", "line_num": 1, "path": "./tests/samples/azure_secret_value", - "info": "./tests/samples/azure_secret_value|RAW", + "info": "FILE|RAW", "value": "qpF8Q~PCM5MhMoyTFc5TYEomnzRUKim9UJhe8a2P", "value_start": 14, "value_end": 54, @@ -927,7 +927,7 @@ "line": "\"bitbucket\" : \"BBDC-MzQ2Njc4NjkyMDgwOsEidtxMt9WDExIOYPEWBFXH093l\"", "line_num": 1, "path": "./tests/samples/bitbuckert_http_access_token", - "info": "./tests/samples/bitbuckert_http_access_token|RAW", + "info": "FILE|RAW", "value": "BBDC-MzQ2Njc4NjkyMDgwOsEidtxMt9WDExIOYPEWBFXH093l", "value_start": 15, "value_end": 64, @@ -952,7 +952,7 @@ "line": "app_sample:ATBBcCe6fczW96Vzwgvb4r8F2gZS54D591C4", "line_num": 1, "path": "./tests/samples/bitbucket_app_password", - "info": "./tests/samples/bitbucket_app_password|RAW", + "info": "FILE|RAW", "value": "ATBBcCe6fczW96Vzwgvb4r8F2gZS54D591C4", "value_start": 11, "value_end": 47, @@ -977,7 +977,7 @@ "line": "bitbucket_client : \"0DIwN2M1NefTgs3Ghr54TMxNzOhFZPhB\"", "line_num": 1, "path": "./tests/samples/bitbucket_client_id", - "info": "./tests/samples/bitbucket_client_id|RAW", + "info": "FILE|RAW", "value": "0DIwN2M1NefTgs3Ghr54TMxNzOhFZPhB", "value_start": 20, "value_end": 52, @@ -1002,7 +1002,7 @@ "line": "bitbucket_client : \"0DIwN2M1NefTgs3Ghr54TMxNzOhFZPhB\"", "line_num": 1, "path": "./tests/samples/bitbucket_client_id", - "info": "./tests/samples/bitbucket_client_id|RAW", + "info": "FILE|RAW", "value": "0DIwN2M1NefTgs3Ghr54TMxNzOhFZPhB", "value_start": 20, "value_end": 52, @@ -1027,7 +1027,7 @@ "line": "bitbucket_client_2 : \"0DIwN2M1NTeGd6S6jU\"", "line_num": 3, "path": "./tests/samples/bitbucket_client_id", - "info": "./tests/samples/bitbucket_client_id|RAW", + "info": "FILE|RAW", "value": "0DIwN2M1NTeGd6S6jU", "value_start": 22, "value_end": 40, @@ -1052,7 +1052,7 @@ "line": "bitbucket_client_data_v2 : \"0sTMxNzkI3fDM1NwOhFZ_PhBuW-3keLB\"", "line_num": 2, "path": "./tests/samples/bitbucket_client_secret", - "info": "./tests/samples/bitbucket_client_secret|RAW", + "info": "FILE|RAW", "value": "0sTMxNzkI3fDM1NwOhFZ_PhBuW-3keLB", "value_start": 28, "value_end": 60, @@ -1077,7 +1077,7 @@ "line": "\"Bitbucket Repository Access Token\" : \"ATCTT3xFfGN0zXtbKHz2POF86xa-2aBiYC4o_T3-myk01bmFVluUIFtGm_VFQwLizp4o1FKw-AMZhtdA0NzizshnA8WzRdfgv6GeTyowCD101oqKbJ4nx9DFs", "line_num": 1, "path": "./tests/samples/bitbucket_repository_access_token", - "info": "./tests/samples/bitbucket_repository_access_token|RAW", + "info": "FILE|RAW", "value": "ATCTT3xFfGN0zXtbKHz2POF86xa-2aBiYC4o_T3-myk01bmFVluUIFtGm_VFQwLizp4o1FKw-AMZhtdA", "value_start": 39, "value_end": 119, @@ -1102,7 +1102,7 @@ "line": "ATCTT3xFfGN0zXtbKHz2POF86xa-2aBiYC4o_T3-myk01bmFVluUIFtGm_VFQwLizp4o1FKw-AMZhtdA0NzizshnA8WzRdfgv6GeTyowCD101oqKbJ4nx9DFsar5YyUNkwO9maR9-00tQvfciyfOHtPKG6K1d76Ki3iFo7roGeyJu4j1jM3GwQ4=EDDE81AD", "line_num": 1, "path": "./tests/samples/bitbucket_repository_access_token", - "info": "./tests/samples/bitbucket_repository_access_token|RAW", + "info": "FILE|RAW", "value": "ATCTT3xFfGN0zXtbKHz2POF86xa-2aBiYC4o_T3-myk01bmFVluUIFtGm_VFQwLizp4o1FKw-AMZhtdA0NzizshnA8WzRdfgv6GeTyowCD101oqKbJ4nx9DFsar5YyUNkwO9maR9-00tQvfciyfOHtPKG6K1d76Ki3iFo7roGeyJu4j1jM3GwQ4=EDDE81AD", "value_start": 39, "value_end": 231, @@ -1127,7 +1127,7 @@ "line": "dummy line", "line_num": 0, "path": "./tests/samples/changeit_crt.jks", - "info": "./tests/samples/changeit_crt.jks:'changeit' - default password", + "info": "FILE|JKS:'changeit' - default password", "value": null, "value_start": -2, "value_end": -2, @@ -1152,7 +1152,7 @@ "line": "dummy line", "line_num": 0, "path": "./tests/samples/changeit_crt.pkcs12", - "info": "./tests/samples/changeit_crt.pkcs12:'changeit' - default password PKCS12", + "info": "FILE|PKCS12:'changeit' - default password PKCS12", "value": null, "value_start": -2, "value_end": -2, @@ -1177,7 +1177,7 @@ "line": "dummy line", "line_num": 0, "path": "./tests/samples/changeme_key.jks", - "info": "./tests/samples/changeme_key.jks:'changeme' - has keys", + "info": "FILE|JKS:'changeme' - has keys", "value": null, "value_start": -2, "value_end": -2, @@ -1202,7 +1202,7 @@ "line": "mysql -u root --password Sne3sd8AZjq", "line_num": 2, "path": "./tests/samples/cmd_credential", - "info": "./tests/samples/cmd_credential|RAW", + "info": "FILE|RAW", "value": "--password", "value_start": 14, "value_end": 24, @@ -1219,7 +1219,7 @@ "line": "mysql -u root --password Sne3sd8AZjq", "line_num": 2, "path": "./tests/samples/cmd_credential", - "info": "./tests/samples/cmd_credential|RAW", + "info": "FILE|RAW", "value": "Sne3sd8AZjq", "value_start": 25, "value_end": 36, @@ -1244,7 +1244,7 @@ "line": "--super-secret_token 1ace4d19-fa7e-b4e2-c3f0-9129474bcd81", "line_num": 4, "path": "./tests/samples/cmd_credential", - "info": "./tests/samples/cmd_credential|RAW", + "info": "FILE|RAW", "value": "1ace4d19-fa7e-b4e2-c3f0-9129474bcd81", "value_start": 21, "value_end": 57, @@ -1269,7 +1269,7 @@ "line": "digital_oc = 'doo_v1_c46dde8bd623be6efab141fa2452e10fcc382e70d5da882493477828eba24a8c';", "line_num": 1, "path": "./tests/samples/digital_ocean_oauth_access_token", - "info": "./tests/samples/digital_ocean_oauth_access_token|RAW", + "info": "FILE|RAW", "value": "doo_v1_c46dde8bd623be6efab141fa2452e10fcc382e70d5da882493477828eba24a8c", "value_start": 14, "value_end": 85, @@ -1294,7 +1294,7 @@ "line": "dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "line_num": 1, "path": "./tests/samples/digital_ocean_pat", - "info": "./tests/samples/digital_ocean_pat|RAW", + "info": "FILE|RAW", "value": "dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "value_start": 0, "value_end": 71, @@ -1319,7 +1319,7 @@ "line": "MTIzNDU2Nzg5MDEyMzQ1Njc4OQ.E2-E4_.Zig9V5mpMk-JybgCFvqSfgY9EoqWjkA5O_qDje", "line_num": 1, "path": "./tests/samples/discord_bot_token", - "info": "./tests/samples/discord_bot_token|RAW", + "info": "FILE|RAW", "value": "MTIzNDU2Nzg5MDEyMzQ1Njc4OQ.E2-E4_.Zig9V5mpMk-JybgCFvqSfgY9EoqWjkA5O_qDje", "value_start": 0, "value_end": 72, @@ -1344,7 +1344,7 @@ "line": "T https://discordapp.com/api/webhooks/148392840000482200/ihUFAgIi-OsnNHsjJBpvzkzZOicbe0R2UkWo1nvOnkLGHWJnW8HZjF_dRDj7fi5q3u2h", "line_num": 1, "path": "./tests/samples/discord_webhook", - "info": "./tests/samples/discord_webhook|RAW", + "info": "FILE|RAW", "value": "/148392840000482200/ihUFAgIi-OsnNHsjJBpvzkzZOicbe0R2UkWo1nvOnkLGHWJnW8HZjF_dRDj7fi5q3u2h", "value_start": 37, "value_end": 125, @@ -1369,7 +1369,7 @@ "line": "my password is 237dg546fs9", "line_num": 1, "path": "./tests/samples/doc_credentials_p", - "info": "./tests/samples/doc_credentials_p|RAW", + "info": "FILE|RAW", "value": "237dg546fs9", "value_start": 15, "value_end": 26, @@ -1394,7 +1394,7 @@ "line": "ID:master,PW:dipPr10Gg!", "line_num": 1, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr10Gg!", "value_start": 13, "value_end": 23, @@ -1411,7 +1411,7 @@ "line": "ID:master,PW:dipPr10Gg!", "line_num": 1, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,PW:dipPr10Gg!", "value_start": 3, "value_end": 23, @@ -1436,7 +1436,7 @@ "line": "ID:master,PW:dipPr10Gg!", "line_num": 1, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr10Gg!", "value_start": 13, "value_end": 23, @@ -1461,7 +1461,7 @@ "line": "ID:master PW:dipPr11Gg!", "line_num": 2, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr11Gg!", "value_start": 13, "value_end": 23, @@ -1478,7 +1478,7 @@ "line": "ID:master PW:dipPr11Gg!", "line_num": 2, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 3, "value_end": 9, @@ -1503,7 +1503,7 @@ "line": "ID:master PW:dipPr11Gg!", "line_num": 2, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr11Gg!", "value_start": 13, "value_end": 23, @@ -1528,7 +1528,7 @@ "line": "ANYID:master PW:dipPr12Gg!", "line_num": 3, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr12Gg!", "value_start": 16, "value_end": 26, @@ -1545,7 +1545,7 @@ "line": "ANYID:master PW:dipPr12Gg!", "line_num": 3, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 6, "value_end": 12, @@ -1570,7 +1570,7 @@ "line": "ANYID:master PW:dipPr12Gg!", "line_num": 3, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr12Gg!", "value_start": 16, "value_end": 26, @@ -1595,7 +1595,7 @@ "line": "Username:master Password:dipPr13Gg!", "line_num": 4, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr13Gg!", "value_start": 25, "value_end": 35, @@ -1612,7 +1612,7 @@ "line": "Username:master Password:dipPr13Gg!", "line_num": 4, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 9, "value_end": 15, @@ -1637,7 +1637,7 @@ "line": "Username:master Password:dipPr13Gg!", "line_num": 4, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr13Gg!", "value_start": 25, "value_end": 35, @@ -1662,7 +1662,7 @@ "line": "id:master,password:dipPr14Gg!", "line_num": 5, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr14Gg!", "value_start": 19, "value_end": 29, @@ -1687,7 +1687,7 @@ "line": "id:master,password:dipPr14Gg!", "line_num": 5, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr14Gg!", "value_start": 19, "value_end": 29, @@ -1704,7 +1704,7 @@ "line": "id:master,password:dipPr14Gg!", "line_num": 5, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password:dipPr14Gg!", "value_start": 3, "value_end": 29, @@ -1729,7 +1729,7 @@ "line": "id:master,password:dipPr14Gg!", "line_num": 5, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr14Gg!", "value_start": 19, "value_end": 29, @@ -1754,7 +1754,7 @@ "line": "ID:master/PW:dipPr15Gg!", "line_num": 6, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr15Gg!", "value_start": 13, "value_end": 23, @@ -1771,7 +1771,7 @@ "line": "ID:master/PW:dipPr15Gg!", "line_num": 6, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/PW:dipPr15Gg!", "value_start": 3, "value_end": 23, @@ -1796,7 +1796,7 @@ "line": "ID:master/PW:dipPr15Gg!", "line_num": 6, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr15Gg!", "value_start": 13, "value_end": 23, @@ -1821,7 +1821,7 @@ "line": "id:master password:dipPr16Gg!", "line_num": 7, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr16Gg!", "value_start": 19, "value_end": 29, @@ -1846,7 +1846,7 @@ "line": "id:master password:dipPr16Gg!", "line_num": 7, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr16Gg!", "value_start": 19, "value_end": 29, @@ -1863,7 +1863,7 @@ "line": "id:master password:dipPr16Gg!", "line_num": 7, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 3, "value_end": 9, @@ -1888,7 +1888,7 @@ "line": "id:master password:dipPr16Gg!", "line_num": 7, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr16Gg!", "value_start": 19, "value_end": 29, @@ -1913,7 +1913,7 @@ "line": "user:master password:dipPr17Gg!", "line_num": 8, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr17Gg!", "value_start": 21, "value_end": 31, @@ -1938,7 +1938,7 @@ "line": "user:master password:dipPr17Gg!", "line_num": 8, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr17Gg!", "value_start": 21, "value_end": 31, @@ -1955,7 +1955,7 @@ "line": "user:master password:dipPr17Gg!", "line_num": 8, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 5, "value_end": 11, @@ -1980,7 +1980,7 @@ "line": "user:master password:dipPr17Gg!", "line_num": 8, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr17Gg!", "value_start": 21, "value_end": 31, @@ -2005,7 +2005,7 @@ "line": "username:master,password:dipPr19Gg!", "line_num": 10, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr19Gg!", "value_start": 25, "value_end": 35, @@ -2030,7 +2030,7 @@ "line": "username:master,password:dipPr19Gg!", "line_num": 10, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr19Gg!", "value_start": 25, "value_end": 35, @@ -2047,7 +2047,7 @@ "line": "username:master,password:dipPr19Gg!", "line_num": 10, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password:dipPr19Gg!", "value_start": 9, "value_end": 35, @@ -2072,7 +2072,7 @@ "line": "username:master,password:dipPr19Gg!", "line_num": 10, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr19Gg!", "value_start": 25, "value_end": 35, @@ -2097,7 +2097,7 @@ "line": "username:master pwd:dipPr110Gg!", "line_num": 11, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr110Gg!", "value_start": 20, "value_end": 31, @@ -2114,7 +2114,7 @@ "line": "username:master pwd:dipPr110Gg!", "line_num": 11, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 9, "value_end": 15, @@ -2139,7 +2139,7 @@ "line": "username:master pwd:dipPr110Gg!", "line_num": 11, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr110Gg!", "value_start": 20, "value_end": 31, @@ -2164,7 +2164,7 @@ "line": "ANYid:master,password:dipPr111Gg!", "line_num": 12, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr111Gg!", "value_start": 22, "value_end": 33, @@ -2189,7 +2189,7 @@ "line": "ANYid:master,password:dipPr111Gg!", "line_num": 12, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr111Gg!", "value_start": 22, "value_end": 33, @@ -2206,7 +2206,7 @@ "line": "ANYid:master,password:dipPr111Gg!", "line_num": 12, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password:dipPr111Gg!", "value_start": 6, "value_end": 33, @@ -2231,7 +2231,7 @@ "line": "ANYid:master,password:dipPr111Gg!", "line_num": 12, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr111Gg!", "value_start": 22, "value_end": 33, @@ -2256,7 +2256,7 @@ "line": "ID:master PWD:dipPr112Gg!", "line_num": 13, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr112Gg!", "value_start": 14, "value_end": 25, @@ -2273,7 +2273,7 @@ "line": "ID:master PWD:dipPr112Gg!", "line_num": 13, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 3, "value_end": 9, @@ -2298,7 +2298,7 @@ "line": "ID:master PWD:dipPr112Gg!", "line_num": 13, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr112Gg!", "value_start": 14, "value_end": 25, @@ -2323,7 +2323,7 @@ "line": "user id:master password:dipPr113Gg!", "line_num": 14, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr113Gg!", "value_start": 24, "value_end": 35, @@ -2348,7 +2348,7 @@ "line": "user id:master password:dipPr113Gg!", "line_num": 14, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr113Gg!", "value_start": 24, "value_end": 35, @@ -2365,7 +2365,7 @@ "line": "user id:master password:dipPr113Gg!", "line_num": 14, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 8, "value_end": 14, @@ -2390,7 +2390,7 @@ "line": "user id:master password:dipPr113Gg!", "line_num": 14, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr113Gg!", "value_start": 24, "value_end": 35, @@ -2415,7 +2415,7 @@ "line": "user:master,password:dipPr114Gg!", "line_num": 15, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr114Gg!", "value_start": 21, "value_end": 32, @@ -2440,7 +2440,7 @@ "line": "user:master,password:dipPr114Gg!", "line_num": 15, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr114Gg!", "value_start": 21, "value_end": 32, @@ -2457,7 +2457,7 @@ "line": "user:master,password:dipPr114Gg!", "line_num": 15, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password:dipPr114Gg!", "value_start": 5, "value_end": 32, @@ -2482,7 +2482,7 @@ "line": "user:master,password:dipPr114Gg!", "line_num": 15, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr114Gg!", "value_start": 21, "value_end": 32, @@ -2507,7 +2507,7 @@ "line": "user=master,password=dipPr115Gg!", "line_num": 16, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr115Gg!", "value_start": 21, "value_end": 32, @@ -2532,7 +2532,7 @@ "line": "user=master,password=dipPr115Gg!", "line_num": 16, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr115Gg!", "value_start": 21, "value_end": 32, @@ -2549,7 +2549,7 @@ "line": "user=master,password=dipPr115Gg!", "line_num": 16, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password=dipPr115Gg!", "value_start": 5, "value_end": 32, @@ -2574,7 +2574,7 @@ "line": "user=master,password=dipPr115Gg!", "line_num": 16, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr115Gg!", "value_start": 21, "value_end": 32, @@ -2599,7 +2599,7 @@ "line": "username=master password=dipPr116Gg!", "line_num": 17, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr116Gg!", "value_start": 25, "value_end": 36, @@ -2624,7 +2624,7 @@ "line": "username=master password=dipPr116Gg!", "line_num": 17, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr116Gg!", "value_start": 25, "value_end": 36, @@ -2641,7 +2641,7 @@ "line": "username=master password=dipPr116Gg!", "line_num": 17, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 9, "value_end": 15, @@ -2666,7 +2666,7 @@ "line": "username=master password=dipPr116Gg!", "line_num": 17, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr116Gg!", "value_start": 25, "value_end": 36, @@ -2691,7 +2691,7 @@ "line": "User name:master Password:dipPr117Gg!", "line_num": 18, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr117Gg!", "value_start": 26, "value_end": 37, @@ -2716,7 +2716,7 @@ "line": "User name:master Password:dipPr117Gg!", "line_num": 18, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr117Gg!", "value_start": 26, "value_end": 37, @@ -2733,7 +2733,7 @@ "line": "User name:master Password:dipPr117Gg!", "line_num": 18, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 10, "value_end": 16, @@ -2758,7 +2758,7 @@ "line": "User name:master Password:dipPr117Gg!", "line_num": 18, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr117Gg!", "value_start": 26, "value_end": 37, @@ -2783,7 +2783,7 @@ "line": "username=master,password=dipPr118Gg!", "line_num": 19, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr118Gg!", "value_start": 25, "value_end": 36, @@ -2808,7 +2808,7 @@ "line": "username=master,password=dipPr118Gg!", "line_num": 19, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr118Gg!", "value_start": 25, "value_end": 36, @@ -2825,7 +2825,7 @@ "line": "username=master,password=dipPr118Gg!", "line_num": 19, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password=dipPr118Gg!", "value_start": 9, "value_end": 36, @@ -2850,7 +2850,7 @@ "line": "username=master,password=dipPr118Gg!", "line_num": 19, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr118Gg!", "value_start": 25, "value_end": 36, @@ -2875,7 +2875,7 @@ "line": "--user=master --password=dipPr119Gg!", "line_num": 20, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr119Gg!", "value_start": 25, "value_end": 36, @@ -2900,7 +2900,7 @@ "line": "--user=master --password=dipPr119Gg!", "line_num": 20, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr119Gg!", "value_start": 25, "value_end": 36, @@ -2917,7 +2917,7 @@ "line": "--user=master --password=dipPr119Gg!", "line_num": 20, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 7, "value_end": 13, @@ -2942,7 +2942,7 @@ "line": "--user=master --password=dipPr119Gg!", "line_num": 20, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr119Gg!", "value_start": 25, "value_end": 36, @@ -2967,7 +2967,7 @@ "line": "user=master passwd=dipPr120Gg!", "line_num": 21, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr120Gg!", "value_start": 19, "value_end": 30, @@ -2992,7 +2992,7 @@ "line": "user=master passwd=dipPr120Gg!", "line_num": 21, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr120Gg!", "value_start": 19, "value_end": 30, @@ -3009,7 +3009,7 @@ "line": "user=master passwd=dipPr120Gg!", "line_num": 21, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 5, "value_end": 11, @@ -3034,7 +3034,7 @@ "line": "user=master passwd=dipPr120Gg!", "line_num": 21, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr120Gg!", "value_start": 19, "value_end": 30, @@ -3059,7 +3059,7 @@ "line": "account:dipPr121Gg! password:dipPr121Gg!", "line_num": 22, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr121Gg!", "value_start": 8, "value_end": 19, @@ -3076,7 +3076,7 @@ "line": "account:dipPr121Gg! password:dipPr121Gg!", "line_num": 22, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr121Gg!", "value_start": 29, "value_end": 40, @@ -3101,7 +3101,7 @@ "line": "account:dipPr121Gg! password:dipPr121Gg!", "line_num": 22, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr121Gg!", "value_start": 29, "value_end": 40, @@ -3126,7 +3126,7 @@ "line": "account:dipPr121Gg! password:dipPr121Gg!", "line_num": 22, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr121Gg!", "value_start": 29, "value_end": 40, @@ -3151,7 +3151,7 @@ "line": "\uc544\uc774\ub514:master \ud328\uc2a4\uc6cc\ub4dc:dipPr123Gg!", "line_num": 24, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr123Gg!", "value_start": 16, "value_end": 27, @@ -3168,7 +3168,7 @@ "line": "\uc544\uc774\ub514:master \ud328\uc2a4\uc6cc\ub4dc:dipPr123Gg!", "line_num": 24, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 4, "value_end": 10, @@ -3193,7 +3193,7 @@ "line": "\uc544\uc774\ub514:master \ud328\uc2a4\uc6cc\ub4dc:dipPr123Gg!", "line_num": 24, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr123Gg!", "value_start": 16, "value_end": 27, @@ -3218,7 +3218,7 @@ "line": "user:master pw:dipPr124Gg!", "line_num": 25, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr124Gg!", "value_start": 15, "value_end": 26, @@ -3243,7 +3243,7 @@ "line": "user:master pw:dipPr124Gg!", "line_num": 25, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr124Gg!", "value_start": 15, "value_end": 26, @@ -3260,7 +3260,7 @@ "line": "user:master pw:dipPr124Gg!", "line_num": 25, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 5, "value_end": 11, @@ -3285,7 +3285,7 @@ "line": "user:master pw:dipPr124Gg!", "line_num": 25, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr124Gg!", "value_start": 15, "value_end": 26, @@ -3310,7 +3310,7 @@ "line": "Username:master/Password:dipPr125Gg!", "line_num": 26, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr125Gg!", "value_start": 25, "value_end": 36, @@ -3327,7 +3327,7 @@ "line": "Username:master/Password:dipPr125Gg!", "line_num": 26, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/Password:dipPr125Gg!", "value_start": 9, "value_end": 36, @@ -3352,7 +3352,7 @@ "line": "Username:master/Password:dipPr125Gg!", "line_num": 26, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr125Gg!", "value_start": 25, "value_end": 36, @@ -3377,7 +3377,7 @@ "line": "userId:master,password:dipPr126Gg!", "line_num": 27, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr126Gg!", "value_start": 23, "value_end": 34, @@ -3402,7 +3402,7 @@ "line": "userId:master,password:dipPr126Gg!", "line_num": 27, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr126Gg!", "value_start": 23, "value_end": 34, @@ -3419,7 +3419,7 @@ "line": "userId:master,password:dipPr126Gg!", "line_num": 27, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password:dipPr126Gg!", "value_start": 7, "value_end": 34, @@ -3444,7 +3444,7 @@ "line": "userId:master,password:dipPr126Gg!", "line_num": 27, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr126Gg!", "value_start": 23, "value_end": 34, @@ -3469,7 +3469,7 @@ "line": "--user master --password dipPr127Gg!", "line_num": 28, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr127Gg!", "value_start": 25, "value_end": 36, @@ -3486,7 +3486,7 @@ "line": "--user master --password dipPr127Gg!", "line_num": 28, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 7, "value_end": 13, @@ -3511,7 +3511,7 @@ "line": "dipPr128Gg! ID:master dipPr128Gg! Password:dipPr128Gg!", "line_num": 29, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr128Gg!", "value_start": 43, "value_end": 54, @@ -3536,7 +3536,7 @@ "line": "dipPr128Gg! ID:master dipPr128Gg! Password:dipPr128Gg!", "line_num": 29, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr128Gg!", "value_start": 43, "value_end": 54, @@ -3553,7 +3553,7 @@ "line": "dipPr128Gg! ID:master dipPr128Gg! Password:dipPr128Gg!", "line_num": 29, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 15, "value_end": 21, @@ -3578,7 +3578,7 @@ "line": "dipPr128Gg! ID:master dipPr128Gg! Password:dipPr128Gg!", "line_num": 29, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr128Gg!", "value_start": 43, "value_end": 54, @@ -3603,7 +3603,7 @@ "line": "ANYid:master,pw:dipPr129Gg!", "line_num": 30, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr129Gg!", "value_start": 16, "value_end": 27, @@ -3628,7 +3628,7 @@ "line": "ANYid:master,pw:dipPr129Gg!", "line_num": 30, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr129Gg!", "value_start": 16, "value_end": 27, @@ -3645,7 +3645,7 @@ "line": "ANYid:master,pw:dipPr129Gg!", "line_num": 30, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,pw:dipPr129Gg!", "value_start": 6, "value_end": 27, @@ -3670,7 +3670,7 @@ "line": "ANYid:master,pw:dipPr129Gg!", "line_num": 30, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr129Gg!", "value_start": 16, "value_end": 27, @@ -3695,7 +3695,7 @@ "line": "user:master pwd:dipPr130Gg!", "line_num": 31, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr130Gg!", "value_start": 16, "value_end": 27, @@ -3712,7 +3712,7 @@ "line": "user:master pwd:dipPr130Gg!", "line_num": 31, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 5, "value_end": 11, @@ -3737,7 +3737,7 @@ "line": "user:master pwd:dipPr130Gg!", "line_num": 31, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr130Gg!", "value_start": 16, "value_end": 27, @@ -3762,7 +3762,7 @@ "line": "Login:dipPr131Gg! Pwd:dipPr131Gg!", "line_num": 32, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr131Gg!", "value_start": 6, "value_end": 17, @@ -3779,7 +3779,7 @@ "line": "Login:dipPr131Gg! Pwd:dipPr131Gg!", "line_num": 32, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr131Gg!", "value_start": 22, "value_end": 33, @@ -3804,7 +3804,7 @@ "line": "Login:dipPr131Gg! Pwd:dipPr131Gg!", "line_num": 32, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr131Gg!", "value_start": 22, "value_end": 33, @@ -3829,7 +3829,7 @@ "line": "ANYID:master Password:dipPr132Gg!", "line_num": 33, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr132Gg!", "value_start": 22, "value_end": 33, @@ -3854,7 +3854,7 @@ "line": "ANYID:master Password:dipPr132Gg!", "line_num": 33, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr132Gg!", "value_start": 22, "value_end": 33, @@ -3871,7 +3871,7 @@ "line": "ANYID:master Password:dipPr132Gg!", "line_num": 33, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 6, "value_end": 12, @@ -3896,7 +3896,7 @@ "line": "ANYID:master Password:dipPr132Gg!", "line_num": 33, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr132Gg!", "value_start": 22, "value_end": 33, @@ -3921,7 +3921,7 @@ "line": "-Username:master -Password:dipPr133Gg!", "line_num": 34, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr133Gg!", "value_start": 27, "value_end": 38, @@ -3938,7 +3938,7 @@ "line": "-Username:master -Password:dipPr133Gg!", "line_num": 34, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 10, "value_end": 16, @@ -3963,7 +3963,7 @@ "line": "-Username:master -Password:dipPr133Gg!", "line_num": 34, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr133Gg!", "value_start": 27, "value_end": 38, @@ -3988,7 +3988,7 @@ "line": "account:dipPr134Gg! pw:dipPr134Gg!", "line_num": 35, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr134Gg!", "value_start": 8, "value_end": 19, @@ -4005,7 +4005,7 @@ "line": "account:dipPr134Gg! pw:dipPr134Gg!", "line_num": 35, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr134Gg!", "value_start": 23, "value_end": 34, @@ -4030,7 +4030,7 @@ "line": "account:dipPr134Gg! pw:dipPr134Gg!", "line_num": 35, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr134Gg!", "value_start": 23, "value_end": 34, @@ -4055,7 +4055,7 @@ "line": "account:dipPr134Gg! pw:dipPr134Gg!", "line_num": 35, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr134Gg!", "value_start": 23, "value_end": 34, @@ -4080,7 +4080,7 @@ "line": "user id:master user pw:dipPr135Gg!", "line_num": 36, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr135Gg!", "value_start": 23, "value_end": 34, @@ -4105,7 +4105,7 @@ "line": "user id:master user pw:dipPr135Gg!", "line_num": 36, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr135Gg!", "value_start": 23, "value_end": 34, @@ -4122,7 +4122,7 @@ "line": "user id:master user pw:dipPr135Gg!", "line_num": 36, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 8, "value_end": 14, @@ -4139,7 +4139,7 @@ "line": "user id:master user pw:dipPr135Gg!", "line_num": 36, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "pw:dipPr135Gg!", "value_start": 20, "value_end": 34, @@ -4164,7 +4164,7 @@ "line": "user id:master user pw:dipPr135Gg!", "line_num": 36, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr135Gg!", "value_start": 23, "value_end": 34, @@ -4189,7 +4189,7 @@ "line": "user_name=master password=dipPr136Gg!", "line_num": 37, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr136Gg!", "value_start": 26, "value_end": 37, @@ -4214,7 +4214,7 @@ "line": "user_name=master password=dipPr136Gg!", "line_num": 37, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr136Gg!", "value_start": 26, "value_end": 37, @@ -4231,7 +4231,7 @@ "line": "user_name=master password=dipPr136Gg!", "line_num": 37, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 10, "value_end": 16, @@ -4256,7 +4256,7 @@ "line": "user_name=master password=dipPr136Gg!", "line_num": 37, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr136Gg!", "value_start": 26, "value_end": 37, @@ -4281,7 +4281,7 @@ "line": "--username master --password dipPr137Gg!", "line_num": 38, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr137Gg!", "value_start": 29, "value_end": 40, @@ -4298,7 +4298,7 @@ "line": "--username master --password dipPr137Gg!", "line_num": 38, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 11, "value_end": 17, @@ -4323,7 +4323,7 @@ "line": "ANYlogin:master,ANYpassword:dipPr138Gg!", "line_num": 39, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr138Gg!", "value_start": 28, "value_end": 39, @@ -4348,7 +4348,7 @@ "line": "ANYlogin:master,ANYpassword:dipPr138Gg!", "line_num": 39, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr138Gg!", "value_start": 28, "value_end": 39, @@ -4365,7 +4365,7 @@ "line": "ANYlogin:master,ANYpassword:dipPr138Gg!", "line_num": 39, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,ANYpassword:dipPr138Gg!", "value_start": 9, "value_end": 39, @@ -4390,7 +4390,7 @@ "line": "ANYlogin:master,ANYpassword:dipPr138Gg!", "line_num": 39, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr138Gg!", "value_start": 28, "value_end": 39, @@ -4415,7 +4415,7 @@ "line": "ANYusername=master ANYpassword=dipPr139Gg!", "line_num": 40, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr139Gg!", "value_start": 31, "value_end": 42, @@ -4440,7 +4440,7 @@ "line": "ANYusername=master ANYpassword=dipPr139Gg!", "line_num": 40, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr139Gg!", "value_start": 31, "value_end": 42, @@ -4457,7 +4457,7 @@ "line": "ANYusername=master ANYpassword=dipPr139Gg!", "line_num": 40, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 12, "value_end": 18, @@ -4482,7 +4482,7 @@ "line": "ANYusername=master ANYpassword=dipPr139Gg!", "line_num": 40, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr139Gg!", "value_start": 31, "value_end": 42, @@ -4507,7 +4507,7 @@ "line": "ID:master,PWD:dipPr140Gg!", "line_num": 41, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr140Gg!", "value_start": 14, "value_end": 25, @@ -4524,7 +4524,7 @@ "line": "ID:master,PWD:dipPr140Gg!", "line_num": 41, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,PWD:dipPr140Gg!", "value_start": 3, "value_end": 25, @@ -4549,7 +4549,7 @@ "line": "ID:master,PWD:dipPr140Gg!", "line_num": 41, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr140Gg!", "value_start": 14, "value_end": 25, @@ -4574,7 +4574,7 @@ "line": "ID:master/PASS:dipPr141Gg!", "line_num": 42, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr141Gg!", "value_start": 15, "value_end": 26, @@ -4599,7 +4599,7 @@ "line": "account:master passwd:dipPr142Gg!", "line_num": 43, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr142Gg!", "value_start": 22, "value_end": 33, @@ -4624,7 +4624,7 @@ "line": "account:master passwd:dipPr142Gg!", "line_num": 43, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr142Gg!", "value_start": 22, "value_end": 33, @@ -4641,7 +4641,7 @@ "line": "account:master passwd:dipPr142Gg!", "line_num": 43, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 8, "value_end": 14, @@ -4666,7 +4666,7 @@ "line": "account:master passwd:dipPr142Gg!", "line_num": 43, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr142Gg!", "value_start": 22, "value_end": 33, @@ -4691,7 +4691,7 @@ "line": "login:master password:dipPr143Gg!", "line_num": 44, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr143Gg!", "value_start": 22, "value_end": 33, @@ -4716,7 +4716,7 @@ "line": "login:master password:dipPr143Gg!", "line_num": 44, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr143Gg!", "value_start": 22, "value_end": 33, @@ -4733,7 +4733,7 @@ "line": "login:master password:dipPr143Gg!", "line_num": 44, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 6, "value_end": 12, @@ -4758,7 +4758,7 @@ "line": "login:master password:dipPr143Gg!", "line_num": 44, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr143Gg!", "value_start": 22, "value_end": 33, @@ -4783,7 +4783,7 @@ "line": "user=master,pass=dipPr144Gg!", "line_num": 45, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr144Gg!", "value_start": 17, "value_end": 28, @@ -4808,7 +4808,7 @@ "line": "password:dipPr145Gg! username:master", "line_num": 46, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr145Gg!", "value_start": 9, "value_end": 20, @@ -4833,7 +4833,7 @@ "line": "password:dipPr145Gg! username:master", "line_num": 46, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr145Gg!", "value_start": 9, "value_end": 20, @@ -4850,7 +4850,7 @@ "line": "password:dipPr145Gg! username:master", "line_num": 46, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 30, "value_end": 36, @@ -4875,7 +4875,7 @@ "line": "password:dipPr145Gg! username:master", "line_num": 46, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr145Gg!", "value_start": 9, "value_end": 20, @@ -4900,7 +4900,7 @@ "line": "Login as:master Password:dipPr146Gg!", "line_num": 47, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "as:master", "value_start": 6, "value_end": 15, @@ -4917,7 +4917,7 @@ "line": "Login as:master Password:dipPr146Gg!", "line_num": 47, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr146Gg!", "value_start": 25, "value_end": 36, @@ -4942,7 +4942,7 @@ "line": "Login as:master Password:dipPr146Gg!", "line_num": 47, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr146Gg!", "value_start": 25, "value_end": 36, @@ -4967,7 +4967,7 @@ "line": "Login as:master Password:dipPr146Gg!", "line_num": 47, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr146Gg!", "value_start": 25, "value_end": 36, @@ -4992,7 +4992,7 @@ "line": "ID:master,pass:dipPr147Gg!", "line_num": 48, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr147Gg!", "value_start": 15, "value_end": 26, @@ -5017,7 +5017,7 @@ "line": "id:master pw:dipPr148Gg!", "line_num": 49, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr148Gg!", "value_start": 13, "value_end": 24, @@ -5042,7 +5042,7 @@ "line": "id:master pw:dipPr148Gg!", "line_num": 49, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr148Gg!", "value_start": 13, "value_end": 24, @@ -5059,7 +5059,7 @@ "line": "id:master pw:dipPr148Gg!", "line_num": 49, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 3, "value_end": 9, @@ -5084,7 +5084,7 @@ "line": "id:master pw:dipPr148Gg!", "line_num": 49, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr148Gg!", "value_start": 13, "value_end": 24, @@ -5109,7 +5109,7 @@ "line": "(98.76.54.32)ID:master PW:dipPr149Gg!", "line_num": 50, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr149Gg!", "value_start": 26, "value_end": 37, @@ -5126,7 +5126,7 @@ "line": "(98.76.54.32)ID:master PW:dipPr149Gg!", "line_num": 50, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 16, "value_end": 22, @@ -5151,7 +5151,7 @@ "line": "(98.76.54.32)ID:master PW:dipPr149Gg!", "line_num": 50, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr149Gg!", "value_start": 26, "value_end": 37, @@ -5176,7 +5176,7 @@ "line": "-id:master -pw:dipPr151Gg!", "line_num": 52, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr151Gg!", "value_start": 15, "value_end": 26, @@ -5201,7 +5201,7 @@ "line": "-id:master -pw:dipPr151Gg!", "line_num": 52, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr151Gg!", "value_start": 15, "value_end": 26, @@ -5218,7 +5218,7 @@ "line": "-id:master -pw:dipPr151Gg!", "line_num": 52, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 4, "value_end": 10, @@ -5243,7 +5243,7 @@ "line": "-id:master -pw:dipPr151Gg!", "line_num": 52, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr151Gg!", "value_start": 15, "value_end": 26, @@ -5268,7 +5268,7 @@ "line": "username:master pw:dipPr152Gg!", "line_num": 53, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr152Gg!", "value_start": 19, "value_end": 30, @@ -5285,7 +5285,7 @@ "line": "username:master pw:dipPr152Gg!", "line_num": 53, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 9, "value_end": 15, @@ -5310,7 +5310,7 @@ "line": "username:master pw:dipPr152Gg!", "line_num": 53, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr152Gg!", "value_start": 19, "value_end": 30, @@ -5335,7 +5335,7 @@ "line": "\uacc4\uc815:master \ud328\uc2a4\uc6cc\ub4dc:dipPr153Gg!", "line_num": 54, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr153Gg!", "value_start": 15, "value_end": 26, @@ -5352,7 +5352,7 @@ "line": "\uacc4\uc815:master \ud328\uc2a4\uc6cc\ub4dc:dipPr153Gg!", "line_num": 54, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 3, "value_end": 9, @@ -5377,7 +5377,7 @@ "line": "\uacc4\uc815:master \ud328\uc2a4\uc6cc\ub4dc:dipPr153Gg!", "line_num": 54, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr153Gg!", "value_start": 15, "value_end": 26, @@ -5402,7 +5402,7 @@ "line": "-User Name:master -Password:dipPr154Gg!", "line_num": 55, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr154Gg!", "value_start": 28, "value_end": 39, @@ -5427,7 +5427,7 @@ "line": "-User Name:master -Password:dipPr154Gg!", "line_num": 55, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr154Gg!", "value_start": 28, "value_end": 39, @@ -5444,7 +5444,7 @@ "line": "-User Name:master -Password:dipPr154Gg!", "line_num": 55, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 11, "value_end": 17, @@ -5469,7 +5469,7 @@ "line": "-User Name:master -Password:dipPr154Gg!", "line_num": 55, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr154Gg!", "value_start": 28, "value_end": 39, @@ -5494,7 +5494,7 @@ "line": "account:dipPr155Gg!/password:dipPr155Gg!", "line_num": 56, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr155Gg!", "value_start": 29, "value_end": 40, @@ -5519,7 +5519,7 @@ "line": "account:dipPr155Gg!/password:dipPr155Gg!", "line_num": 56, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr155Gg!", "value_start": 29, "value_end": 40, @@ -5536,7 +5536,7 @@ "line": "account:dipPr155Gg!/password:dipPr155Gg!", "line_num": 56, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr155Gg!/password:dipPr155Gg!", "value_start": 8, "value_end": 40, @@ -5561,7 +5561,7 @@ "line": "account:dipPr155Gg!/password:dipPr155Gg!", "line_num": 56, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr155Gg!", "value_start": 29, "value_end": 40, @@ -5586,7 +5586,7 @@ "line": "ANYuser=master ANY_pass=dipPr156Gg!", "line_num": 57, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr156Gg!", "value_start": 24, "value_end": 35, @@ -5611,7 +5611,7 @@ "line": "ANYUser:master password:dipPr157Gg!", "line_num": 58, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr157Gg!", "value_start": 24, "value_end": 35, @@ -5636,7 +5636,7 @@ "line": "ANYUser:master password:dipPr157Gg!", "line_num": 58, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr157Gg!", "value_start": 24, "value_end": 35, @@ -5653,7 +5653,7 @@ "line": "ANYUser:master password:dipPr157Gg!", "line_num": 58, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 8, "value_end": 14, @@ -5678,7 +5678,7 @@ "line": "ANYUser:master password:dipPr157Gg!", "line_num": 58, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr157Gg!", "value_start": 24, "value_end": 35, @@ -5703,7 +5703,7 @@ "line": "user:master,pwd:dipPr158Gg!", "line_num": 59, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr158Gg!", "value_start": 16, "value_end": 27, @@ -5720,7 +5720,7 @@ "line": "user:master,pwd:dipPr158Gg!", "line_num": 59, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,pwd:dipPr158Gg!", "value_start": 5, "value_end": 27, @@ -5745,7 +5745,7 @@ "line": "user:master,pwd:dipPr158Gg!", "line_num": 59, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr158Gg!", "value_start": 16, "value_end": 27, @@ -5770,7 +5770,7 @@ "line": "ANY_username:master,ANY_password:dipPr159Gg!", "line_num": 60, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr159Gg!", "value_start": 33, "value_end": 44, @@ -5795,7 +5795,7 @@ "line": "ANY_username:master,ANY_password:dipPr159Gg!", "line_num": 60, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr159Gg!", "value_start": 33, "value_end": 44, @@ -5812,7 +5812,7 @@ "line": "ANY_username:master,ANY_password:dipPr159Gg!", "line_num": 60, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,ANY_password:dipPr159Gg!", "value_start": 13, "value_end": 44, @@ -5837,7 +5837,7 @@ "line": "ANY_username:master,ANY_password:dipPr159Gg!", "line_num": 60, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr159Gg!", "value_start": 33, "value_end": 44, @@ -5862,7 +5862,7 @@ "line": "ANYusername:master,ANY_password:dipPr160Gg!", "line_num": 61, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr160Gg!", "value_start": 32, "value_end": 43, @@ -5887,7 +5887,7 @@ "line": "ANYusername:master,ANY_password:dipPr160Gg!", "line_num": 61, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr160Gg!", "value_start": 32, "value_end": 43, @@ -5904,7 +5904,7 @@ "line": "ANYusername:master,ANY_password:dipPr160Gg!", "line_num": 61, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,ANY_password:dipPr160Gg!", "value_start": 12, "value_end": 43, @@ -5929,7 +5929,7 @@ "line": "ANYusername:master,ANY_password:dipPr160Gg!", "line_num": 61, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr160Gg!", "value_start": 32, "value_end": 43, @@ -5954,7 +5954,7 @@ "line": "ANY_USER=master ANY_PASS=dipPr161Gg!", "line_num": 62, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr161Gg!", "value_start": 25, "value_end": 36, @@ -5979,7 +5979,7 @@ "line": "User Account:master User password:dipPr162Gg!", "line_num": 63, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr162Gg!", "value_start": 34, "value_end": 45, @@ -6004,7 +6004,7 @@ "line": "User Account:master User password:dipPr162Gg!", "line_num": 63, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr162Gg!", "value_start": 34, "value_end": 45, @@ -6021,7 +6021,7 @@ "line": "User Account:master User password:dipPr162Gg!", "line_num": 63, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 13, "value_end": 19, @@ -6038,7 +6038,7 @@ "line": "User Account:master User password:dipPr162Gg!", "line_num": 63, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "password:dipPr162Gg!", "value_start": 25, "value_end": 45, @@ -6063,7 +6063,7 @@ "line": "User Account:master User password:dipPr162Gg!", "line_num": 63, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr162Gg!", "value_start": 34, "value_end": 45, @@ -6088,7 +6088,7 @@ "line": "dipPr163Gg! ID:master dipPr163Gg! PWD:dipPr163Gg!", "line_num": 64, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr163Gg!", "value_start": 38, "value_end": 49, @@ -6105,7 +6105,7 @@ "line": "dipPr163Gg! ID:master dipPr163Gg! PWD:dipPr163Gg!", "line_num": 64, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 15, "value_end": 21, @@ -6130,7 +6130,7 @@ "line": "dipPr163Gg! ID:master dipPr163Gg! PWD:dipPr163Gg!", "line_num": 64, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr163Gg!", "value_start": 38, "value_end": 49, @@ -6155,7 +6155,7 @@ "line": "userid=master password=dipPr164Gg!", "line_num": 65, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr164Gg!", "value_start": 23, "value_end": 34, @@ -6180,7 +6180,7 @@ "line": "userid=master password=dipPr164Gg!", "line_num": 65, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr164Gg!", "value_start": 23, "value_end": 34, @@ -6197,7 +6197,7 @@ "line": "userid=master password=dipPr164Gg!", "line_num": 65, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 7, "value_end": 13, @@ -6222,7 +6222,7 @@ "line": "userid=master password=dipPr164Gg!", "line_num": 65, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr164Gg!", "value_start": 23, "value_end": 34, @@ -6247,7 +6247,7 @@ "line": "ANY-username=master ANY-password=dipPr165Gg!", "line_num": 66, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr165Gg!", "value_start": 33, "value_end": 44, @@ -6272,7 +6272,7 @@ "line": "ANY-username=master ANY-password=dipPr165Gg!", "line_num": 66, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr165Gg!", "value_start": 33, "value_end": 44, @@ -6289,7 +6289,7 @@ "line": "ANY-username=master ANY-password=dipPr165Gg!", "line_num": 66, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 13, "value_end": 19, @@ -6314,7 +6314,7 @@ "line": "ANY-username=master ANY-password=dipPr165Gg!", "line_num": 66, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr165Gg!", "value_start": 33, "value_end": 44, @@ -6339,7 +6339,7 @@ "line": "user=master pwd=dipPr168Gg!", "line_num": 69, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr168Gg!", "value_start": 16, "value_end": 27, @@ -6356,7 +6356,7 @@ "line": "user=master pwd=dipPr168Gg!", "line_num": 69, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 5, "value_end": 11, @@ -6381,7 +6381,7 @@ "line": "user=master pwd=dipPr168Gg!", "line_num": 69, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr168Gg!", "value_start": 16, "value_end": 27, @@ -6406,7 +6406,7 @@ "line": "Name:master,PW:dipPr169Gg!", "line_num": 70, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr169Gg!", "value_start": 15, "value_end": 26, @@ -6423,7 +6423,7 @@ "line": "Name:master,PW:dipPr169Gg!", "line_num": 70, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,PW:dipPr169Gg!", "value_start": 5, "value_end": 26, @@ -6448,7 +6448,7 @@ "line": "Name:master,PW:dipPr169Gg!", "line_num": 70, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr169Gg!", "value_start": 15, "value_end": 26, @@ -6473,7 +6473,7 @@ "line": "user:master pass:dipPr172Gg!", "line_num": 73, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr172Gg!", "value_start": 17, "value_end": 28, @@ -6498,7 +6498,7 @@ "line": "\uacc4\uc815:master \ube44\ubc88:dipPr173Gg!", "line_num": 74, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr173Gg!", "value_start": 13, "value_end": 24, @@ -6515,7 +6515,7 @@ "line": "\uacc4\uc815:master \ube44\ubc88:dipPr173Gg!", "line_num": 74, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 3, "value_end": 9, @@ -6540,7 +6540,7 @@ "line": "\uacc4\uc815:master \ube44\ubc88:dipPr173Gg!", "line_num": 74, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr173Gg!", "value_start": 13, "value_end": 24, @@ -6565,7 +6565,7 @@ "line": "user=master password=dipPr174Gg!", "line_num": 75, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr174Gg!", "value_start": 21, "value_end": 32, @@ -6590,7 +6590,7 @@ "line": "user=master password=dipPr174Gg!", "line_num": 75, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr174Gg!", "value_start": 21, "value_end": 32, @@ -6607,7 +6607,7 @@ "line": "user=master password=dipPr174Gg!", "line_num": 75, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 5, "value_end": 11, @@ -6632,7 +6632,7 @@ "line": "user=master password=dipPr174Gg!", "line_num": 75, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr174Gg!", "value_start": 21, "value_end": 32, @@ -6657,7 +6657,7 @@ "line": "Host name:master/Password:dipPr175Gg!", "line_num": 76, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr175Gg!", "value_start": 26, "value_end": 37, @@ -6682,7 +6682,7 @@ "line": "Host name:master/Password:dipPr175Gg!", "line_num": 76, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr175Gg!", "value_start": 26, "value_end": 37, @@ -6699,7 +6699,7 @@ "line": "Host name:master/Password:dipPr175Gg!", "line_num": 76, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "name:master/Password:dipPr175Gg!", "value_start": 5, "value_end": 37, @@ -6724,7 +6724,7 @@ "line": "Host name:master/Password:dipPr175Gg!", "line_num": 76, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr175Gg!", "value_start": 26, "value_end": 37, @@ -6749,7 +6749,7 @@ "line": "role:master,password:dipPr176Gg!", "line_num": 77, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr176Gg!", "value_start": 21, "value_end": 32, @@ -6774,7 +6774,7 @@ "line": "role:master,password:dipPr176Gg!", "line_num": 77, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr176Gg!", "value_start": 21, "value_end": 32, @@ -6791,7 +6791,7 @@ "line": "role:master,password:dipPr176Gg!", "line_num": 77, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password:dipPr176Gg!", "value_start": 5, "value_end": 32, @@ -6816,7 +6816,7 @@ "line": "role:master,password:dipPr176Gg!", "line_num": 77, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr176Gg!", "value_start": 21, "value_end": 32, @@ -6841,7 +6841,7 @@ "line": "Wifi Name:master,PW:dipPr177Gg!", "line_num": 78, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Name:master,PW:dipPr177Gg!", "value_start": 5, "value_end": 31, @@ -6858,7 +6858,7 @@ "line": "Wifi Name:master,PW:dipPr177Gg!", "line_num": 78, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr177Gg!", "value_start": 20, "value_end": 31, @@ -6883,7 +6883,7 @@ "line": "Wifi Name:master,PW:dipPr177Gg!", "line_num": 78, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr177Gg!", "value_start": 20, "value_end": 31, @@ -6908,7 +6908,7 @@ "line": "Wifi Name:master,PW:dipPr177Gg!", "line_num": 78, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr177Gg!", "value_start": 20, "value_end": 31, @@ -6933,7 +6933,7 @@ "line": "ID:master/Password:dipPr178Gg!", "line_num": 79, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr178Gg!", "value_start": 19, "value_end": 30, @@ -6958,7 +6958,7 @@ "line": "ID:master/Password:dipPr178Gg!", "line_num": 79, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr178Gg!", "value_start": 19, "value_end": 30, @@ -6975,7 +6975,7 @@ "line": "ID:master/Password:dipPr178Gg!", "line_num": 79, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/Password:dipPr178Gg!", "value_start": 3, "value_end": 30, @@ -7000,7 +7000,7 @@ "line": "ID:master/Password:dipPr178Gg!", "line_num": 79, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr178Gg!", "value_start": 19, "value_end": 30, @@ -7025,7 +7025,7 @@ "line": "name:master,password:dipPr179Gg!", "line_num": 80, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr179Gg!", "value_start": 21, "value_end": 32, @@ -7050,7 +7050,7 @@ "line": "name:master,password:dipPr179Gg!", "line_num": 80, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr179Gg!", "value_start": 21, "value_end": 32, @@ -7067,7 +7067,7 @@ "line": "name:master,password:dipPr179Gg!", "line_num": 80, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,password:dipPr179Gg!", "value_start": 5, "value_end": 32, @@ -7092,7 +7092,7 @@ "line": "name:master,password:dipPr179Gg!", "line_num": 80, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr179Gg!", "value_start": 21, "value_end": 32, @@ -7117,7 +7117,7 @@ "line": "Loging:master Password:dipPr180Gg!", "line_num": 81, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr180Gg!", "value_start": 23, "value_end": 34, @@ -7142,7 +7142,7 @@ "line": "Loging:master Password:dipPr180Gg!", "line_num": 81, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr180Gg!", "value_start": 23, "value_end": 34, @@ -7167,7 +7167,7 @@ "line": "Loging:master Pwd:dipPr181Gg!", "line_num": 82, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr181Gg!", "value_start": 18, "value_end": 29, @@ -7192,7 +7192,7 @@ "line": "id:master,default pw:dipPr182Gg!", "line_num": 83, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr182Gg!", "value_start": 21, "value_end": 32, @@ -7209,7 +7209,7 @@ "line": "id:master,default pw:dipPr182Gg!", "line_num": 83, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,default", "value_start": 3, "value_end": 17, @@ -7234,7 +7234,7 @@ "line": "id:master,default pw:dipPr182Gg!", "line_num": 83, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr182Gg!", "value_start": 21, "value_end": 32, @@ -7259,7 +7259,7 @@ "line": "ID:master/\ube44\ubc88:dipPr184Gg!", "line_num": 85, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr184Gg!", "value_start": 13, "value_end": 24, @@ -7276,7 +7276,7 @@ "line": "ID:master/\ube44\ubc88:dipPr184Gg!", "line_num": 85, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/\ube44\ubc88:dipPr184Gg!", "value_start": 3, "value_end": 24, @@ -7301,7 +7301,7 @@ "line": "ID:master/\ube44\ubc88:dipPr184Gg!", "line_num": 85, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr184Gg!", "value_start": 13, "value_end": 24, @@ -7326,7 +7326,7 @@ "line": "id/pw id:master pw:dipPr185Gg!", "line_num": 86, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr185Gg!", "value_start": 19, "value_end": 30, @@ -7343,7 +7343,7 @@ "line": "id/pw id:master pw:dipPr185Gg!", "line_num": 86, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 9, "value_end": 15, @@ -7368,7 +7368,7 @@ "line": "id/pw id:master pw:dipPr185Gg!", "line_num": 86, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr185Gg!", "value_start": 19, "value_end": 30, @@ -7393,7 +7393,7 @@ "line": "user:master,pwd:dipPr186Gg!", "line_num": 87, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr186Gg!", "value_start": 16, "value_end": 27, @@ -7410,7 +7410,7 @@ "line": "user:master,pwd:dipPr186Gg!", "line_num": 87, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master,pwd:dipPr186Gg!", "value_start": 5, "value_end": 27, @@ -7435,7 +7435,7 @@ "line": "user:master,pwd:dipPr186Gg!", "line_num": 87, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr186Gg!", "value_start": 16, "value_end": 27, @@ -7460,7 +7460,7 @@ "line": "username:master/pw:dipPr188Gg!", "line_num": 89, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr188Gg!", "value_start": 19, "value_end": 30, @@ -7477,7 +7477,7 @@ "line": "username:master/pw:dipPr188Gg!", "line_num": 89, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/pw:dipPr188Gg!", "value_start": 9, "value_end": 30, @@ -7502,7 +7502,7 @@ "line": "username:master/pw:dipPr188Gg!", "line_num": 89, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr188Gg!", "value_start": 19, "value_end": 30, @@ -7527,7 +7527,7 @@ "line": "username:master pw:dipPr189Gg!", "line_num": 90, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr189Gg!", "value_start": 19, "value_end": 30, @@ -7552,7 +7552,7 @@ "line": "username:master pw:dipPr189Gg!", "line_num": 90, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr189Gg!", "value_start": 19, "value_end": 30, @@ -7569,7 +7569,7 @@ "line": "username:master pw:dipPr189Gg!", "line_num": 90, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 9, "value_end": 15, @@ -7594,7 +7594,7 @@ "line": "username:master pw:dipPr189Gg!", "line_num": 90, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr189Gg!", "value_start": 19, "value_end": 30, @@ -7619,7 +7619,7 @@ "line": "PW:dipPr190Gg! ID:master", "line_num": 91, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr190Gg!", "value_start": 3, "value_end": 14, @@ -7636,7 +7636,7 @@ "line": "PW:dipPr190Gg! ID:master", "line_num": 91, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 18, "value_end": 24, @@ -7661,7 +7661,7 @@ "line": "PW:dipPr190Gg! ID:master", "line_num": 91, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr190Gg!", "value_start": 3, "value_end": 14, @@ -7686,7 +7686,7 @@ "line": "\uc544\uc774\ub514:master \ube44\ubc00\ubc88\ud638:dipPr191Gg!", "line_num": 92, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr191Gg!", "value_start": 16, "value_end": 27, @@ -7703,7 +7703,7 @@ "line": "\uc544\uc774\ub514:master \ube44\ubc00\ubc88\ud638:dipPr191Gg!", "line_num": 92, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 4, "value_end": 10, @@ -7728,7 +7728,7 @@ "line": "\uc544\uc774\ub514:master \ube44\ubc00\ubc88\ud638:dipPr191Gg!", "line_num": 92, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr191Gg!", "value_start": 16, "value_end": 27, @@ -7753,7 +7753,7 @@ "line": "ANYid:master pw:dipPr194Gg! ip:98.76.54.32", "line_num": 95, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr194Gg!", "value_start": 16, "value_end": 27, @@ -7778,7 +7778,7 @@ "line": "ANYid:master pw:dipPr194Gg! ip:98.76.54.32", "line_num": 95, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr194Gg!", "value_start": 16, "value_end": 27, @@ -7795,7 +7795,7 @@ "line": "ANYid:master pw:dipPr194Gg! ip:98.76.54.32", "line_num": 95, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 6, "value_end": 12, @@ -7820,7 +7820,7 @@ "line": "ANYid:master pw:dipPr194Gg! ip:98.76.54.32", "line_num": 95, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr194Gg!", "value_start": 16, "value_end": 27, @@ -7845,7 +7845,7 @@ "line": "\uacc4\uc815:master \uc554\ud638:dipPr195Gg!", "line_num": 96, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr195Gg!", "value_start": 13, "value_end": 24, @@ -7862,7 +7862,7 @@ "line": "\uacc4\uc815:master \uc554\ud638:dipPr195Gg!", "line_num": 96, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 3, "value_end": 9, @@ -7887,7 +7887,7 @@ "line": "\uacc4\uc815:master \uc554\ud638:dipPr195Gg!", "line_num": 96, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr195Gg!", "value_start": 13, "value_end": 24, @@ -7912,7 +7912,7 @@ "line": "id: master pw:dipPr197Gg!", "line_num": 98, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr197Gg!", "value_start": 14, "value_end": 25, @@ -7937,7 +7937,7 @@ "line": "id: master pw:dipPr197Gg!", "line_num": 98, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr197Gg!", "value_start": 14, "value_end": 25, @@ -7954,7 +7954,7 @@ "line": "id: master pw:dipPr197Gg!", "line_num": 98, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master", "value_start": 4, "value_end": 10, @@ -7979,7 +7979,7 @@ "line": "id: master pw:dipPr197Gg!", "line_num": 98, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr197Gg!", "value_start": 14, "value_end": 25, @@ -8004,7 +8004,7 @@ "line": "id:master@example.com,pw:dipPr198Gg!", "line_num": 99, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr198Gg!", "value_start": 25, "value_end": 36, @@ -8021,7 +8021,7 @@ "line": "id:master@example.com,pw:dipPr198Gg!", "line_num": 99, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master@example.com,pw:dipPr198Gg!", "value_start": 3, "value_end": 36, @@ -8046,7 +8046,7 @@ "line": "id:master@example.com,pw:dipPr198Gg!", "line_num": 99, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "dipPr198Gg!", "value_start": 25, "value_end": 36, @@ -8071,7 +8071,7 @@ "line": "id:master@example.com,pw:IHQSB1GG!", "line_num": 102, "path": "./tests/samples/doc_id_pair_passwd_pair", - "info": "./tests/samples/doc_id_pair_passwd_pair|RAW", + "info": "FILE|RAW", "value": "IHQSB1GG!", "value_start": 25, "value_end": 34, @@ -8096,7 +8096,7 @@ "line": "ID/PW:master/iPp0@GRq", "line_num": 1, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp0@GRq", "value_start": 13, "value_end": 21, @@ -8121,7 +8121,7 @@ "line": "ANYID(PW):master(iPp1@GRq)", "line_num": 2, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp1@GRq", "value_start": 17, "value_end": 25, @@ -8146,7 +8146,7 @@ "line": "ID/Password:master/iPp2@GRq", "line_num": 3, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp2@GRq", "value_start": 19, "value_end": 27, @@ -8171,7 +8171,7 @@ "line": "ID:PW=master:iPp4@GRq", "line_num": 5, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "PW=master:iPp4@GRq", "value_start": 3, "value_end": 21, @@ -8188,7 +8188,7 @@ "line": "ID:PW=master:iPp4@GRq", "line_num": 5, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master:iPp4@GRq", "value_start": 6, "value_end": 21, @@ -8213,7 +8213,7 @@ "line": "ID:PW=master:iPp4@GRq", "line_num": 5, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp4@GRq", "value_start": 13, "value_end": 21, @@ -8238,7 +8238,7 @@ "line": "ID/PW=master/iPp5@GRq", "line_num": 6, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp5@GRq", "value_start": 13, "value_end": 21, @@ -8263,7 +8263,7 @@ "line": "id/pw master/iPp6@GRq", "line_num": 7, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp6@GRq", "value_start": 13, "value_end": 21, @@ -8288,7 +8288,7 @@ "line": "username/password:master/iPp7@GRq", "line_num": 8, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp7@GRq", "value_start": 25, "value_end": 33, @@ -8313,7 +8313,7 @@ "line": "username/password:master/iPp7@GRq", "line_num": 8, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp7@GRq", "value_start": 18, "value_end": 33, @@ -8338,7 +8338,7 @@ "line": "id/passwd:master/iPp8@GRq", "line_num": 9, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp8@GRq", "value_start": 17, "value_end": 25, @@ -8363,7 +8363,7 @@ "line": "ID PW master iPp9@GRq", "line_num": 10, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp9@GRq", "value_start": 13, "value_end": 21, @@ -8388,7 +8388,7 @@ "line": "98.76.54.32(ID:master/PW:iPp10@GRq) # todo: move into other sample ?", "line_num": 11, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp10@GRq", "value_start": 25, "value_end": 34, @@ -8405,7 +8405,7 @@ "line": "98.76.54.32(ID:master/PW:iPp10@GRq) # todo: move into other sample ?", "line_num": 11, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/PW:iPp10@GRq", "value_start": 15, "value_end": 34, @@ -8430,7 +8430,7 @@ "line": "98.76.54.32(ID:master/PW:iPp10@GRq) # todo: move into other sample ?", "line_num": 11, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp10@GRq", "value_start": 25, "value_end": 34, @@ -8455,7 +8455,7 @@ "line": "ID / PW : db / iPp14@GRq", "line_num": 15, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp14@GRq", "value_start": 16, "value_end": 25, @@ -8480,7 +8480,7 @@ "line": "\uc544\uc774\ub514/PW:master/iPp16@GRq", "line_num": 17, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp16@GRq", "value_start": 14, "value_end": 23, @@ -8505,7 +8505,7 @@ "line": "\uacc4\uc815/PW:master/iPp17@GRq", "line_num": 18, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp17@GRq", "value_start": 13, "value_end": 22, @@ -8530,7 +8530,7 @@ "line": "ID/PW(master/iPp18@GRq)", "line_num": 19, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp18@GRq", "value_start": 13, "value_end": 22, @@ -8555,7 +8555,7 @@ "line": "98.76.54.32 id/pw:master/iPp19@GRq", "line_num": 20, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp19@GRq", "value_start": 25, "value_end": 34, @@ -8580,7 +8580,7 @@ "line": "98.76.54.32 id/pw:master/iPp19@GRq", "line_num": 20, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp19@GRq", "value_start": 18, "value_end": 34, @@ -8605,7 +8605,7 @@ "line": "ID/PWD:master/iPp21@GRq", "line_num": 22, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp21@GRq", "value_start": 14, "value_end": 23, @@ -8630,7 +8630,7 @@ "line": "user/pwd:master/iPp22@GRq", "line_num": 23, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp22@GRq", "value_start": 16, "value_end": 25, @@ -8655,7 +8655,7 @@ "line": "id pw master // iPp23@GRq", "line_num": 24, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp23@GRq", "value_start": 16, "value_end": 25, @@ -8680,7 +8680,7 @@ "line": "User/Password master/iPp24@GRq", "line_num": 25, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp24@GRq", "value_start": 21, "value_end": 30, @@ -8705,7 +8705,7 @@ "line": "id/pwd master/iPp26@GRq", "line_num": 27, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp26@GRq", "value_start": 14, "value_end": 23, @@ -8730,7 +8730,7 @@ "line": "ID/Password=master/iPp27@GRq", "line_num": 28, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp27@GRq", "value_start": 19, "value_end": 28, @@ -8755,7 +8755,7 @@ "line": "ID/Password=master/iPp27@GRq", "line_num": 28, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "master/iPp27@GRq", "value_start": 12, "value_end": 28, @@ -8780,7 +8780,7 @@ "line": "ID/PW:master/iPp28@GRq", "line_num": 29, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp28@GRq", "value_start": 13, "value_end": 22, @@ -8805,7 +8805,7 @@ "line": "ID/PW->master/iPp29@GRq", "line_num": 30, "path": "./tests/samples/doc_id_passwd_pair", - "info": "./tests/samples/doc_id_passwd_pair|RAW", + "info": "FILE|RAW", "value": "iPp29@GRq", "value_start": 14, "value_end": 23, @@ -8830,7 +8830,7 @@ "line": "192.168.0.1 master/iP30dT_o", "line_num": 1, "path": "./tests/samples/doc_ip_id_password_triple", - "info": "./tests/samples/doc_ip_id_password_triple|RAW", + "info": "FILE|RAW", "value": "iP30dT_o", "value_start": 19, "value_end": 27, @@ -8855,7 +8855,7 @@ "line": "192.168.0.1 master iP31dT_o # many FP", "line_num": 2, "path": "./tests/samples/doc_ip_id_password_triple", - "info": "./tests/samples/doc_ip_id_password_triple|RAW", + "info": "FILE|RAW", "value": "iP31dT_o", "value_start": 19, "value_end": 27, @@ -8880,7 +8880,7 @@ "line": "192.168.0.1,master/iP32dT_o", "line_num": 3, "path": "./tests/samples/doc_ip_id_password_triple", - "info": "./tests/samples/doc_ip_id_password_triple|RAW", + "info": "FILE|RAW", "value": "iP32dT_o", "value_start": 19, "value_end": 27, @@ -8905,7 +8905,7 @@ "line": "IP ID PW 192.168.0.1 master iP33dT_o", "line_num": 4, "path": "./tests/samples/doc_ip_id_password_triple", - "info": "./tests/samples/doc_ip_id_password_triple|RAW", + "info": "FILE|RAW", "value": "iP33dT_o", "value_start": 28, "value_end": 36, @@ -8930,7 +8930,7 @@ "line": "IP/ID/PW 192.168.0.1/master/iP34dT_o", "line_num": 5, "path": "./tests/samples/doc_ip_id_password_triple", - "info": "./tests/samples/doc_ip_id_password_triple|RAW", + "info": "FILE|RAW", "value": "iP34dT_o", "value_start": 28, "value_end": 36, @@ -8955,7 +8955,7 @@ "line": "Password:Prl23Db#@", "line_num": 1, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -8980,7 +8980,7 @@ "line": "Password:Prl23Db#@", "line_num": 1, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -9005,7 +9005,7 @@ "line": "\ube44\ubc00\ubc88\ud638:Prl23Db#@", "line_num": 2, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 5, "value_end": 14, @@ -9030,7 +9030,7 @@ "line": "pw:Prl23Db#@", "line_num": 3, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 3, "value_end": 12, @@ -9055,7 +9055,7 @@ "line": "Password=Prl23Db#@", "line_num": 4, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -9080,7 +9080,7 @@ "line": "Password=Prl23Db#@", "line_num": 4, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -9105,7 +9105,7 @@ "line": "pwd:Prl23Db#@", "line_num": 5, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 4, "value_end": 13, @@ -9130,7 +9130,7 @@ "line": "\ube44\ubc88:Prl23Db#@", "line_num": 6, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 3, "value_end": 12, @@ -9155,7 +9155,7 @@ "line": "ANY_password=Prl23Db#@", "line_num": 8, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -9180,7 +9180,7 @@ "line": "ANY_password=Prl23Db#@", "line_num": 8, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -9205,7 +9205,7 @@ "line": "ANY-password=Prl23Db#@", "line_num": 11, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -9230,7 +9230,7 @@ "line": "ANY-password=Prl23Db#@", "line_num": 11, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -9255,7 +9255,7 @@ "line": "\uc554\ud638:Prl23Db#@", "line_num": 12, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 3, "value_end": 12, @@ -9280,7 +9280,7 @@ "line": "master@98.76.54.32 password:Prl23Db#@", "line_num": 14, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 28, "value_end": 37, @@ -9305,7 +9305,7 @@ "line": "master@98.76.54.32 password:Prl23Db#@", "line_num": 14, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 28, "value_end": 37, @@ -9330,7 +9330,7 @@ "line": "password is Prl23Db#@", "line_num": 16, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 12, "value_end": 21, @@ -9355,7 +9355,7 @@ "line": "ANY_PW:Prl23Db#@", "line_num": 17, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 7, "value_end": 16, @@ -9380,7 +9380,7 @@ "line": "default password:Prl23Db#@", "line_num": 18, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 17, "value_end": 26, @@ -9405,7 +9405,7 @@ "line": "default password:Prl23Db#@", "line_num": 18, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 17, "value_end": 26, @@ -9422,7 +9422,7 @@ "line": "default password:Prl23Db#@", "line_num": 18, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "password:Prl23Db#@", "value_start": 8, "value_end": 26, @@ -9447,7 +9447,7 @@ "line": "default password:Prl23Db#@", "line_num": 18, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 17, "value_end": 26, @@ -9472,7 +9472,7 @@ "line": "\ud328\uc2a4\uc6cc\ub4dc:Prl23Db#@", "line_num": 20, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 5, "value_end": 14, @@ -9497,7 +9497,7 @@ "line": "\"password\":\"Prl23Db#@\"", "line_num": 21, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 12, "value_end": 21, @@ -9522,7 +9522,7 @@ "line": "\"password\":\"Prl23Db#@\"", "line_num": 21, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 12, "value_end": 21, @@ -9547,7 +9547,7 @@ "line": "Passwd:Prl23Db#@ Prl23Db#@", "line_num": 23, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 7, "value_end": 16, @@ -9572,7 +9572,7 @@ "line": "PW:Prl23Db#@,password:Prl23Db#@", "line_num": 24, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 22, "value_end": 31, @@ -9597,7 +9597,7 @@ "line": "PW:Prl23Db#@,password:Prl23Db#@", "line_num": 24, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@,", "value_start": 3, "value_end": 13, @@ -9622,7 +9622,7 @@ "line": "password:Prl23Db#@,\ube44\ubc88:Prl23Db#@", "line_num": 25, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 22, "value_end": 31, @@ -9647,7 +9647,7 @@ "line": "password:Prl23Db#@,\ube44\ubc88:Prl23Db#@", "line_num": 25, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@,", "value_start": 9, "value_end": 19, @@ -9672,7 +9672,7 @@ "line": "password:Prl23Db#@,\ube44\ubc88:Prl23Db#@", "line_num": 25, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@,\ube44\ubc88:Prl23Db#@", "value_start": 9, "value_end": 31, @@ -9697,7 +9697,7 @@ "line": "passwd=Prl23Db#@", "line_num": 26, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 7, "value_end": 16, @@ -9722,7 +9722,7 @@ "line": "passwd=Prl23Db#@", "line_num": 26, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 7, "value_end": 16, @@ -9747,7 +9747,7 @@ "line": "paasword:Prl23Db#@", "line_num": 29, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 9, "value_end": 18, @@ -9772,7 +9772,7 @@ "line": "password:Prl23Db#@, paasword:Prl23Db#@", "line_num": 30, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 29, "value_end": 38, @@ -9797,7 +9797,7 @@ "line": "password:Prl23Db#@, paasword:Prl23Db#@", "line_num": 30, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@,", "value_start": 9, "value_end": 19, @@ -9822,7 +9822,7 @@ "line": "password:Prl23Db#@, paasword:Prl23Db#@", "line_num": 30, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@,", "value_start": 9, "value_end": 19, @@ -9847,7 +9847,7 @@ "line": "password:Prl23Db#@,ANYPassword:Prl23Db#@", "line_num": 31, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 31, "value_end": 40, @@ -9872,7 +9872,7 @@ "line": "password:Prl23Db#@,ANYPassword:Prl23Db#@", "line_num": 31, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@,", "value_start": 9, "value_end": 19, @@ -9897,7 +9897,7 @@ "line": "Password:Prl23Db#@,pwd=Prl23Db#@", "line_num": 32, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 23, "value_end": 32, @@ -9922,7 +9922,7 @@ "line": "Password:Prl23Db#@,pwd=Prl23Db#@", "line_num": 32, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@,", "value_start": 9, "value_end": 19, @@ -9947,7 +9947,7 @@ "line": "ANY_password:Prl23Db#@", "line_num": 34, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -9972,7 +9972,7 @@ "line": "ANY_password:Prl23Db#@", "line_num": 34, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 13, "value_end": 22, @@ -9997,7 +9997,7 @@ "line": "new password is Prl23Db#@", "line_num": 36, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 16, "value_end": 25, @@ -10022,7 +10022,7 @@ "line": "--password=Prl23Db#@", "line_num": 37, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 11, "value_end": 20, @@ -10047,7 +10047,7 @@ "line": "--password=Prl23Db#@", "line_num": 37, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 11, "value_end": 20, @@ -10072,7 +10072,7 @@ "line": "root/Prl23Db#@,root password:Prl23Db#@", "line_num": 38, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 29, "value_end": 38, @@ -10097,7 +10097,7 @@ "line": "root/Prl23Db#@,root password:Prl23Db#@", "line_num": 38, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 29, "value_end": 38, @@ -10114,7 +10114,7 @@ "line": "root/Prl23Db#@,root password:Prl23Db#@", "line_num": 38, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "password:Prl23Db#@", "value_start": 20, "value_end": 38, @@ -10139,7 +10139,7 @@ "line": "root/Prl23Db#@,root password:Prl23Db#@", "line_num": 38, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 29, "value_end": 38, @@ -10164,7 +10164,7 @@ "line": "Prl23Db#@ username:Prl23Db#@,Prl23Db#@ password:Prl23Db#@", "line_num": 40, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 48, "value_end": 57, @@ -10189,7 +10189,7 @@ "line": "Prl23Db#@ username:Prl23Db#@,Prl23Db#@ password:Prl23Db#@", "line_num": 40, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 48, "value_end": 57, @@ -10206,7 +10206,7 @@ "line": "Prl23Db#@ username:Prl23Db#@,Prl23Db#@ password:Prl23Db#@", "line_num": 40, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@,Prl23Db#@", "value_start": 19, "value_end": 38, @@ -10231,7 +10231,7 @@ "line": "Prl23Db#@ username:Prl23Db#@,Prl23Db#@ password:Prl23Db#@", "line_num": 40, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 48, "value_end": 57, @@ -10256,7 +10256,7 @@ "line": "Prl23Db#@:password:Prl23Db#@", "line_num": 41, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 19, "value_end": 28, @@ -10281,7 +10281,7 @@ "line": "Prl23Db#@:password:Prl23Db#@", "line_num": 41, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 19, "value_end": 28, @@ -10306,7 +10306,7 @@ "line": "ANYpassword=Prl23Db#@", "line_num": 45, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 12, "value_end": 21, @@ -10331,7 +10331,7 @@ "line": "ANYpassword=Prl23Db#@", "line_num": 45, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 12, "value_end": 21, @@ -10356,7 +10356,7 @@ "line": "passwords:Prl23Db#@", "line_num": 46, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 10, "value_end": 19, @@ -10381,7 +10381,7 @@ "line": "passwords:Prl23Db#@", "line_num": 46, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 10, "value_end": 19, @@ -10406,7 +10406,7 @@ "line": "password\uc124\uc815\uc740Prl23Db#@", "line_num": 47, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 11, "value_end": 20, @@ -10431,7 +10431,7 @@ "line": "password=>Prl23Db#@", "line_num": 48, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": ">Prl23Db#@", "value_start": 9, "value_end": 19, @@ -10456,7 +10456,7 @@ "line": "P/W:Prl23Db#@", "line_num": 50, "path": "./tests/samples/doc_passwd_pair", - "info": "./tests/samples/doc_passwd_pair|RAW", + "info": "FILE|RAW", "value": "Prl23Db#@", "value_start": 4, "value_end": 13, @@ -10481,7 +10481,7 @@ "line": "ANY-Token:AIhq5Xyb1Gga9Q0", "line_num": 1, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q0", "value_start": 10, "value_end": 25, @@ -10506,7 +10506,7 @@ "line": "ANY-Token:AIhq5Xyb1Gga9Q0", "line_num": 1, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q0", "value_start": 10, "value_end": 25, @@ -10531,7 +10531,7 @@ "line": "token:AIhq5Xyb1Gga9Q2", "line_num": 3, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q2", "value_start": 6, "value_end": 21, @@ -10556,7 +10556,7 @@ "line": "token:AIhq5Xyb1Gga9Q2", "line_num": 3, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q2", "value_start": 6, "value_end": 21, @@ -10581,7 +10581,7 @@ "line": "SECRET KEY:AIhq5Xyb1Gga9Q3", "line_num": 4, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q3", "value_start": 11, "value_end": 26, @@ -10606,7 +10606,7 @@ "line": "SECRET KEY:AIhq5Xyb1Gga9Q3", "line_num": 4, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q3", "value_start": 11, "value_end": 26, @@ -10631,7 +10631,7 @@ "line": "secret=AIhq5Xyb1Gga9Q4", "line_num": 5, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q4", "value_start": 7, "value_end": 22, @@ -10656,7 +10656,7 @@ "line": "secret=AIhq5Xyb1Gga9Q4", "line_num": 5, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q4", "value_start": 7, "value_end": 22, @@ -10681,7 +10681,7 @@ "line": "secret:AIhq5Xyb1Gga9Q6", "line_num": 7, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q6", "value_start": 7, "value_end": 22, @@ -10706,7 +10706,7 @@ "line": "secret:AIhq5Xyb1Gga9Q6", "line_num": 7, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q6", "value_start": 7, "value_end": 22, @@ -10731,7 +10731,7 @@ "line": "ANY_token=AIhq5Xyb1Gga9Q7", "line_num": 8, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q7", "value_start": 10, "value_end": 25, @@ -10756,7 +10756,7 @@ "line": "ANY_token=AIhq5Xyb1Gga9Q7", "line_num": 8, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q7", "value_start": 10, "value_end": 25, @@ -10781,7 +10781,7 @@ "line": "ANY.secret=AIhq5Xyb1Gga9Q19", "line_num": 20, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q19", "value_start": 11, "value_end": 27, @@ -10806,7 +10806,7 @@ "line": "ANY.secret=AIhq5Xyb1Gga9Q19", "line_num": 20, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q19", "value_start": 11, "value_end": 27, @@ -10831,7 +10831,7 @@ "line": "--secret=AIhq5Xyb1Gga9Q21", "line_num": 22, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q21", "value_start": 9, "value_end": 25, @@ -10856,7 +10856,7 @@ "line": "--secret=AIhq5Xyb1Gga9Q21", "line_num": 22, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q21", "value_start": 9, "value_end": 25, @@ -10881,7 +10881,7 @@ "line": "ANY_secret:AIhq5Xyb1Gga9Q22", "line_num": 23, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q22", "value_start": 11, "value_end": 27, @@ -10906,7 +10906,7 @@ "line": "ANY_secret:AIhq5Xyb1Gga9Q22", "line_num": 23, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q22", "value_start": 11, "value_end": 27, @@ -10931,7 +10931,7 @@ "line": "-Token:AIhq5Xyb1Gga9Q23", "line_num": 24, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q23", "value_start": 7, "value_end": 23, @@ -10956,7 +10956,7 @@ "line": "-Token:AIhq5Xyb1Gga9Q23", "line_num": 24, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q23", "value_start": 7, "value_end": 23, @@ -10981,7 +10981,7 @@ "line": "API Secret:AIhq5Xyb1Gga9Q24", "line_num": 25, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q24", "value_start": 11, "value_end": 27, @@ -11006,7 +11006,7 @@ "line": "API Secret:AIhq5Xyb1Gga9Q24", "line_num": 25, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q24", "value_start": 11, "value_end": 27, @@ -11031,7 +11031,7 @@ "line": "access key:AIhq5Xyb1Gga9Q26", "line_num": 27, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q26", "value_start": 11, "value_end": 27, @@ -11056,7 +11056,7 @@ "line": "access key:AIhq5Xyb1Gga9Q26", "line_num": 27, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q26", "value_start": 11, "value_end": 27, @@ -11081,7 +11081,7 @@ "line": "Secret Key:AIhq5Xyb1Gga9Q27", "line_num": 28, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q27", "value_start": 11, "value_end": 27, @@ -11106,7 +11106,7 @@ "line": "Secret Key:AIhq5Xyb1Gga9Q27", "line_num": 28, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q27", "value_start": 11, "value_end": 27, @@ -11131,7 +11131,7 @@ "line": "ANY_key=AIhq5Xyb1Gga9Q29", "line_num": 30, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q29", "value_start": 8, "value_end": 24, @@ -11156,7 +11156,7 @@ "line": "ANY_key=AIhq5Xyb1Gga9Q29", "line_num": 30, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q29", "value_start": 8, "value_end": 24, @@ -11181,7 +11181,7 @@ "line": "secret-ANYkey:AIhq5Xyb1Gga9Q30", "line_num": 31, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q30", "value_start": 14, "value_end": 30, @@ -11206,7 +11206,7 @@ "line": "secret-ANYkey:AIhq5Xyb1Gga9Q30", "line_num": 31, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q30", "value_start": 14, "value_end": 30, @@ -11231,7 +11231,7 @@ "line": "ANY_id=AIhq5Xyb1Gga9Q31 ANY_token=AIhq5Xyb1Gga9Q31", "line_num": 32, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q31", "value_start": 34, "value_end": 50, @@ -11256,7 +11256,7 @@ "line": "ANY_id=AIhq5Xyb1Gga9Q31 ANY_token=AIhq5Xyb1Gga9Q31", "line_num": 32, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q31", "value_start": 34, "value_end": 50, @@ -11281,7 +11281,7 @@ "line": "access_token:AIhq5Xyb1Gga9Q33", "line_num": 34, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q33", "value_start": 13, "value_end": 29, @@ -11306,7 +11306,7 @@ "line": "access_token:AIhq5Xyb1Gga9Q33", "line_num": 34, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q33", "value_start": 13, "value_end": 29, @@ -11331,7 +11331,7 @@ "line": "Authentication key:AIhq5Xyb1Gga9Q35", "line_num": 36, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q35", "value_start": 19, "value_end": 35, @@ -11356,7 +11356,7 @@ "line": "Authentication key:AIhq5Xyb1Gga9Q35", "line_num": 36, "path": "./tests/samples/doc_secret_pair", - "info": "./tests/samples/doc_secret_pair|RAW", + "info": "FILE|RAW", "value": "AIhq5Xyb1Gga9Q35", "value_start": 19, "value_end": 35, @@ -11381,7 +11381,7 @@ "line": "98.76.54.32 (master/IhqSb1Gg)", "line_num": 1, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg)", "value_start": 20, "value_end": 29, @@ -11406,7 +11406,7 @@ "line": "98.76.54.32(master/IhqSb1Gg)", "line_num": 2, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg)", "value_start": 19, "value_end": 28, @@ -11431,7 +11431,7 @@ "line": "master@98.76.54.32(pw:IhqSb1Gg)", "line_num": 3, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -11456,7 +11456,7 @@ "line": "master@98.76.54.32(pw:IhqSb1Gg)", "line_num": 3, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -11481,7 +11481,7 @@ "line": "ID:gildong.hong@example.com mailto:{1} PW:IhqSb1Gg", "line_num": 4, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -11506,7 +11506,7 @@ "line": "ID:gildong.hong@example.com mailto:{1} PW:IhqSb1Gg", "line_num": 4, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -11523,7 +11523,7 @@ "line": "ID:gildong.hong@example.com mailto:{1} PW:IhqSb1Gg", "line_num": 4, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "gildong.hong@example.com", "value_start": 3, "value_end": 27, @@ -11548,7 +11548,7 @@ "line": "ID:gildong.hong@example.com mailto:{1} PW:IhqSb1Gg", "line_num": 4, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -11573,7 +11573,7 @@ "line": "Password:master/IhqSb1Gg", "line_num": 5, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "master/IhqSb1Gg", "value_start": 9, "value_end": 24, @@ -11598,7 +11598,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (PW:IhqSb1Gg)", "line_num": 6, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -11623,7 +11623,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (PW:IhqSb1Gg)", "line_num": 6, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -11648,7 +11648,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} password:IhqSb1Gg", "line_num": 7, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 49, "value_end": 57, @@ -11673,7 +11673,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} password:IhqSb1Gg", "line_num": 7, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 49, "value_end": 57, @@ -11698,7 +11698,7 @@ "line": "ssh -P IhqSb1Gg gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 11, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 62, "value_end": 70, @@ -11723,7 +11723,7 @@ "line": "ssh -P IhqSb1Gg gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 11, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 62, "value_end": 70, @@ -11748,7 +11748,7 @@ "line": "ID/Pass:xxxx:master/IhqSb1Gg,xxxx:master/IhqSb1Gg", "line_num": 13, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "xxxx:master/IhqSb1Gg,xxxx:master/IhqSb1Gg", "value_start": 8, "value_end": 49, @@ -11773,7 +11773,7 @@ "line": "gildong.hong@98.76.54.32 pwd:IhqSb1Gg", "line_num": 15, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 29, "value_end": 37, @@ -11798,7 +11798,7 @@ "line": "gildong.hong@98.76.54.32 pwd:IhqSb1Gg", "line_num": 15, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 29, "value_end": 37, @@ -11823,7 +11823,7 @@ "line": "\uacc4\uc815:master(PW:IhqSb1Gg)", "line_num": 16, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 13, "value_end": 21, @@ -11848,7 +11848,7 @@ "line": "\uacc4\uc815:master(PW:IhqSb1Gg)", "line_num": 16, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 13, "value_end": 21, @@ -11865,7 +11865,7 @@ "line": "\uacc4\uc815:master(PW:IhqSb1Gg)", "line_num": 16, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "master(PW:IhqSb1Gg)", "value_start": 3, "value_end": 22, @@ -11890,7 +11890,7 @@ "line": "\uacc4\uc815:master(PW:IhqSb1Gg)", "line_num": 16, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 13, "value_end": 21, @@ -11915,7 +11915,7 @@ "line": "98.76.54.32(pw:IhqSb1Gg)", "line_num": 17, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -11940,7 +11940,7 @@ "line": "98.76.54.32(pw:IhqSb1Gg)", "line_num": 17, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -11965,7 +11965,7 @@ "line": "98.76.54.32/pw:IhqSb1Gg", "line_num": 19, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -11990,7 +11990,7 @@ "line": "98.76.54.32/pw:IhqSb1Gg", "line_num": 19, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -12015,7 +12015,7 @@ "line": "ID:gildong.hong@example.com mailto:{1}/pw:IhqSb1Gg", "line_num": 20, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -12040,7 +12040,7 @@ "line": "ID:gildong.hong@example.com mailto:{1}/pw:IhqSb1Gg", "line_num": 20, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -12057,7 +12057,7 @@ "line": "ID:gildong.hong@example.com mailto:{1}/pw:IhqSb1Gg", "line_num": 20, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "gildong.hong@example.com", "value_start": 3, "value_end": 27, @@ -12082,7 +12082,7 @@ "line": "ID:gildong.hong@example.com mailto:{1}/pw:IhqSb1Gg", "line_num": 20, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -12107,7 +12107,7 @@ "line": "ID:gildong.hong@any.example.com mailto:{1} PWD:IhqSb1Gg", "line_num": 21, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 47, "value_end": 55, @@ -12132,7 +12132,7 @@ "line": "ID:gildong.hong@any.example.com mailto:{1} PWD:IhqSb1Gg", "line_num": 21, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 47, "value_end": 55, @@ -12149,7 +12149,7 @@ "line": "ID:gildong.hong@any.example.com mailto:{1} PWD:IhqSb1Gg", "line_num": 21, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "gildong.hong@any.example.com", "value_start": 3, "value_end": 31, @@ -12174,7 +12174,7 @@ "line": "ID:gildong.hong@any.example.com mailto:{1} PWD:IhqSb1Gg", "line_num": 21, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 47, "value_end": 55, @@ -12199,7 +12199,7 @@ "line": "sftp gildong.hong@98.76.54.32 mailto:{1} (pw:IhqSb1Gg)", "line_num": 22, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -12224,7 +12224,7 @@ "line": "sftp gildong.hong@98.76.54.32 mailto:{1} (pw:IhqSb1Gg)", "line_num": 22, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -12249,7 +12249,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} (pw:IhqSb1Gg)", "line_num": 23, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 40, "value_end": 48, @@ -12274,7 +12274,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} (pw:IhqSb1Gg)", "line_num": 23, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 40, "value_end": 48, @@ -12299,7 +12299,7 @@ "line": "-id:gildong.hong@example.com mailto:{1} -pwd:IhqSb1Gg", "line_num": 24, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -12324,7 +12324,7 @@ "line": "-id:gildong.hong@example.com mailto:{1} -pwd:IhqSb1Gg", "line_num": 24, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -12341,7 +12341,7 @@ "line": "-id:gildong.hong@example.com mailto:{1} -pwd:IhqSb1Gg", "line_num": 24, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "gildong.hong@example.com", "value_start": 4, "value_end": 28, @@ -12366,7 +12366,7 @@ "line": "-id:gildong.hong@example.com mailto:{1} -pwd:IhqSb1Gg", "line_num": 24, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -12391,7 +12391,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 25, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 50, "value_end": 58, @@ -12416,7 +12416,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 25, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 50, "value_end": 58, @@ -12441,7 +12441,7 @@ "line": "id:gildong.hong@example.com mailto:{1} password:IhqSb1Gg", "line_num": 28, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 48, "value_end": 56, @@ -12466,7 +12466,7 @@ "line": "id:gildong.hong@example.com mailto:{1} password:IhqSb1Gg", "line_num": 28, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 48, "value_end": 56, @@ -12483,7 +12483,7 @@ "line": "id:gildong.hong@example.com mailto:{1} password:IhqSb1Gg", "line_num": 28, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "gildong.hong@example.com", "value_start": 3, "value_end": 27, @@ -12508,7 +12508,7 @@ "line": "id:gildong.hong@example.com mailto:{1} password:IhqSb1Gg", "line_num": 28, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 48, "value_end": 56, @@ -12533,7 +12533,7 @@ "line": "98.76.54.32 ANY_PW:IhqSb1Gg", "line_num": 34, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 19, "value_end": 27, @@ -12558,7 +12558,7 @@ "line": "98.76.54.32 ANY_PW:IhqSb1Gg", "line_num": 34, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 19, "value_end": 27, @@ -12583,7 +12583,7 @@ "line": "98.76.54.32(ID/PW:IhqSb1Gg)", "line_num": 36, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 18, "value_end": 26, @@ -12608,7 +12608,7 @@ "line": "98.76.54.32(ID/PW:IhqSb1Gg)", "line_num": 36, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 18, "value_end": 26, @@ -12633,7 +12633,7 @@ "line": "gildong.hong@98.76.54.32 (pwd:IhqSb1Gg)", "line_num": 38, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 30, "value_end": 38, @@ -12658,7 +12658,7 @@ "line": "gildong.hong@98.76.54.32 (pwd:IhqSb1Gg)", "line_num": 38, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 30, "value_end": 38, @@ -12683,7 +12683,7 @@ "line": "ID/Pass:xxxx:master/IhqSb1Gg xxxx:master/IhqSb1Gg", "line_num": 45, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "xxxx:master/IhqSb1Gg", "value_start": 8, "value_end": 28, @@ -12708,7 +12708,7 @@ "line": "id:xxxx(ANYpw:IhqSb1Ga)", "line_num": 46, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Ga", "value_start": 14, "value_end": 22, @@ -12733,7 +12733,7 @@ "line": "id:xxxx(ANYpw:IhqSb1Ga)", "line_num": 46, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Ga", "value_start": 14, "value_end": 22, @@ -12758,7 +12758,7 @@ "line": "gildong.hong@98.76.54.32,pw:IhqSb1Gg", "line_num": 47, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 28, "value_end": 36, @@ -12783,7 +12783,7 @@ "line": "gildong.hong@98.76.54.32,pw:IhqSb1Gg", "line_num": 47, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 28, "value_end": 36, @@ -12808,7 +12808,7 @@ "line": "98.76.54.32(master/IhqSb1Gg,master/IhqSb1Gg)", "line_num": 48, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg,", "value_start": 19, "value_end": 28, @@ -12833,7 +12833,7 @@ "line": "98.76.54.32(master/IhqSb1Gg master/IhqSb1Gg)", "line_num": 49, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 19, "value_end": 27, @@ -12858,7 +12858,7 @@ "line": "98.76.54.32:xxxx(PW:IhqSb1Gg)", "line_num": 51, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 20, "value_end": 28, @@ -12883,7 +12883,7 @@ "line": "98.76.54.32:xxxx(PW:IhqSb1Gg)", "line_num": 51, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 20, "value_end": 28, @@ -12908,7 +12908,7 @@ "line": "gildong.hong@98.76.54.32 PW:IhqSb1Gg", "line_num": 56, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 28, "value_end": 36, @@ -12933,7 +12933,7 @@ "line": "gildong.hong@98.76.54.32 PW:IhqSb1Gg", "line_num": 56, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 28, "value_end": 36, @@ -12958,7 +12958,7 @@ "line": "ANY_user:xxxx ANY_pwd:IhqSb1Gg", "line_num": 61, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -12983,7 +12983,7 @@ "line": "ANY_user:xxxx ANY_pwd:IhqSb1Gg", "line_num": 61, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -13008,7 +13008,7 @@ "line": "Acount name:xxxx Initial Password:IhqSb1Gg", "line_num": 62, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 34, "value_end": 42, @@ -13033,7 +13033,7 @@ "line": "Acount name:xxxx Initial Password:IhqSb1Gg", "line_num": 62, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 34, "value_end": 42, @@ -13058,7 +13058,7 @@ "line": "Access wifi:xxxx(PW:IhqSb1Gg)", "line_num": 63, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 20, "value_end": 28, @@ -13083,7 +13083,7 @@ "line": "Access wifi:xxxx(PW:IhqSb1Gg)", "line_num": 63, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 20, "value_end": 28, @@ -13108,7 +13108,7 @@ "line": "-User:master -PasswordANY:IhqSb1Gg", "line_num": 66, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 26, "value_end": 34, @@ -13133,7 +13133,7 @@ "line": "98.76.54.32(ID/PW:master/IhqSb1Gg)", "line_num": 70, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 25, "value_end": 33, @@ -13158,7 +13158,7 @@ "line": "ID/PW master(IhqSb1Gg)", "line_num": 72, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 13, "value_end": 21, @@ -13183,7 +13183,7 @@ "line": "master@98.76.54.32(pw:IhqSb1Gg)", "line_num": 73, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -13208,7 +13208,7 @@ "line": "master@98.76.54.32(pw:IhqSb1Gg)", "line_num": 73, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -13233,7 +13233,7 @@ "line": "master@98.76.54.32,PW:IhqSb1Gg", "line_num": 74, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -13258,7 +13258,7 @@ "line": "master@98.76.54.32,PW:IhqSb1Gg", "line_num": 74, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 22, "value_end": 30, @@ -13283,7 +13283,7 @@ "line": "98.76.54.32 pw:IhqSb1Gg", "line_num": 75, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -13308,7 +13308,7 @@ "line": "98.76.54.32 pw:IhqSb1Gg", "line_num": 75, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -13333,7 +13333,7 @@ "line": "config:xxxx,PW:IhqSb1Gg", "line_num": 78, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -13358,7 +13358,7 @@ "line": "config:xxxx,PW:IhqSb1Gg", "line_num": 78, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 15, "value_end": 23, @@ -13383,7 +13383,7 @@ "line": "scp gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 82, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -13408,7 +13408,7 @@ "line": "scp gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 82, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -13433,7 +13433,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1} pw:IhqSb1Gg", "line_num": 83, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 38, "value_end": 46, @@ -13458,7 +13458,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1} pw:IhqSb1Gg", "line_num": 83, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 38, "value_end": 46, @@ -13475,7 +13475,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1} pw:IhqSb1Gg", "line_num": 83, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "gildong.hong@xxx.com", "value_start": 3, "value_end": 23, @@ -13500,7 +13500,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1} pw:IhqSb1Gg", "line_num": 83, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 38, "value_end": 46, @@ -13525,7 +13525,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 84, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 39, "value_end": 47, @@ -13550,7 +13550,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 84, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 39, "value_end": 47, @@ -13575,7 +13575,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1},pw:IhqSb1Gg", "line_num": 85, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -13600,7 +13600,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1},pw:IhqSb1Gg", "line_num": 85, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -13625,7 +13625,7 @@ "line": "(ssh gildong.hong@98.76.54.32 mailto{1}) pwd:IhqSb1Gg", "line_num": 87, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -13650,7 +13650,7 @@ "line": "(ssh gildong.hong@98.76.54.32 mailto{1}) pwd:IhqSb1Gg", "line_num": 87, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -13675,7 +13675,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1}, pw:IhqSb1Gg", "line_num": 90, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -13700,7 +13700,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1}, pw:IhqSb1Gg", "line_num": 90, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -13725,7 +13725,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (pwd:IhqSb1Gg)", "line_num": 93, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -13750,7 +13750,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} (pwd:IhqSb1Gg)", "line_num": 93, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -13775,7 +13775,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 94, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 46, "value_end": 54, @@ -13800,7 +13800,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} (password:IhqSb1Gg)", "line_num": 94, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 46, "value_end": 54, @@ -13825,7 +13825,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} Password:IhqSb1Gg", "line_num": 96, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -13850,7 +13850,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} Password:IhqSb1Gg", "line_num": 96, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -13875,7 +13875,7 @@ "line": "gildong.hong@98.76.54.32 mailto:{1} (pass:IhqSb1Gg)", "line_num": 97, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 42, "value_end": 50, @@ -13900,7 +13900,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 100, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -13925,7 +13925,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} pw:IhqSb1Gg", "line_num": 100, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 43, "value_end": 51, @@ -13950,7 +13950,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1} pass:IhqSb1Gg", "line_num": 101, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 45, "value_end": 53, @@ -13975,7 +13975,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1}/password:IhqSb1Gg", "line_num": 102, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -14000,7 +14000,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1}/password:IhqSb1Gg", "line_num": 102, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -14017,7 +14017,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1}/password:IhqSb1Gg", "line_num": 102, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "gildong.hong@xxx.com", "value_start": 3, "value_end": 23, @@ -14042,7 +14042,7 @@ "line": "id:gildong.hong@xxx.com mailto:{1}/password:IhqSb1Gg", "line_num": 102, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 44, "value_end": 52, @@ -14067,7 +14067,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1}/password:IhqSb1Gg", "line_num": 104, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 49, "value_end": 57, @@ -14092,7 +14092,7 @@ "line": "ssh gildong.hong@98.76.54.32 mailto:{1}/password:IhqSb1Gg", "line_num": 104, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 49, "value_end": 57, @@ -14117,7 +14117,7 @@ "line": "-ANYID:gildong.hong@example.com mailto:{1} -pw:IhqSb1Gg", "line_num": 105, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 47, "value_end": 55, @@ -14142,7 +14142,7 @@ "line": "-ANYID:gildong.hong@example.com mailto:{1} -pw:IhqSb1Gg", "line_num": 105, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 47, "value_end": 55, @@ -14159,7 +14159,7 @@ "line": "-ANYID:gildong.hong@example.com mailto:{1} -pw:IhqSb1Gg", "line_num": 105, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "gildong.hong@example.com", "value_start": 7, "value_end": 31, @@ -14184,7 +14184,7 @@ "line": "-ANYID:gildong.hong@example.com mailto:{1} -pw:IhqSb1Gg", "line_num": 105, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 47, "value_end": 55, @@ -14209,7 +14209,7 @@ "line": "ID:gildong.hong@xxxx.net mailto:{1} pw:IhqSb1Gg", "line_num": 106, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 39, "value_end": 47, @@ -14234,7 +14234,7 @@ "line": "ID:gildong.hong@xxxx.net mailto:{1} pw:IhqSb1Gg", "line_num": 106, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 39, "value_end": 47, @@ -14259,7 +14259,7 @@ "line": "http://98.76.54.32:xxx(pw:IhqSb1Gg)", "line_num": 108, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 26, "value_end": 34, @@ -14284,7 +14284,7 @@ "line": "http://98.76.54.32:xxx(pw:IhqSb1Gg)", "line_num": 108, "path": "./tests/samples/doc_various", - "info": "./tests/samples/doc_various|RAW", + "info": "FILE|RAW", "value": "IhqSb1Gg", "value_start": 26, "value_end": 34, @@ -14309,7 +14309,7 @@ "line": "Password: \"Dw7^&ndgf", "line_num": 16, "path": "./tests/samples/drawio", - "info": "./tests/samples/drawio|MXFILE", + "info": "FILE|MXFILE", "value": "Df34D<345&>gf", "value_start": 14, "value_end": 27, @@ -14434,7 +14434,7 @@ "line": "secret: >4<563^%$&5w", "line_num": 31, "path": "./tests/samples/drawio", - "info": "./tests/samples/drawio|MXFILE", + "info": "FILE|MXFILE", "value": ">4<563^%$&5w", "value_start": 8, "value_end": 20, @@ -14459,7 +14459,7 @@ "line": "pass: Dsfgh%$d<>s&", "line_num": 34, "path": "./tests/samples/drawio", - "info": "./tests/samples/drawio|MXFILE", + "info": "FILE|MXFILE", "value": "Dsfgh%$d<>s&", "value_start": 6, "value_end": 18, @@ -14484,7 +14484,7 @@ "line": "page2 secret is ce49dba1-e4fe-b2a7-4ffa-132bcd819474", "line_num": 45, "path": "./tests/samples/drawio", - "info": "./tests/samples/drawio|MXFILE", + "info": "FILE|MXFILE", "value": "ce49dba1-e4fe-b2a7-4ffa-132bcd819474", "value_start": 16, "value_end": 52, @@ -14509,7 +14509,7 @@ "line": "page2 secret is ce49dba1-e4fe-b2a7-4ffa-132bcd819474", "line_num": 45, "path": "./tests/samples/drawio", - "info": "./tests/samples/drawio|MXFILE", + "info": "FILE|MXFILE", "value": "ce49dba1-e4fe-b2a7-4ffa-132bcd819474", "value_start": 16, "value_end": 52, @@ -14534,7 +14534,7 @@ "line": "var g = '7rBynGo0b1cAAAAAAAAAAc72L3T6rQK51mB5a06ijnwRG91deTxvSqdZNAlxq8pZ'", "line_num": 1, "path": "./tests/samples/dropbox_api_secret_long_term", - "info": "./tests/samples/dropbox_api_secret_long_term|RAW", + "info": "FILE|RAW", "value": "7rBynGo0b1cAAAAAAAAAAc72L3T6rQK51mB5a06ijnwRG91deTxvSqdZNAlxq8pZ", "value_start": 9, "value_end": 73, @@ -14559,7 +14559,7 @@ "line": "var app_unique_val_s = 'wpv1jq9xwanbn3n';", "line_num": 1, "path": "./tests/samples/dropbox_app_secret", - "info": "./tests/samples/dropbox_app_secret|RAW", + "info": "FILE|RAW", "value": "wpv1jq9xwanbn3n", "value_start": 24, "value_end": 39, @@ -14584,7 +14584,7 @@ "line": "var dropbox = 'sl.BdmpmC82mhhySscKk2oQGyE5l--8LdAQftLTXVGQhP39Z8FtAK1BhePhyevurA-Elt7ToIr6OpwzKAYE7RBqpu6VVyQU5WlCTL_Q7N4gElXahaWou6aPpOIwgGCIOq9aeC3YFoc';", "line_num": 1, "path": "./tests/samples/dropbox_oauth_token", - "info": "./tests/samples/dropbox_oauth_token|RAW", + "info": "FILE|RAW", "value": "sl.BdmpmC82mhhySscKk2oQGyE5l--8LdAQftLTXVGQhP39Z8FtAK1BhePhyevurA-Elt7ToIr6OpwzKAYE7RBqpu6VVyQU5WlCTL_Q7N4gElXahaWou6aPpOIwgGCIOq9aeC3YFoc", "value_start": 15, "value_end": 153, @@ -14609,7 +14609,7 @@ "line": "dt0c01.ST2EY72KQINMH574WMNVI7YN.G3DFPBEJYMODIDAEX454M7YWBUVEFOWKPRVMWFASS64NFH52PX6BNDVFFM572RZM", "line_num": 1, "path": "./tests/samples/dynatrace_api.hs", - "info": "./tests/samples/dynatrace_api.hs|RAW", + "info": "FILE|RAW", "value": "dt0c01.ST2EY72KQINMH574WMNVI7YN.G3DFPBEJYMODIDAEX454M7YWBUVEFOWKPRVMWFASS64NFH52PX6BNDVFFM572RZM", "value_start": 0, "value_end": 96, @@ -14634,7 +14634,7 @@ "line": "# this is encrypted key that should be not found {\"secretKey\": \"ENC(2dfRFqV/cS6TzRd+JyO=)\"}", "line_num": 1, "path": "./tests/samples/encrypted_credential", - "info": "./tests/samples/encrypted_credential|RAW", + "info": "FILE|RAW", "value": "ENC(2dfRFqV/cS6TzRd+JyO=", "value_start": 64, "value_end": 88, @@ -14659,7 +14659,7 @@ "line": "GI_REO_GI_FACEBOOK_TOKEN = \"EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD\"", "line_num": 1, "path": "./tests/samples/facebook_key", - "info": "./tests/samples/facebook_key|RAW", + "info": "FILE|RAW", "value": "EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWo", "value_start": 28, "value_end": 108, @@ -14684,7 +14684,7 @@ "line": "GI_REO_GI_FACEBOOK_TOKEN = \"EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD\"", "line_num": 1, "path": "./tests/samples/facebook_key", - "info": "./tests/samples/facebook_key|RAW", + "info": "FILE|RAW", "value": "EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "value_start": 28, "value_end": 115, @@ -14709,7 +14709,7 @@ "line": "1527194624358273|qbBf2-fdB9zZpqLA0_2nNzZDw2M", "line_num": 2, "path": "./tests/samples/facebook_key", - "info": "./tests/samples/facebook_key|RAW", + "info": "FILE|RAW", "value": "1527194624358273|qbBf2-fdB9zZpqLA0_2nNzZDw2M", "value_start": 0, "value_end": 44, @@ -14734,7 +14734,7 @@ "line": "test-app-domain-42.firebaseapp.com", "line_num": 1, "path": "./tests/samples/firebase_domain", - "info": "./tests/samples/firebase_domain|RAW", + "info": "FILE|RAW", "value": "test-app-domain-42.firebaseapp.com", "value_start": 0, "value_end": 34, @@ -14759,7 +14759,7 @@ "line": "test2.io.firebaseio.com", "line_num": 2, "path": "./tests/samples/firebase_domain", - "info": "./tests/samples/firebase_domain|RAW", + "info": "FILE|RAW", "value": "test2.io.firebaseio.com", "value_start": 0, "value_end": 23, @@ -14784,7 +14784,7 @@ "line": "ghp_00000000000000000000000000000004WZ4EQ # classic", "line_num": 1, "path": "./tests/samples/github_classic_token", - "info": "./tests/samples/github_classic_token|RAW", + "info": "FILE|RAW", "value": "ghp_00000000000000000000000000000004WZ4EQ", "value_start": 0, "value_end": 41, @@ -14809,7 +14809,7 @@ "line": "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", "line_num": 2, "path": "./tests/samples/github_fine_granted_token", - "info": "./tests/samples/github_fine_granted_token|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 93, @@ -14834,7 +14834,7 @@ "line": "GITHUB_ACCESS_TOKEN = \"lbyxnhqjfnzhlpnvcvaxjumgvdlnktgugdofmzyy\"", "line_num": 1, "path": "./tests/samples/github_key.groovy", - "info": "./tests/samples/github_key.groovy|RAW", + "info": "FILE|RAW", "value": "lbyxnhqjfnzhlpnvcvaxjumgvdlnktgugdofmzyy", "value_start": 23, "value_end": 63, @@ -14859,7 +14859,7 @@ "line": "GITHUB_ACCESS_TOKEN = \"lbyxnhqjfnzhlpnvcvaxjumgvdlnktgugdofmzyy\"", "line_num": 1, "path": "./tests/samples/github_key.groovy", - "info": "./tests/samples/github_key.groovy|RAW", + "info": "FILE|RAW", "value": "lbyxnhqjfnzhlpnvcvaxjumgvdlnktgugdofmzyy", "value_start": 23, "value_end": 63, @@ -14884,7 +14884,7 @@ "line": "var email_t = '7e4v6v5j2nepcc8f5zvatgl9g';", "line_num": 1, "path": "./tests/samples/gitlab_email_token", - "info": "./tests/samples/gitlab_email_token|RAW", + "info": "FILE|RAW", "value": "7e4v6v5j2nepcc8f5zvatgl9g", "value_start": 15, "value_end": 40, @@ -14909,7 +14909,7 @@ "line": "feed_n = 'o9aEaH32LN618KhF7e_L'", "line_num": 1, "path": "./tests/samples/gitlab_feed_token", - "info": "./tests/samples/gitlab_feed_token|RAW", + "info": "FILE|RAW", "value": "o9aEaH32LN618KhF7e_L", "value_start": 10, "value_end": 30, @@ -14934,7 +14934,7 @@ "line": "glpat-8d5ri2n9g85LAnC9YW85 # Personal access token, Impersonation token, Project access token, Group access token", "line_num": 2, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glpat-8d5ri2n9g85LAnC9YW85", "value_start": 0, "value_end": 26, @@ -14959,7 +14959,7 @@ "line": "gloas-7fc1974b38580e6ceca8c077863cd5e88745895dfcbe1ae3c36eab9c498103dc # OAuth Application Secret", "line_num": 3, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "gloas-7fc1974b38580e6ceca8c077863cd5e88745895dfcbe1ae3c36eab9c498103dc", "value_start": 0, "value_end": 70, @@ -14984,7 +14984,7 @@ "line": "gldt-9BeUoeWu2V9uUS3uLoMy # Deploy token", "line_num": 4, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "gldt-9BeUoeWu2V9uUS3uLoMy", "value_start": 0, "value_end": 25, @@ -15009,7 +15009,7 @@ "line": "glrt-2CR8_eVxiio-1QmzPZwa # Runner authentication token", "line_num": 5, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glrt-2CR8_eVxiio-1QmzPZwa", "value_start": 0, "value_end": 25, @@ -15034,7 +15034,7 @@ "line": "glcbt-1375_cgpAsnEmP-79kcfRLyK_", "line_num": 6, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glcbt-1375_cgpAsnEmP-79kcfRLyK_", "value_start": 0, "value_end": 31, @@ -15059,7 +15059,7 @@ "line": "glcbt-0_c1k_AsgyRp4mP-Kcn8fL # CI/CD Job token", "line_num": 7, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glcbt-0_c1k_AsgyRp4mP-Kcn8fL", "value_start": 0, "value_end": 28, @@ -15084,7 +15084,7 @@ "line": "glptt-33276248c9748113e978392e5c074b7f974f8683 # Trigger token", "line_num": 8, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glptt-33276248c9748113e978392e5c074b7f974f8683", "value_start": 0, "value_end": 46, @@ -15109,7 +15109,7 @@ "line": "glft-Aafqn5A31G-2VipZMh28 # Feed token", "line_num": 9, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glft-Aafqn5A31G-2VipZMh28", "value_start": 0, "value_end": 25, @@ -15134,7 +15134,7 @@ "line": "glimt-1jpqzsnw2n71om0r9kgt06os3 # Incoming mail token", "line_num": 10, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glimt-1jpqzsnw2n71om0r9kgt06os3", "value_start": 0, "value_end": 31, @@ -15159,7 +15159,7 @@ "line": "glagent-ZQmgbRr-Ydu5YehnXCGiiSLxjd53EkFnYapS7A4TwyNE8Y2XVg # GitLab agent for Kubernetes token", "line_num": 11, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glagent-ZQmgbRr-Ydu5YehnXCGiiSLxjd53EkFnYapS7A4TwyNE8Y2XVg", "value_start": 0, "value_end": 58, @@ -15184,7 +15184,7 @@ "line": "_gitlab_session=8d2a78c080a3af1e6a4677be474432f2 # GitLab session cookies", "line_num": 12, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "_gitlab_session=8d2a78c080a3af1e6a4677be474432f2", "value_start": 0, "value_end": 48, @@ -15209,7 +15209,7 @@ "line": "glsoat-971om0ecn5A386r9k481 # SCIM Tokens", "line_num": 13, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glsoat-971om0ecn5A386r9k481", "value_start": 0, "value_end": 27, @@ -15234,7 +15234,7 @@ "line": "glffct-AnRWYdo3Si_Xm2Q6n7zu # Feature Flags Client token", "line_num": 14, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "glffct-AnRWYdo3Si_Xm2Q6n7zu", "value_start": 0, "value_end": 27, @@ -15259,7 +15259,7 @@ "line": "GR1348941jG6xeSsmN8DFVKoyBYu2 # Runner registration token", "line_num": 17, "path": "./tests/samples/gitlab_prefix_token", - "info": "./tests/samples/gitlab_prefix_token|RAW", + "info": "FILE|RAW", "value": "GR1348941jG6xeSsmN8DFVKoyBYu2", "value_start": 0, "value_end": 29, @@ -15284,7 +15284,7 @@ "line": "AIzaGiReoG-CrackleCrackle12315618_12315", "line_num": 1, "path": "./tests/samples/google_api_key.toml", - "info": "./tests/samples/google_api_key.toml|RAW", + "info": "FILE|RAW", "value": "AIzaGiReoG-CrackleCrackle12315618_12315", "value_start": 0, "value_end": 39, @@ -15309,7 +15309,7 @@ "line": "194206074328-qp89pdv6fi35vsi71258g1eh31q6h7c3.apps.googleusercontent.com", "line_num": 2, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "194206074328-qp89pdv6fi35vsi71258g1eh31q6h7c3.apps.googleusercontent.com", "value_start": 0, "value_end": 72, @@ -15326,7 +15326,7 @@ "line": "4L2QMyTm6Rr0o46ytGiReoG1", "line_num": 4, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "4L2QMyTm6Rr0o46ytGiReoG1", "value_start": 0, "value_end": 24, @@ -15351,7 +15351,7 @@ "line": "\"id\":\"194206074328-qdv6fi3eh31q6h7c35vsi7p89p1258g1.apps.googleusercontent.com\",\"CEKPET\":\"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\",", "line_num": 18, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "194206074328-qdv6fi3eh31q6h7c35vsi7p89p1258g1.apps.googleusercontent.com", "value_start": 6, "value_end": 78, @@ -15368,7 +15368,7 @@ "line": "\"id\":\"194206074328-qdv6fi3eh31q6h7c35vsi7p89p1258g1.apps.googleusercontent.com\",\"CEKPET\":\"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\",", "line_num": 18, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 90, "value_end": 125, @@ -15393,7 +15393,7 @@ "line": "\"id\":\"194206074328-qdv6fi3eh31q6h7c35vsi7p89p1258g1.apps.googleusercontent.com\",\"CEKPET\":\"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\",", "line_num": 18, "path": "./tests/samples/google_multi", - "info": "./tests/samples/google_multi|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 90, "value_end": 125, @@ -15418,7 +15418,7 @@ "line": "google_oauth_key = \"ya29.gi_reo_gi_crackle_ln22\"", "line_num": 1, "path": "./tests/samples/google_oauth_key", - "info": "./tests/samples/google_oauth_key|RAW", + "info": "FILE|RAW", "value": "ya29.gi_reo_gi_crackle_ln22", "value_start": 20, "value_end": 47, @@ -15443,7 +15443,7 @@ "line": "grafana_policy = 'glc_eyJvIjoiMjA0NjMwIiwibiI6InRlc3QtdG9rZW4iLCJrIjoidklnbjJ2WHc5MTVXOWtNOWxsNHcyZHEyIiwibSI6eyJyIjoicHJvZC0wIn19'", "line_num": 1, "path": "./tests/samples/grafana_access_policy_token", - "info": "./tests/samples/grafana_access_policy_token|RAW", + "info": "FILE|RAW", "value": "glc_eyJvIjoiMjA0NjMwIiwibiI6InRlc3QtdG9rZW4iLCJrIjoidklnbjJ2WHc5MTVXOWtNOWxsNHcyZHEyIiwibSI6eyJyIjoicHJvZC0wIn19", "value_start": 18, "value_end": 130, @@ -15468,7 +15468,7 @@ "line": "grafana = 'eyJrIjoiMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCIsIm4iOiJ4eHh4IiwiaWQiOjIwNDM2MH0='", "line_num": 1, "path": "./tests/samples/grafana_provisioned_api_key", - "info": "./tests/samples/grafana_provisioned_api_key|RAW", + "info": "FILE|RAW", "value": "eyJrIjoiMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCIsIm4iOiJ4eHh4IiwiaWQiOjIwNDM2MH0=", "value_start": 11, "value_end": 107, @@ -15493,7 +15493,7 @@ "line": "glsa_ThisI5NtTheTok3nYou8reLo0k1ngF0r_0a2a3df7", "line_num": 1, "path": "./tests/samples/grafana_service_accounts", - "info": "./tests/samples/grafana_service_accounts|RAW", + "info": "FILE|RAW", "value": "glsa_ThisI5NtTheTok3nYou8reLo0k1ngF0r_0a2a3df7", "value_start": 0, "value_end": 46, @@ -15518,7 +15518,7 @@ "line": "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", "line_num": 1, "path": "./tests/samples/groq_api_key", - "info": "./tests/samples/groq_api_key|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 56, @@ -15543,7 +15543,7 @@ "line": "url/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?part", "line_num": 2, "path": "./tests/samples/groq_api_key", - "info": "./tests/samples/groq_api_key|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 4, "value_end": 60, @@ -15568,7 +15568,7 @@ "line": "Z28P3STmkBQi1Y.atlasv1.YE7RBqu6VVyQIOq9a1eC3YFU5Elt7ToIr6OwzKAWlCTQ7N4gElXaWou6aPpOIwGCoc0", "line_num": 1, "path": "./tests/samples/hashicorp", - "info": "./tests/samples/hashicorp|RAW", + "info": "FILE|RAW", "value": "Z28P3STmkBQi1Y.atlasv1.YE7RBqu6VVyQIOq9a1eC3YFU5Elt7ToIr6OwzKAWlCTQ7N4gElXaWou6aPpOIwGCoc0", "value_start": 0, "value_end": 90, @@ -15593,7 +15593,7 @@ "line": "hvs.atlasv1-Z28P3STmkBQi1Y-YE7RBqu6VVyQIOq9a1eC3YFU5Elt7ToIr6OwzKAWlCTQ7N4gElXaWou6aPpOIwGCoc0", "line_num": 2, "path": "./tests/samples/hashicorp", - "info": "./tests/samples/hashicorp|RAW", + "info": "FILE|RAW", "value": "hvs.atlasv1-Z28P3STmkBQi1Y-YE7RBqu6VVyQIOq9a1eC3YFU5Elt7ToIr6OwzKAWlCTQ7N4gElXaWou6aPpOIwGCoc0", "value_start": 0, "value_end": 94, @@ -15618,7 +15618,7 @@ "line": "HerOkUa04b8c1d-A147-b252-3b6a8f9c2b16", "line_num": 1, "path": "./tests/samples/heroku_api.toml", - "info": "./tests/samples/heroku_api.toml|RAW", + "info": "FILE|RAW", "value": "HerOkUa04b8c1d-A147-b252-3b6a8f9c2b16", "value_start": 0, "value_end": 37, @@ -15643,7 +15643,7 @@ "line": "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", "line_num": 1, "path": "./tests/samples/huggingface", - "info": "./tests/samples/huggingface|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 37, @@ -15668,7 +15668,7 @@ "line": "url/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/part", "line_num": 2, "path": "./tests/samples/huggingface", - "info": "./tests/samples/huggingface|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 4, "value_end": 41, @@ -15693,7 +15693,7 @@ "line": "hf_UdYjVqYvybBLEhIrwwEUYjOgkeyexample", "line_num": 6, "path": "./tests/samples/huggingface", - "info": "./tests/samples/huggingface|RAW", + "info": "FILE|RAW", "value": "hf_UdYjVqYvybBLEhIrwwEUYjOgkeyexample", "value_start": 0, "value_end": 37, @@ -15718,7 +15718,7 @@ "line": "IGQVJWS3pUNmZA2MUJDVlRwLW9ac1lrU05nZAmpzWHQtWHFJSEFRMF9tWVpRdEd70HQ5Wk8wSnY0R0VEQnVQdUU0MnpxNWxocUYyNmZAXSTUtVVNrMmh1ZAHZAQQno2ZA0VHR0lLWkk1N1R5RDFvM0dmVEpIYQZGZX", "line_num": 1, "path": "./tests/samples/instagram_access_token", - "info": "./tests/samples/instagram_access_token|RAW", + "info": "FILE|RAW", "value": "IGQVJWS3pUNmZA2MUJDVlRwLW9ac1lrU05nZAmpzWHQtWHFJSEFRMF9tWVpRdEd70HQ5Wk8wSnY0R0VEQnVQdUU0MnpxNWxocUYyNmZAXSTUtVVNrMmh1ZAHZAQQno2ZA0VHR0lLWkk1N1R5RDFvM0dmVEpIYQZGZX", "value_start": 0, "value_end": 162, @@ -15743,7 +15743,7 @@ "line": "+ \"password\": \"dkajco1\"", "line_num": 10, "path": "./tests/samples/iso_ir_111.patch", - "info": "./tests/samples/iso_ir_111.patch|RAW", + "info": "FILE|RAW", "value": "dkajco1", "value_start": 16, "value_end": 23, @@ -15768,7 +15768,7 @@ "line": "cmVmdGtuOjAxOjAxMjM0NTY3ODk6QWJjZGVmR2hpamtsbW5vUHFyc3R1dnd4eXow", "line_num": 1, "path": "./tests/samples/jfrog_p", - "info": "./tests/samples/jfrog_p|RAW", + "info": "FILE|RAW", "value": "cmVmdGtuOjAxOjAxMjM0NTY3ODk6QWJjZGVmR2hpamtsbW5vUHFyc3R1dnd4eXow", "value_start": 0, "value_end": 64, @@ -15793,7 +15793,7 @@ "line": "AKCp2UNCd8uK7hQoxZnFE4PGtRHnAcBHr43HgLcj7nJmWb4JhVUqBwa2iwXszftnogpo2EVFa", "line_num": 2, "path": "./tests/samples/jfrog_p", - "info": "./tests/samples/jfrog_p|RAW", + "info": "FILE|RAW", "value": "AKCp2UNCd8uK7hQoxZnFE4PGtRHnAcBHr43HgLcj7nJmWb4JhVUqBwa2iwXszftnogpo2EVFa", "value_start": 0, "value_end": 73, @@ -15818,7 +15818,7 @@ "line": "WXFES7QNTET5DQYC", "line_num": 1, "path": "./tests/samples/jira_2fa", - "info": "./tests/samples/jira_2fa|RAW", + "info": "FILE|RAW", "value": "WXFES7QNTET5DQYC", "value_start": 0, "value_end": 16, @@ -15843,7 +15843,7 @@ "line": "TP: https://www.example.com/api/verification/version2322/token/OTI2NjA3NjU1NTI2Oh2DOnASdOHoIhEGyqIuYrdkYaQZ", "line_num": 1, "path": "./tests/samples/jira_confluence_pat", - "info": "./tests/samples/jira_confluence_pat|RAW", + "info": "FILE|RAW", "value": "OTI2NjA3NjU1NTI2Oh2DOnASdOHoIhEGyqIuYrdkYaQZ", "value_start": 63, "value_end": 107, @@ -15868,7 +15868,7 @@ "line": "\"image/png\": \"iVBORx09VIskhxhCe7sh03R1dnENPiB66xQSIZjEYN13vafX/OTI2NjA3NjU1NTI2Oh2DOnASdOHoIhEGyqIuYrdkYaQZ/hZwUteHsmN+z+aoEAAAAvL+Q5FSQGyqIuYrdkYaQZuW1TvI=\\n\",", "line_num": 2, "path": "./tests/samples/jira_confluence_pat", - "info": "./tests/samples/jira_confluence_pat|RAW", + "info": "FILE|RAW", "value": "OTI2NjA3NjU1NTI2Oh2DOnASdOHoIhEGyqIuYrdkYaQZ", "value_start": 67, "value_end": 111, @@ -15893,7 +15893,7 @@ "line": "detected: eyJhbGciOiJSUzI1NiJ9Cg.eyJleHAiOjY1NTM2fQo.Ce7sh0ENPiBlE_dose0cBA", "line_num": 1, "path": "./tests/samples/json_web_token", - "info": "./tests/samples/json_web_token|RAW", + "info": "FILE|RAW", "value": "eyJhbGciOiJSUzI1NiJ9Cg.eyJleHAiOjY1NTM2fQo.Ce7sh0ENPiBlE_dose0cBA", "value_start": 10, "value_end": 75, @@ -15918,7 +15918,7 @@ "line": "prKeyValid=LS0tLS1CRUdJTiBQUklWQVRFIENDcUdTTTQ5QXdFSEJHMHdhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJBTkNBQVNnRlRLandKQUFVOTVnKysvdnpLV0hrekFWbU5NSQp0", "line_num": 1, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "LS0tLS1CRUdJTiBQUklWQVRFIENDcUdTTTQ5QXdFSEJHMHdhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZ", "value_start": 11, "value_end": 91, @@ -15943,7 +15943,7 @@ "line": "secret_looks_like_linux_path_1=\"/VnpmUGWxhQW9KQAwrL2ZYdDJPNG1PQjYxMXNPaF\"", "line_num": 2, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "/VnpmUGWxhQW9KQAwrL2ZYdDJPNG1PQjYxMXNPaF", "value_start": 32, "value_end": 72, @@ -15968,7 +15968,7 @@ "line": "secret_looks_like_linux_path_2=\"VnpmUGWxhQW/9KQAwrL2ZYd/DJPNG1PQjYxMXNPF\"", "line_num": 3, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "VnpmUGWxhQW/9KQAwrL2ZYd/DJPNG1PQjYxMXNPF", "value_start": 32, "value_end": 72, @@ -15993,7 +15993,7 @@ "line": "secret_looks_like_linux_path_3=\"VnpmUGWxhQW/9KQAwrL2ZYdDJPNG1PQjYxMXNPF=\"", "line_num": 4, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "VnpmUGWxhQW/9KQAwrL2ZYdDJPNG1PQjYxMXNPF=", "value_start": 32, "value_end": 72, @@ -16018,7 +16018,7 @@ "line": "secret_looks_like_linux_path__=\"VnpmUGWxhQW/9KQAwrL2ZYd/DJPNG1PQjEXAMbLE\"", "line_num": 5, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "VnpmUGWxhQW/9KQAwrL2ZYd/DJPNG1PQjEXAMbLE", "value_start": 32, "value_end": 72, @@ -16043,7 +16043,7 @@ "line": "\"https://example.com/api/js?key=dhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJB&bug=true\"", "line_num": 7, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "dhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJB", "value_start": 32, "value_end": 87, @@ -16068,7 +16068,7 @@ "line": "\"https://example.com/api/js?key=dhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJB&bug=true\"", "line_num": 7, "path": "./tests/samples/key.hs", - "info": "./tests/samples/key.hs|RAW", + "info": "FILE|RAW", "value": "dhd0lCQVFRZ0ViVnpmUGWxhQW9KQWwrLzZYdDJPNG1PQjYxMXNPaFJB", "value_start": 32, "value_end": 87, @@ -16093,7 +16093,7 @@ "line": "$key = 'gmUGWxhQW9KQWdhd0lCQVFRZ0ViVnpwrLzZYdDJPNG1PQjYxMXNPaFJ1", "line_num": 1, "path": "./tests/samples/key.php", - "info": "./tests/samples/key.php|RAW", + "info": "FILE|RAW", "value": "gmUGWxhQW9KQWdhd0lCQVFRZ0ViVnpwrLzZYdDJPNG1PQjYxMXNPaFJ1", "value_start": 8, "value_end": 64, @@ -16118,7 +16118,7 @@ "line": "\"pass_mask64\": \"0x81103c1452dd61cd\",", "line_num": 8, "path": "./tests/samples/key_value.json", - "info": "./tests/samples/key_value.json|RAW", + "info": "FILE|RAW", "value": "0x81103c1452dd61cd", "value_start": 24, "value_end": 42, @@ -16143,7 +16143,7 @@ "line": "mailchimp = \"LRINSm5Vdi9BMCzCWSJ8M3TMysUHwDzB-us36\"", "line_num": 1, "path": "./tests/samples/mailchimp_key", - "info": "./tests/samples/mailchimp_key|RAW", + "info": "FILE|RAW", "value": "LRINSm5Vdi9BMCzCWSJ8M3TMysUHwDzB-us36", "value_start": 13, "value_end": 50, @@ -16168,7 +16168,7 @@ "line": "key-01tFV84CdKU95USNy977sDU0FoTkqXyQ", "line_num": 1, "path": "./tests/samples/mailgun_key.hs", - "info": "./tests/samples/mailgun_key.hs|RAW", + "info": "FILE|RAW", "value": "key-01tFV84CdKU95USNy977sDU0FoTkqXyQ", "value_start": 0, "value_end": 36, @@ -16193,7 +16193,7 @@ "line": "+ clid = \"AKIAQWADE5R42RDZ4JEM\"", "line_num": 45, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "AKIAQWADE5R42RDZ4JEM", "value_start": 11, "value_end": 31, @@ -16218,7 +16218,7 @@ "line": "+ clid = \"AKIAQWADE5R42RDZ4JEM\"", "line_num": 45, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "AKIAQWADE5R42RDZ4JEM", "value_start": 11, "value_end": 31, @@ -16235,7 +16235,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 46, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -16260,7 +16260,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 46, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -16285,7 +16285,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 46, "path": "./tests/samples/multifile.patch", - "info": "./tests/samples/multifile.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -16310,7 +16310,7 @@ "line": "+ clid = \"AKIAQWADE5R42RDZ4JEM\"", "line_num": 8, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "AKIAQWADE5R42RDZ4JEM", "value_start": 11, "value_end": 31, @@ -16335,7 +16335,7 @@ "line": "+ clid = \"AKIAQWADE5R42RDZ4JEM\"", "line_num": 8, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "AKIAQWADE5R42RDZ4JEM", "value_start": 11, "value_end": 31, @@ -16352,7 +16352,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 9, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -16377,7 +16377,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 9, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -16402,7 +16402,7 @@ "line": "+ token = \"V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ\"", "line_num": 9, "path": "./tests/samples/multiline.patch", - "info": "./tests/samples/multiline.patch|RAW", + "info": "FILE|RAW", "value": "V84C7sDU001tFFodKU95USNy97TkqXymnvsFmYhQ", "value_start": 12, "value_end": 52, @@ -16427,7 +16427,7 @@ "line": "password: F1lT3ReDw17hQoT3s", "line_num": 3, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|RAW", + "info": "FILE|RAW", "value": "F1lT3ReDw17hQoT3s", "value_start": 10, "value_end": 27, @@ -16452,7 +16452,7 @@ "line": "password: F1lT3ReDw17hQoT3s", "line_num": 3, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|RAW", + "info": "FILE|RAW", "value": "F1lT3ReDw17hQoT3s", "value_start": 10, "value_end": 27, @@ -16477,7 +16477,7 @@ "line": "key_wrap = 'KJHhJKhKU7yguyuyfrtsdESffhjgkhYT\\", "line_num": 7, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|RAW", + "info": "FILE|RAW", "value": "KJHhJKhKU7yguyuyfrtsdESffhjgkhYT\\", "value_start": 12, "value_end": 45, @@ -16502,7 +16502,7 @@ "line": "key_multi = '''KJHfdjs8767gr54534wsFHGf5hJKhK", "line_num": 11, "path": "./tests/samples/nonce.py", - "info": "./tests/samples/nonce.py|RAW", + "info": "FILE|RAW", "value": "KJHfdjs8767gr54534wsFHGf5hJKhK", "value_start": 15, "value_end": 45, @@ -16527,7 +16527,7 @@ "line": "k = 'oy2mlf2v7jl2firuegfqwzc4zxyebz3ethzd14g4hw4iam'", "line_num": 1, "path": "./tests/samples/nuget_api_key", - "info": "./tests/samples/nuget_api_key|RAW", + "info": "FILE|RAW", "value": "oy2mlf2v7jl2firuegfqwzc4zxyebz3ethzd14g4hw4iam", "value_start": 5, "value_end": 51, @@ -16552,7 +16552,7 @@ "line": "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", "line_num": 2, "path": "./tests/samples/open_ai_token", - "info": "./tests/samples/open_ai_token|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 51, @@ -16577,7 +16577,7 @@ "line": "sk-proj-qa25MV9c7Qu0EjDIEWdcT3BlbkFJ83uCF0K4yw7RzpY39bio", "line_num": 3, "path": "./tests/samples/open_ai_token", - "info": "./tests/samples/open_ai_token|RAW", + "info": "FILE|RAW", "value": "sk-proj-qa25MV9c7Qu0EjDIEWdcT3BlbkFJ83uCF0K4yw7RzpY39bio", "value_start": 0, "value_end": 56, @@ -16602,7 +16602,7 @@ "line": "password = \"0xAb19D82E7f546cC3\"", "line_num": 4, "path": "./tests/samples/pass_filtered", - "info": "./tests/samples/pass_filtered|RAW", + "info": "FILE|RAW", "value": "0xAb19D82E7f546cC3", "value_start": 12, "value_end": 30, @@ -16627,7 +16627,7 @@ "line": "gi_reo_gi_passwd = \"cAc48k1Zd7\"; password_confirmation = \"cAc48k1Zd7\";", "line_num": 1, "path": "./tests/samples/passwd.groovy", - "info": "./tests/samples/passwd.groovy|RAW", + "info": "FILE|RAW", "value": "cAc48k1Zd7", "value_start": 20, "value_end": 30, @@ -16652,7 +16652,7 @@ "line": "gi_reo_gi_passwd = \"cAc48k1Zd7\"; password_confirmation = \"cAc48k1Zd7\";", "line_num": 1, "path": "./tests/samples/passwd.groovy", - "info": "./tests/samples/passwd.groovy|RAW", + "info": "FILE|RAW", "value": "cAc48k1Zd7", "value_start": 20, "value_end": 30, @@ -16677,7 +16677,7 @@ "line": "gi_reo_gi_passwd = \"cAc48k1Zd7\"; password_confirmation = \"cAc48k1Zd7\";", "line_num": 1, "path": "./tests/samples/passwd.groovy", - "info": "./tests/samples/passwd.groovy|RAW", + "info": "FILE|RAW", "value": "cAc48k1Zd7", "value_start": 58, "value_end": 68, @@ -16702,7 +16702,7 @@ "line": "password = \"cackle!\"", "line_num": 1, "path": "./tests/samples/password.gradle", - "info": "./tests/samples/password.gradle|RAW", + "info": "FILE|RAW", "value": "cackle!", "value_start": 12, "value_end": 19, @@ -16727,7 +16727,7 @@ "line": "+ \"password\": \"dkajco1\"", "line_num": 9, "path": "./tests/samples/password.patch", - "info": "./tests/samples/password.patch|RAW", + "info": "FILE|RAW", "value": "dkajco1", "value_start": 16, "value_end": 23, @@ -16752,7 +16752,7 @@ "line": "password = \"MYPSWRD!@#$%^&*\"", "line_num": 1, "path": "./tests/samples/password.tfvars", - "info": "./tests/samples/password.tfvars|RAW", + "info": "FILE|RAW", "value": "MYPSWRD!@#$%^&*", "value_start": 12, "value_end": 27, @@ -16777,7 +16777,7 @@ "line": "my_pw: nCzx8A8#!", "line_num": 2, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "nCzx8A8#!", "value_start": 7, "value_end": 16, @@ -16802,7 +16802,7 @@ "line": "my_pw: nCzx8A8#!", "line_num": 2, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "nCzx8A8#!", "value_start": 7, "value_end": 16, @@ -16827,7 +16827,7 @@ "line": "password=2bkJgtJDiLcq1t", "line_num": 7, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "2bkJgtJDiLcq1t", "value_start": 9, "value_end": 23, @@ -16852,7 +16852,7 @@ "line": "password=2bkJgtJDiLcq1t", "line_num": 7, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "2bkJgtJDiLcq1t", "value_start": 9, "value_end": 23, @@ -16877,7 +16877,7 @@ "line": "RUN openssl x509 -req -days 365 -passin \"pass:nCzx8A8#!\" -sha256 -in server.csr -CA ca.pem -CAkey ca-key", "line_num": 8, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "nCzx8A8#!", "value_start": 46, "value_end": 55, @@ -16902,7 +16902,7 @@ "line": "MYSQL_DATABASE_USER=CRED;MYSQL_DATABASE_PASSWORD=2IWJD88FH4Y;", "line_num": 12, "path": "./tests/samples/password_TRUE", - "info": "./tests/samples/password_TRUE|RAW", + "info": "FILE|RAW", "value": "2IWJD88FH4Y;", "value_start": 49, "value_end": 61, @@ -16927,7 +16927,7 @@ "line": "+ \"password\": \"dkajco1\"", "line_num": 10, "path": "./tests/samples/password_utf16.patch", - "info": "./tests/samples/password_utf16.patch|RAW", + "info": "FILE|RAW", "value": "dkajco1", "value_start": 16, "value_end": 23, @@ -16952,7 +16952,7 @@ "line": "+ \"password\": \"dkajc\u00f61\"", "line_num": 9, "path": "./tests/samples/password_western.patch", - "info": "./tests/samples/password_western.patch|RAW", + "info": "FILE|RAW", "value": "dkajc\u00f61", "value_start": 16, "value_end": 23, @@ -16977,7 +16977,7 @@ "line": "access_token$production$gireogi121451781$abcaeaabadef01134517891121451781", "line_num": 1, "path": "./tests/samples/paypal_key", - "info": "./tests/samples/paypal_key|RAW", + "info": "FILE|RAW", "value": "access_token$production$gireogi121451781$abcaeaabadef01134517891121451781", "value_start": 0, "value_end": 73, @@ -17002,7 +17002,7 @@ "line": "str value = \"-----BEGIN RSA PRIVATE KEY-----\\n\" +", "line_num": 2, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "-----BEGIN RSA PRIVATE KEY-----", "value_start": 13, "value_end": 44, @@ -17019,7 +17019,7 @@ "line": "\"MIICXQIBAAKBgQDwcEN7vZygGg6DvPpsw17hRD6S5N8+huaqs1JGXQfPhbvLTUsHdzGLVNQ/Z0wQVGdPiaJDflqhcT1IH8BLD4SHn+ \\n\"", "line_num": 3, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "MIICXQIBAAKBgQDwcEN7vZygGg6DvPpsw17hRD6S5N8+huaqs1JGXQfPhbvLTUsHdzGLVNQ/Z0wQVGdPiaJDflqhcT1IH8BLD4SHn+", "value_start": 1, "value_end": 103, @@ -17036,7 +17036,7 @@ "line": "+ \"WuRIzX77P7oVKM2CoTA6VzT6s/bvr7HxFLl4NhohfyDsV0YCDc4I6EHGWMCUHZb0IWxzEGRWD3jbG8KAZUsQIDAQABAoGAOD7a2o\\r \\n\"", "line_num": 4, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "WuRIzX77P7oVKM2CoTA6VzT6s/bvr7HxFLl4NhohfyDsV0YCDc4I6EHGWMCUHZb0IWxzEGRWD3jbG8KAZUsQIDAQABAoGAOD7a2o", "value_start": 4, "value_end": 104, @@ -17053,7 +17053,7 @@ "line": "\" CRujY+PP0hS/4sHOBdDvnxa2wdW8NVNNagdCBhvP5Y1edBNMnkWOyuM4e7HzUgO0+8ndWis1OSJTz9EFTyHJm6GOn+/JR62NWNr \"", "line_num": 5, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "CRujY+PP0hS/4sHOBdDvnxa2wdW8NVNNagdCBhvP5Y1edBNMnkWOyuM4e7HzUgO0+8ndWis1OSJTz9EFTyHJm6GOn+/JR62NWNr", "value_start": 3, "value_end": 102, @@ -17070,7 +17070,7 @@ "line": "\"9lfCb8cWq0eoOk3UUO9P+1nZNHjE/iDhuTi3x/5naW4SzdkZfxHo/NMI6i5w1ZnQ60CQQD9d0G9gBy6lPhC \\\\", "line_num": 6, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "9lfCb8cWq0eoOk3UUO9P+1nZNHjE/iDhuTi3x/5naW4SzdkZfxHo/NMI6i5w1ZnQ60CQQD9d0G9gBy6lPhC", "value_start": 3, "value_end": 86, @@ -17087,7 +17087,7 @@ "line": "\"\"\" mbHzYovVjSnyfzUtyWPNSrXNiUCR5vu2f6eCgSVzFZ0oHAv8nLaYnXrhyT25lwzNK5OhR/oPAkEA8tep3NmfxV \"\"\" +", "line_num": 7, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "mbHzYovVjSnyfzUtyWPNSrXNiUCR5vu2f6eCgSVzFZ0oHAv8nLaYnXrhyT25lwzNK5OhR/oPAkEA8tep3NmfxV", "value_start": 4, "value_end": 90, @@ -17104,7 +17104,7 @@ "line": "QSBfKGfotblIG709xxfd6vHfDS0eZuTFUxkZDcayZDhMDjTMZxP8rokSbMaOSqUseUeYhx5TqFPwJAAhC0smyWz1ZjZ3eFIayN4yGRU+6B\\r\\n", "line_num": 8, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "QSBfKGfotblIG709xxfd6vHfDS0eZuTFUxkZDcayZDhMDjTMZxP8rokSbMaOSqUseUeYhx5TqFPwJAAhC0smyWz1ZjZ3eFIayN4yGRU+6B", "value_start": 0, "value_end": 106, @@ -17121,7 +17121,7 @@ "line": "\"amwXqhaPwKr7obS2HFiR7thKi9ODQk5oMpi8TCYMWEahgB+g9RMD0u6ZNQJBAMla\\\\\\\\nUJmySGuRnbAYu7PJURH90AOG0QOQ1Jp6yBMKgYIB\\\\", "line_num": 9, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "amwXqhaPwKr7obS2HFiR7thKi9ODQk5oMpi8TCYMWEahgB+g9RMD0u6ZNQJBAMla\\\\\\\\nUJmySGuRnbAYu7PJURH90AOG0QOQ1Jp6yBMKgYIB", "value_start": 1, "value_end": 110, @@ -17138,7 +17138,7 @@ "line": "Uaxk9J5Th8BXPyC1mclPMS7J\\\\\\\\ngMuobiFdIpryq51pvHkCQQDInvDaKI24Ho+cj6SCKnEO4kbjh/yx1XGwNmY0ld1i\\\\r5micHFiMI7/IcVZ4\\n", "line_num": 10, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "Uaxk9J5Th8BXPyC1mclPMS7J", "value_start": 0, "value_end": 24, @@ -17155,7 +17155,7 @@ "line": "2cl1OwdGjRdmO1LT6P1cl8UYIj/S\\n-----END RSA PRIVATE KEY-----\"\"\";", "line_num": 11, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "2cl1OwdGjRdmO1LT6P1cl8UYIj/S\\n-----END RSA PRIVATE KEY-----", "value_start": 0, "value_end": 59, @@ -17180,7 +17180,7 @@ "line": "-----BEGIN EC PRIVATE KEY-----\\nMHcCAQEEID4VC4s0b2n3yvypHb2GO9prFUctYt\\r\\r\\n\\nHmGCMvpxkpexbHoAoGCCqGSM49\\\\\\\\\\nAwEHoUQDQgAE2GwUUuO9/dKl51bOryWzHF8wTSezSqdRIucGhDRsmDITLcNEZw3V\\\\\\\\rIaQP59Ufkz8NIkLeIAa1HZGZxCVMQ907FA==\\\\n-----END EC PRIVATE KEY-----", "line_num": 14, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "-----BEGIN EC PRIVATE KEY-----\\nMHcCAQEEID4VC4s0b2n3yvypHb2GO9prFUctYt\\r\\r\\n\\nHmGCMvpxkpexbHoAoGCCqGSM49\\\\\\\\\\nAwEHoUQDQgAE2GwUUuO9/dKl51bOryWzHF8wTSezSqdRIucGhDRsmDITLcNEZw3V\\\\\\\\rIaQP59Ufkz8NIkLeIAa1HZGZxCVMQ907FA==\\\\n-----END EC PRIVATE KEY-----", "value_start": 16, "value_end": 262, @@ -17205,7 +17205,7 @@ "line": "-----BEGIN OPENSSH LOW ENTROPY PRIVATE KEY-----", "line_num": 27, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "-----BEGIN OPENSSH LOW ENTROPY PRIVATE KEY-----", "value_start": 0, "value_end": 47, @@ -17222,7 +17222,7 @@ "line": "12345678901231278634987284736283548102438723941563428762374129402103402394932746672734543664375t7323341253845186253784==", "line_num": 28, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "12345678901231278634987284736283548102438723941563428762374129402103402394932746672734543664375t7323341253845186253784==", "value_start": 0, "value_end": 120, @@ -17239,7 +17239,7 @@ "line": "-----END LOW ENTROPY PRIVATE KEY-----", "line_num": 29, "path": "./tests/samples/pem_key", - "info": "./tests/samples/pem_key|RAW", + "info": "FILE|RAW", "value": "-----END LOW ENTROPY PRIVATE KEY-----", "value_start": 0, "value_end": 37, @@ -17264,7 +17264,7 @@ "line": "sk_live_gireogicracklegireogicrackle1231", "line_num": 1, "path": "./tests/samples/picatic_key", - "info": "./tests/samples/picatic_key|RAW", + "info": "FILE|RAW", "value": "sk_live_gireogicracklegireogicrackle1231", "value_start": 0, "value_end": 40, @@ -17289,7 +17289,7 @@ "line": "sk_live_gireogicracklegireogicrackle1231", "line_num": 1, "path": "./tests/samples/picatic_key", - "info": "./tests/samples/picatic_key|RAW", + "info": "FILE|RAW", "value": "sk_live_gireogicracklegireogicrackle1231", "value_start": 0, "value_end": 40, @@ -17314,7 +17314,7 @@ "line": "pypi-AgEIcHlvdS5bcmcCJGDmMTllXWJjLTRhODAtNDBhYi01Y2Y4LThjNjcxZTg3MsRjOAACKlszLCJlPDYzYmUxOC0wNjQ3LTQ4AzQtODFhYy1jZGRlNTk2MGYxNDYiXQAABiDDbVAEnaUMn4zZHlFr5NWy7JEYfvoay--cVmKO5lr3Xp", "line_num": 1, "path": "./tests/samples/pypi_token", - "info": "./tests/samples/pypi_token|RAW", + "info": "FILE|RAW", "value": "pypi-AgEIcHlvdS5bcmcCJGDmMTllXWJjLTRhODAtNDBhYi01Y2Y4LThjNjcxZTg3MsRjOAACKlszLCJlPDYzYmUxOC0wNjQ3LTQ4AzQtODFhYy1jZGRlNTk2MGYxNDYiXQAABiDDbVAEnaUMn4zZHlFr5NWy7JEYfvoay--cVmKO5lr3Xp", "value_start": 0, "value_end": 179, @@ -17339,7 +17339,7 @@ "line": "t_token 00DUI000005AecQ!AR8Amtqc2drcmpoZ3dlanJoMzQ5ODc1OTg0Mzc5NzQ1OCsrKysKLS0tLQp.cm9jLVR5cGU6IDQsRU5DUllwwMzQ1NzY3MzQ1", "line_num": 2, "path": "./tests/samples/salesfoce", - "info": "./tests/samples/salesfoce|RAW", + "info": "FILE|RAW", "value": "00DUI000005AecQ!AR8Amtqc2drcmpoZ3dlanJoMzQ5ODc1OTg0Mzc5NzQ1OCsrKysKLS0tLQp.cm9jLVR5cGU6IDQsRU5DUllwwMzQ1NzY3MzQ1", "value_start": 8, "value_end": 120, @@ -17364,7 +17364,7 @@ "line": "First line bace4d11-a001-be1a-c3fe-9829474b5d84", "line_num": 1, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d11-a001-be1a-c3fe-9829474b5d84", "value_start": 11, "value_end": 47, @@ -17389,7 +17389,7 @@ "line": "second line bace4d11-a002-be1a-c3fe-9829474b5d84", "line_num": 2, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d11-a002-be1a-c3fe-9829474b5d84", "value_start": 12, "value_end": 48, @@ -17414,7 +17414,7 @@ "line": "Innner cell bace4d11-b003-be1a-c3fe-9829474b5d84", "line_num": 3, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d11-b003-be1a-c3fe-9829474b5d84", "value_start": 12, "value_end": 48, @@ -17439,7 +17439,7 @@ "line": "New page first line bace4d19-b001-b3e2-eac1-9129474bcd84", "line_num": 4, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d19-b001-b3e2-eac1-9129474bcd84", "value_start": 20, "value_end": 56, @@ -17464,7 +17464,7 @@ "line": "Next page section bace4d19-c001-b3e2-eac1-9129474bcd84", "line_num": 5, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d19-c001-b3e2-eac1-9129474bcd84", "value_start": 18, "value_end": 54, @@ -17489,7 +17489,7 @@ "line": "Section R2C2 b5c6471d-a2b2-b4ef-ca5e-9121476bc881", "line_num": 6, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "b5c6471d-a2b2-b4ef-ca5e-9121476bc881", "value_start": 13, "value_end": 49, @@ -17514,7 +17514,7 @@ "line": "next line in section bace4d19-c001-b3e2-eac1-9129474bcd84", "line_num": 7, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d19-c001-b3e2-eac1-9129474bcd84", "value_start": 21, "value_end": 57, @@ -17539,7 +17539,7 @@ "line": "last page bace4d11-a003-be2a-c3fe-9829474b5d84", "line_num": 8, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d11-a003-be2a-c3fe-9829474b5d84", "value_start": 11, "value_end": 47, @@ -17564,7 +17564,7 @@ "line": "2 Second page header bace4d19-b002-beda-cafe-0929375bcd82", "line_num": 9, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d19-b002-beda-cafe-0929375bcd82", "value_start": 21, "value_end": 57, @@ -17589,7 +17589,7 @@ "line": "Third page header bace4d19-b003-beda-cafe-0929375bcd82", "line_num": 10, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d19-b003-beda-cafe-0929375bcd82", "value_start": 18, "value_end": 54, @@ -17614,7 +17614,7 @@ "line": "first_page_header bace4d11-f001-beea-c3fe-9829474b5d84", "line_num": 11, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4d11-f001-beea-c3fe-9829474b5d84", "value_start": 18, "value_end": 54, @@ -17639,7 +17639,7 @@ "line": "Default footer bace4119-f002-bdef-dafe-9129474bcd89", "line_num": 12, "path": "./tests/samples/sample.docx", - "info": "./tests/samples/sample.docx|DOCX", + "info": "FILE|DOCX", "value": "bace4119-f002-bdef-dafe-9129474bcd89", "value_start": 15, "value_end": 51, @@ -17664,7 +17664,7 @@ "line": "placeholder=\"Your password: "g1re0g1Pa5$w0Rd"\"", "line_num": 16, "path": "./tests/samples/sample.html", - "info": "./tests/samples/sample.html|RAW", + "info": "FILE|RAW", "value": ""g1re0g1Pa5$w0Rd"\"", "value_start": 32, "value_end": 60, @@ -17689,7 +17689,7 @@ "line": "placeholder=\"Your password: "g1re0g1Pa5$w0Rd"\"", "line_num": 16, "path": "./tests/samples/sample.html", - "info": "./tests/samples/sample.html|RAW", + "info": "FILE|RAW", "value": ""g1re0g1Pa5$w0Rd"\"", "value_start": 32, "value_end": 60, @@ -17714,7 +17714,7 @@ "line": "", "line_num": 21, "path": "./tests/samples/sample.html", - "info": "./tests/samples/sample.html|RAW", + "info": "FILE|RAW", "value": "g1re0g2Pa5$w0Rd"", "value_start": 39, "value_end": 60, @@ -17739,7 +17739,7 @@ "line": "", "line_num": 21, "path": "./tests/samples/sample.html", - "info": "./tests/samples/sample.html|RAW", + "info": "FILE|RAW", "value": "g1re0g2Pa5$w0Rd")\">ShowPass", "value_start": 39, "value_end": 80, @@ -17754,6 +17754,31 @@ } ] }, + { + "rule": "IP_ID_PASSWORD_TRIPLE", + "severity": "medium", + "confidence": "moderate", + "ml_probability": null, + "line_data_list": [ + { + "line": "F16 224.52.124.93 root/A0dM1Nka", + "line_num": 1, + "path": "./tests/samples/sample.ods", + "info": "FILE|SheetAny:F16", + "value": "A0dM1Nka", + "value_start": 23, + "value_end": 31, + "variable": null, + "variable_start": -1, + "variable_end": -1, + "entropy_validation": { + "iterator": "BASE64STDPAD_CHARS", + "entropy": 3.0, + "valid": false + } + } + ] + }, { "rule": "AWS Client ID", "severity": "high", @@ -17764,7 +17789,7 @@ "line": "AKIAGIREOGIAXLSX4BT5", "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:Sheet1x1", + "info": "FILE|Sheet1x1:A1", "value": "AKIAGIREOGIAXLSX4BT5", "value_start": 0, "value_end": 20, @@ -17780,25 +17805,25 @@ ] }, { - "rule": "DOC_CREDENTIALS", + "rule": "IP_ID_PASSWORD_TRIPLE", "severity": "medium", "confidence": "moderate", - "ml_probability": 0.999, + "ml_probability": null, "line_data_list": [ { - "line": "A1 password is w3Ry5tR0nG", + "line": "\ud64d\uae38\ub3d9\uc804\t192.168.0.1\tadmin\tH0NgGi1d0nG", "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:SheetAny", - "value": "w3Ry5tR0nG", - "value_start": 15, - "value_end": 25, - "variable": "password", - "variable_start": 3, - "variable_end": 11, + "info": "FILE|Sheet4x3:R2", + "value": "H0NgGi1d0nG", + "value_start": 24, + "value_end": 35, + "variable": null, + "variable_start": -1, + "variable_end": -1, "entropy_validation": { "iterator": "BASE64STDPAD_CHARS", - "entropy": 3.1219280948873624, + "entropy": 3.0957952550009344, "valid": false } } @@ -17811,19 +17836,19 @@ "ml_probability": null, "line_data_list": [ { - "line": "\ud64d\uae38\ub3d9\uc804\t192.168.0.1\tadmin\tH0NgGi1d0nG", - "line_num": 2, + "line": "B3 192.168.0.1 master/NBd@126t!", + "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:Sheet4x3", - "value": "H0NgGi1d0nG", - "value_start": 24, - "value_end": 35, + "info": "FILE|SheetAny:B3", + "value": "NBd@126t!", + "value_start": 22, + "value_end": 31, "variable": null, "variable_start": -1, "variable_end": -1, "entropy_validation": { "iterator": "BASE64STDPAD_CHARS", - "entropy": 3.0957952550009344, + "entropy": 2.4654972233440207, "valid": false } } @@ -17833,13 +17858,13 @@ "rule": "DOC_CREDENTIALS", "severity": "medium", "confidence": "moderate", - "ml_probability": 0.784, + "ml_probability": 0.789, "line_data_list": [ { "line": "A2 ID:master,PW:dipPr10Gg!", - "line_num": 2, + "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:SheetAny", + "info": "FILE|SheetAny:A2", "value": "dipPr10Gg!", "value_start": 16, "value_end": 26, @@ -17862,9 +17887,9 @@ "line_data_list": [ { "line": "A2 ID:master,PW:dipPr10Gg!", - "line_num": 2, + "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:SheetAny", + "info": "FILE|SheetAny:A2", "value": "dipPr10Gg!", "value_start": 16, "value_end": 26, @@ -17879,9 +17904,9 @@ }, { "line": "A2 ID:master,PW:dipPr10Gg!", - "line_num": 2, + "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:SheetAny", + "info": "FILE|SheetAny:A2", "value": "master,PW:dipPr10Gg!", "value_start": 6, "value_end": 26, @@ -17904,9 +17929,9 @@ "line_data_list": [ { "line": "A2 ID:master,PW:dipPr10Gg!", - "line_num": 2, + "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:SheetAny", + "info": "FILE|SheetAny:A2", "value": "dipPr10Gg!", "value_start": 16, "value_end": 26, @@ -17922,50 +17947,25 @@ ] }, { - "rule": "IP_ID_PASSWORD_TRIPLE", - "severity": "medium", - "confidence": "moderate", - "ml_probability": null, - "line_data_list": [ - { - "line": "B3 192.168.0.1 master/NBd@126t!", - "line_num": 3, - "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:SheetAny", - "value": "NBd@126t!", - "value_start": 23, - "value_end": 32, - "variable": null, - "variable_start": -1, - "variable_end": -1, - "entropy_validation": { - "iterator": "BASE64STDPAD_CHARS", - "entropy": 2.4654972233440207, - "valid": false - } - } - ] - }, - { - "rule": "IP_ID_PASSWORD_TRIPLE", + "rule": "DOC_CREDENTIALS", "severity": "medium", "confidence": "moderate", - "ml_probability": null, + "ml_probability": 0.999, "line_data_list": [ { - "line": "password:\u25a1 \ubb38\uc758 \ub0b4\uc6a9 : \u203b Error Stack Trace\ub3c4 \ud568\uaed8 \ucca8\ubd80 \ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4.12345\tF16 224.52.124.93 root/A0dM1Nka", - "line_num": 16, + "line": "A1 password is w3Ry5tR0nG", + "line_num": 1, "path": "./tests/samples/sample.ods", - "info": "./tests/samples/sample.ods|xlsx:SheetAny", - "value": "A0dM1Nka", - "value_start": 87, - "value_end": 95, - "variable": null, - "variable_start": -1, - "variable_end": -1, + "info": "FILE|SheetAny:A1", + "value": "w3Ry5tR0nG", + "value_start": 15, + "value_end": 25, + "variable": "password", + "variable_start": 3, + "variable_end": 11, "entropy_validation": { "iterator": "BASE64STDPAD_CHARS", - "entropy": 3.0, + "entropy": 3.1219280948873624, "valid": false } } @@ -17981,7 +17981,7 @@ "line": "password = Xdj@jcN834b", "line_num": 1, "path": "./tests/samples/sample.pdf", - "info": "./tests/samples/sample.pdf|PDF[1]", + "info": "FILE|PDF:1", "value": "Xdj@jcN834b", "value_start": 11, "value_end": 22, @@ -18006,7 +18006,7 @@ "line": "password = Xdj@jcN834b", "line_num": 1, "path": "./tests/samples/sample.pdf", - "info": "./tests/samples/sample.pdf|PDF[1]", + "info": "FILE|PDF:1", "value": "Xdj@jcN834b", "value_start": 11, "value_end": 22, @@ -18029,9 +18029,9 @@ "line_data_list": [ { "line": "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", - "line_num": 3, + "line_num": 1, "path": "./tests/samples/sample.pdf", - "info": "./tests/samples/sample.pdf|PDF[1]", + "info": "FILE|PDF:1", "value": "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", "value_start": 0, "value_end": 40, @@ -18056,7 +18056,7 @@ "line": "AKIAGIREOGIPPTX1Y45X", "line_num": 2, "path": "./tests/samples/sample.pptx", - "info": "./tests/samples/sample.pptx|PPTX[1]", + "info": "FILE|PPTX:1", "value": "AKIAGIREOGIPPTX1Y45X", "value_start": 0, "value_end": 20, @@ -18071,6 +18071,31 @@ } ] }, + { + "rule": "IP_ID_PASSWORD_TRIPLE", + "severity": "medium", + "confidence": "moderate", + "ml_probability": null, + "line_data_list": [ + { + "line": "F16 224.52.124.93 root/A0dM1Nka", + "line_num": 1, + "path": "./tests/samples/sample.xlsx", + "info": "FILE|SheetAny:F16", + "value": "A0dM1Nka", + "value_start": 23, + "value_end": 31, + "variable": null, + "variable_start": -1, + "variable_end": -1, + "entropy_validation": { + "iterator": "BASE64STDPAD_CHARS", + "entropy": 3.0, + "valid": false + } + } + ] + }, { "rule": "AWS Client ID", "severity": "high", @@ -18081,7 +18106,7 @@ "line": "AKIAGIREOGIAXLSX4BT5", "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:Sheet1x1", + "info": "FILE|Sheet1x1:A1", "value": "AKIAGIREOGIAXLSX4BT5", "value_start": 0, "value_end": 20, @@ -18097,25 +18122,25 @@ ] }, { - "rule": "DOC_CREDENTIALS", + "rule": "IP_ID_PASSWORD_TRIPLE", "severity": "medium", "confidence": "moderate", - "ml_probability": 0.999, + "ml_probability": null, "line_data_list": [ { - "line": "A1 password is w3Ry5tR0nG", + "line": "\ud64d\uae38\ub3d9\uc804\t192.168.0.1\tadmin\tH0NgGi1d0nG", "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:SheetAny", - "value": "w3Ry5tR0nG", - "value_start": 15, - "value_end": 25, - "variable": "password", - "variable_start": 3, - "variable_end": 11, + "info": "FILE|Sheet4x3:R2", + "value": "H0NgGi1d0nG", + "value_start": 24, + "value_end": 35, + "variable": null, + "variable_start": -1, + "variable_end": -1, "entropy_validation": { "iterator": "BASE64STDPAD_CHARS", - "entropy": 3.1219280948873624, + "entropy": 3.0957952550009344, "valid": false } } @@ -18128,19 +18153,19 @@ "ml_probability": null, "line_data_list": [ { - "line": "\ud64d\uae38\ub3d9\uc804\t192.168.0.1\tadmin\tH0NgGi1d0nG", - "line_num": 2, + "line": "B3 192.168.0.1 master/NBd@126t!", + "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:Sheet4x3", - "value": "H0NgGi1d0nG", - "value_start": 24, - "value_end": 35, + "info": "FILE|SheetAny:B3", + "value": "NBd@126t!", + "value_start": 22, + "value_end": 31, "variable": null, "variable_start": -1, "variable_end": -1, "entropy_validation": { "iterator": "BASE64STDPAD_CHARS", - "entropy": 3.0957952550009344, + "entropy": 2.4654972233440207, "valid": false } } @@ -18150,13 +18175,13 @@ "rule": "DOC_CREDENTIALS", "severity": "medium", "confidence": "moderate", - "ml_probability": 0.784, + "ml_probability": 0.789, "line_data_list": [ { "line": "A2 ID:master,PW:dipPr10Gg!", - "line_num": 2, + "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:SheetAny", + "info": "FILE|SheetAny:A2", "value": "dipPr10Gg!", "value_start": 16, "value_end": 26, @@ -18179,9 +18204,9 @@ "line_data_list": [ { "line": "A2 ID:master,PW:dipPr10Gg!", - "line_num": 2, + "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:SheetAny", + "info": "FILE|SheetAny:A2", "value": "dipPr10Gg!", "value_start": 16, "value_end": 26, @@ -18196,9 +18221,9 @@ }, { "line": "A2 ID:master,PW:dipPr10Gg!", - "line_num": 2, + "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:SheetAny", + "info": "FILE|SheetAny:A2", "value": "master,PW:dipPr10Gg!", "value_start": 6, "value_end": 26, @@ -18221,9 +18246,9 @@ "line_data_list": [ { "line": "A2 ID:master,PW:dipPr10Gg!", - "line_num": 2, + "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:SheetAny", + "info": "FILE|SheetAny:A2", "value": "dipPr10Gg!", "value_start": 16, "value_end": 26, @@ -18239,50 +18264,25 @@ ] }, { - "rule": "IP_ID_PASSWORD_TRIPLE", - "severity": "medium", - "confidence": "moderate", - "ml_probability": null, - "line_data_list": [ - { - "line": "B3 192.168.0.1 master/NBd@126t!", - "line_num": 3, - "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:SheetAny", - "value": "NBd@126t!", - "value_start": 23, - "value_end": 32, - "variable": null, - "variable_start": -1, - "variable_end": -1, - "entropy_validation": { - "iterator": "BASE64STDPAD_CHARS", - "entropy": 2.4654972233440207, - "valid": false - } - } - ] - }, - { - "rule": "IP_ID_PASSWORD_TRIPLE", + "rule": "DOC_CREDENTIALS", "severity": "medium", "confidence": "moderate", - "ml_probability": null, + "ml_probability": 0.999, "line_data_list": [ { - "line": "password:\n\n\u25a1 \ubb38\uc758 \ub0b4\uc6a9 :\n \u203b Error Stack Trace\ub3c4 \ud568\uaed8 \ucca8\ubd80 \ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4.\n\n12345\tF16 224.52.124.93 root/A0dM1Nka", - "line_num": 16, + "line": "A1 password is w3Ry5tR0nG", + "line_num": 1, "path": "./tests/samples/sample.xlsx", - "info": "./tests/samples/sample.xlsx|xlsx:SheetAny", - "value": "A0dM1Nka", - "value_start": 92, - "value_end": 100, - "variable": null, - "variable_start": -1, - "variable_end": -1, + "info": "FILE|SheetAny:A1", + "value": "w3Ry5tR0nG", + "value_start": 15, + "value_end": 25, + "variable": "password", + "variable_start": 3, + "variable_end": 11, "entropy_validation": { "iterator": "BASE64STDPAD_CHARS", - "entropy": 3.0, + "entropy": 3.1219280948873624, "valid": false } } @@ -18298,7 +18298,7 @@ "line": "SG.gireogigireogigi.gireogigireogigi", "line_num": 1, "path": "./tests/samples/sendgrid_api_key", - "info": "./tests/samples/sendgrid_api_key|RAW", + "info": "FILE|RAW", "value": "SG.gireogigireogigi.gireogigireogigi", "value_start": 0, "value_end": 36, @@ -18323,7 +18323,7 @@ "line": "\"shopyfy_k\": \"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\",", "line_num": 1, "path": "./tests/samples/shopify_token", - "info": "./tests/samples/shopify_token|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 18, "value_end": 56, @@ -18348,7 +18348,7 @@ "line": "xoxa-FLYLIKEAGIREOGI-9d8cfc0f59", "line_num": 1, "path": "./tests/samples/slack_token.hs", - "info": "./tests/samples/slack_token.hs|RAW", + "info": "FILE|RAW", "value": "xoxa-FLYLIKEAGIREOGI-9d8cfc0f59", "value_start": 0, "value_end": 31, @@ -18373,7 +18373,7 @@ "line": "\"hook\": \"https://hooks.slack.com/services/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\",", "line_num": 1, "path": "./tests/samples/slack_webhook.template", - "info": "./tests/samples/slack_webhook.template|RAW", + "info": "FILE|RAW", "value": "/T1029384756/B102984756/sjsbfzowhhqbsgftrvajxzpg", "value_start": 45, "value_end": 93, @@ -18398,7 +18398,7 @@ "line": "qpF8Q~PCM5MhMoyTFc5TYEomnzRUKim9UJhe8a2P", "line_num": 1, "path": "./tests/samples/small.pdf", - "info": "./tests/samples/small.pdf|PDF[1]", + "info": "FILE|PDF:1", "value": "qpF8Q~PCM5MhMoyTFc5TYEomnzRUKim9UJhe8a2P", "value_start": 0, "value_end": 40, @@ -18423,7 +18423,7 @@ "line": "\"SQT\": \"EAAAEEPtuW9FnP_CuCV-3DFPB54M7YWBUVEFOWKPRVMWEJYMODIDAEX4FASS64NF\",", "line_num": 1, "path": "./tests/samples/square_access_token", - "info": "./tests/samples/square_access_token|RAW", + "info": "FILE|RAW", "value": "EAAAEEPtuW9FnP_CuCV-3DFPB54M7YWBUVEFOWKPRVMWEJYMODIDAEX4FASS64NF", "value_start": 12, "value_end": 76, @@ -18448,7 +18448,7 @@ "line": "sq0atp-GIREOGICRACKLE12145178", "line_num": 1, "path": "./tests/samples/square_client_id", - "info": "./tests/samples/square_client_id|RAW", + "info": "FILE|RAW", "value": "sq0atp-GIREOGICRACKLE12145178", "value_start": 0, "value_end": 29, @@ -18473,7 +18473,7 @@ "line": "20241204_112356 Colored line: \"\u001b[94msq0csp-ST2dsfwyVI7Ydj343EY72hb48ehKQINMST2ds_fwyVI\u001b[0m\";", "line_num": 1, "path": "./tests/samples/square_oauth_secret", - "info": "./tests/samples/square_oauth_secret|RAW", + "info": "FILE|RAW", "value": "sq0csp-ST2dsfwyVI7Ydj343EY72hb48ehKQINMST2ds_fwyVI", "value_start": 36, "value_end": 86, @@ -18498,7 +18498,7 @@ "line": "pk_test_Tph4NiI7TYooMQaujxvdEDq5", "line_num": 3, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "pk_test_Tph4NiI7TYooMQaujxvdEDq5", "value_start": 0, "value_end": 32, @@ -18523,7 +18523,7 @@ "line": "rk_live_TsS4QI2dNfwyVM7YdjI78ehK", "line_num": 4, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "rk_live_TsS4QI2dNfwyVM7YdjI78ehK", "value_start": 0, "value_end": 32, @@ -18548,7 +18548,7 @@ "line": "sk_test_T1z4jtdp7dcC39HqLyjWareD", "line_num": 5, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "sk_test_T1z4jtdp7dcC39HqLyjWareD", "value_start": 0, "value_end": 32, @@ -18573,7 +18573,7 @@ "line": "pk_live_KQI2pIpqzh1Nv2ZXfJBqUJItqoO5WdI6zUkITxodxICz85zC00cv0Gk63bDVUMwIymb3zKTeiqfU588jyYJdNYekpiI56wY0IIx", "line_num": 6, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "pk_live_KQI2pIpqzh1Nv2ZXfJBqUJItqoO5WdI6zUkITxodxICz85zC00cv0Gk63bDVUMwIymb3zKTeiqfU588jyYJdNYekpiI56wY0IIx", "value_start": 0, "value_end": 107, @@ -18598,7 +18598,7 @@ "line": "sk_test_KQI2pIpqzh1Nv2ZXfyfDQUTUQ63Cw359VjKMwtfJ000DsiXxtcVuxT40W8QRSYWZLQZxszLqOMkbYwYWDV1xKCmRKWR3kgSpi9h", "line_num": 7, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "sk_test_KQI2pIpqzh1Nv2ZXfyfDQUTUQ63Cw359VjKMwtfJ000DsiXxtcVuxT40W8QRSYWZLQZxszLqOMkbYwYWDV1xKCmRKWR3kgSpi9h", "value_start": 0, "value_end": 107, @@ -18623,7 +18623,7 @@ "line": "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", "line_num": 8, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "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", "value_start": 0, "value_end": 107, @@ -18648,7 +18648,7 @@ "line": "whsec_IsQVcHgjVWTBwlClIsICTD0mpDr4gJ4m", "line_num": 9, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "whsec_IsQVcHgjVWTBwlClIsICTD0mpDr4gJ4m", "value_start": 0, "value_end": 38, @@ -18673,7 +18673,7 @@ "line": "whsec_Q4KGL7AstjhYfzCtzK2RTB2EmncHgjVW", "line_num": 10, "path": "./tests/samples/stripe_credentials", - "info": "./tests/samples/stripe_credentials|RAW", + "info": "FILE|RAW", "value": "whsec_Q4KGL7AstjhYfzCtzK2RTB2EmncHgjVW", "value_start": 0, "value_end": 38, @@ -18698,7 +18698,7 @@ "line": "SWMTKN-1-n24a1r8ap4o4f1toc8ek9jh7tr4l5vbt3rtfav3jhw8etrlf7m-a1m0st7rue70ken4te5t0nly1", "line_num": 1, "path": "./tests/samples/swmtkn", - "info": "./tests/samples/swmtkn|RAW", + "info": "FILE|RAW", "value": "SWMTKN-1-n24a1r8ap4o4f1toc8ek9jh7tr4l5vbt3rtfav3jhw8etrlf7m-a1m0st7rue70ken4te5t0nly1", "value_start": 0, "value_end": 85, @@ -18723,7 +18723,7 @@ "line": "508627689:AAEuLPKs-EhrjrYGnz60bnYNZqakf6HJxc0", "line_num": 1, "path": "./tests/samples/telegram_api_key", - "info": "./tests/samples/telegram_api_key|RAW", + "info": "FILE|RAW", "value": "508627689:AAEuLPKs-EhrjrYGnz60bnYNZqakf6HJxc0", "value_start": 0, "value_end": 45, @@ -18748,7 +18748,7 @@ "line": "PW: H1ddEn#ema1l", "line_num": 6, "path": "./tests/samples/test.eml", - "info": "./tests/samples/test.eml|EML-HTML", + "info": "FILE|EML-HTML", "value": "H1ddEn#ema1l", "value_start": 4, "value_end": 16, @@ -18773,7 +18773,7 @@ "line": "td : Password: MU$T6Ef09#D!", "line_num": 1, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|XML", + "info": "FILE|XML", "value": "MU$T6Ef09#D!", "value_start": 26, "value_end": 38, @@ -18798,7 +18798,7 @@ "line": "td : Password: MU$T6Ef09#D!", "line_num": 1, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|XML", + "info": "FILE|XML", "value": "MU$T6Ef09#D!", "value_start": 26, "value_end": 38, @@ -18823,7 +18823,7 @@ "line": "508627689:AAEuLPKs-EhrjrYGnz60bnYNZqakf6HJxc0", "line_num": 83, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "508627689:AAEuLPKs-EhrjrYGnz60bnYNZqakf6HJxc0", "value_start": 0, "value_end": 45, @@ -18848,7 +18848,7 @@ "line": "# 94 ya29.dshMb48ehfXwydAj34D32J", "line_num": 91, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "ya29.dshMb48ehfXwydAj34D32J", "value_start": 5, "value_end": 32, @@ -18873,7 +18873,7 @@ "line": "# 95 dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "line_num": 94, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "dop_v1_425522a565f532bc6532d453422e50334a42f5242a3090fbe553b543b124259b", "value_start": 5, "value_end": 76, @@ -18898,7 +18898,7 @@ "line": "the line will be found twice # 100 EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "line_num": 101, "path": "./tests/samples/test.html", - "info": "./tests/samples/test.html|HTML", + "info": "FILE|HTML", "value": "EAACEb00Kse0BAlGy7KeQ5YnaCEd09Eose0cBAlGy7KeQ5Yna9CoDsup39tiYdoQ4jH9Coup39tiYdWoQ4jHFZD", "value_start": 35, "value_end": 122, @@ -18923,7 +18923,7 @@ "line": "token in text: eyJrIjoiMDAwMDAwNDAwMDAwODAwNDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "line_num": 8, "path": "./tests/samples/test2.eml", - "info": "./tests/samples/test2.eml|EML-TEXT", + "info": "FILE|EML-TEXT", "value": "eyJrIjoiMDAwMDAwNDAwMDAwODAwNDAwMDAwMDAwNDAwMDAwMDAwMDAwMDAyMSIsIm4iOiJ4eHh4IiwiaWQiOjQzMDh9Cg", "value_start": 15, "value_end": 109, @@ -18948,7 +18948,7 @@ "line": "gi_reo_gi_token = \"G1Re06G1BdgNseiJDN21Z094M\"", "line_num": 1, "path": "./tests/samples/token.toml", - "info": "./tests/samples/token.toml|RAW", + "info": "FILE|RAW", "value": "G1Re06G1BdgNseiJDN21Z094M", "value_start": 19, "value_end": 44, @@ -18973,7 +18973,7 @@ "line": "Token-> DemoToken: Nxs094M3ed2s1Re0F4M3ed2GZ8M= <- for User : demo", "line_num": 2, "path": "./tests/samples/token.toml", - "info": "./tests/samples/token.toml|RAW", + "info": "FILE|RAW", "value": "Nxs094M3ed2s1Re0F4M3ed2GZ8M=", "value_start": 19, "value_end": 47, @@ -18998,7 +18998,7 @@ "line": "fp_tokenized_value=\"b035d48j9X2dfjF0hb9sd8Guf5hWu2ia\"", "line_num": 3, "path": "./tests/samples/token.toml", - "info": "./tests/samples/token.toml|RAW", + "info": "FILE|RAW", "value": "b035d48j9X2dfjF0hb9sd8Guf5hWu2ia", "value_start": 20, "value_end": 52, @@ -19023,7 +19023,7 @@ "line": "tp_token_value=\"b035d48j9X2dfjF0hb9sd8Guf5hWu2ia\"", "line_num": 4, "path": "./tests/samples/token.toml", - "info": "./tests/samples/token.toml|RAW", + "info": "FILE|RAW", "value": "b035d48j9X2dfjF0hb9sd8Guf5hWu2ia", "value_start": 16, "value_end": 48, @@ -19048,7 +19048,7 @@ "line": "SK4D2F64E2A108CD72F648B1984C3B5A13", "line_num": 1, "path": "./tests/samples/twilio_credentials_p", - "info": "./tests/samples/twilio_credentials_p|RAW", + "info": "FILE|RAW", "value": "SK4D2F64E2A108CD72F648B1984C3B5A13", "value_start": 0, "value_end": 34, @@ -19073,7 +19073,7 @@ "line": "AC4d2f64e2a108cd72f648b1984c3b5a13", "line_num": 2, "path": "./tests/samples/twilio_credentials_p", - "info": "./tests/samples/twilio_credentials_p|RAW", + "info": "FILE|RAW", "value": "AC4d2f64e2a108cd72f648b1984c3b5a13", "value_start": 0, "value_end": 34, @@ -19098,7 +19098,7 @@ "line": "39084?Credential=546DFS64N90P3AW7DX&key=3487263-2384579834-234732875-345&hasToBefound=2", "line_num": 10, "path": "./tests/samples/url_cred.js", - "info": "./tests/samples/url_cred.js|RAW", + "info": "FILE|RAW", "value": "3487263-2384579834-234732875-345", "value_start": 40, "value_end": 72, @@ -19123,7 +19123,7 @@ "line": "bace4d19-fa7e-beef-cafe-9129474bcd81 # tp", "line_num": 1, "path": "./tests/samples/uuid", - "info": "./tests/samples/uuid|RAW", + "info": "FILE|RAW", "value": "bace4d19-fa7e-beef-cafe-9129474bcd81", "value_start": 0, "value_end": 36, @@ -19148,7 +19148,7 @@ "line": "wxe191bc54fc7d529a", "line_num": 1, "path": "./tests/samples/wechat_p", - "info": "./tests/samples/wechat_p|RAW", + "info": "FILE|RAW", "value": "wxe191bc54fc7d529a", "value_start": 0, "value_end": 18, @@ -19173,7 +19173,7 @@ "line": "wx2274a335e18222d6", "line_num": 2, "path": "./tests/samples/wechat_p", - "info": "./tests/samples/wechat_p|RAW", + "info": "FILE|RAW", "value": "wx2274a335e18222d6", "value_start": 0, "value_end": 18, @@ -19198,7 +19198,7 @@ "line": "wx4d82d07e3eb5ba84", "line_num": 3, "path": "./tests/samples/wechat_p", - "info": "./tests/samples/wechat_p|RAW", + "info": "FILE|RAW", "value": "wx4d82d07e3eb5ba84", "value_start": 0, "value_end": 18, @@ -19223,7 +19223,7 @@ "line": "token : IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn hRFakQFbAuI769fdsbkjerfkjrekjnkerjnfkrejnfrejn==", "line_num": 1, "path": "./tests/samples/xml_data.xml", - "info": "./tests/samples/xml_data.xml|XML", + "info": "FILE|XML", "value": "IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn", "value_start": 8, "value_end": 58, @@ -19248,7 +19248,7 @@ "line": "token : IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn hRFakQFbAuI769fdsbkjerfkjrekjnkerjnfkrejnfrejn==", "line_num": 1, "path": "./tests/samples/xml_data.xml", - "info": "./tests/samples/xml_data.xml|XML", + "info": "FILE|XML", "value": "IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn", "value_start": 8, "value_end": 58, @@ -19273,7 +19273,7 @@ "line": "token : \"IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn hRFakQFbAuI769fdsbkjerfkjrekjnkerjnfkrejnfrejn==\"", "line_num": 1, "path": "./tests/samples/xml_data.xml", - "info": "./tests/samples/xml_data.xml|XML", + "info": "FILE|XML", "value": "IBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsn hRFakQFbAuI769fdsbkjer", "value_start": 9, "value_end": 89, @@ -19298,7 +19298,7 @@ "line": "MIIBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsnhRFakQFbAuI/ DaJSTVnp3ObjJPZhJs/P/XPWIKRNIglRqkkCAwEAAQJAbErPFMWah3EPxtfeVO1l 5R0yAZwrFKmLDO29/FoXyL2XbxthJlJmdMQgIYayZYn4W2PSq6C56AI201SlW7Ts AQIhAMwBYS+NST98g0nytTRD1Y94n+yrhTlyWNR/uC4tT8SpAiEAwthlcs9UDPh5 BnaO8Y7A+im+Aw5ANIhJwSVBxB3QnKECIQCJm9ihic1B7MxmojgGxEcXGwfNTjl0 caRn2qszQs9O2QIgdaBFvkXDrADkry4rpVBU17ETcKzNvej4/Y0MYuTM54ECIGtT EBUWuiacAxz/WKHb9WVp0F/zkRwucJ0Hr2W4P9cP", "line_num": 1, "path": "./tests/samples/xml_data.xml", - "info": "./tests/samples/xml_data.xml|XML", + "info": "FILE|XML", "value": "MIIBOgIBAAJBAJtFfagSXdo0JmX6EdwWGvFMaXeOFY5xOTs3PWsnhRFakQFbAuI/ DaJSTVnp3ObjJPZhJs/P/XPWIKRNIglRqkkCAwEAAQJAbErPFMWah3EPxtfeVO1l 5R0yAZwrFKmLDO29/FoXyL2XbxthJlJmdMQgIYayZYn4W2PSq6C56AI201SlW7Ts AQIhAMwBYS+NST98g0nytTRD1Y94n+yrhTlyWNR/uC4tT8SpAiEAwthlcs9UDPh5 BnaO8Y7A+im+Aw5ANIhJwSVBxB3QnKECIQCJm9ihic1B7MxmojgGxEcXGwfNTjl0 caRn2qszQs9O2QIgdaBFvkXDrADkry4rpVBU17ETcKzNvej4/Y0MYuTM54ECIGtT EBUWuiacAxz/WKHb9WVp0F/zkRwucJ0Hr2W4P9cP", "value_start": 7, "value_end": 479, @@ -19323,7 +19323,7 @@ "line": "password : cackle!", "line_num": 1, "path": "./tests/samples/xml_password.xml", - "info": "./tests/samples/xml_password.xml|XML", + "info": "FILE|XML", "value": "cackle!", "value_start": 11, "value_end": 18, diff --git a/tests/utils/test_util.py b/tests/utils/test_util.py index a4af145f3..5f2a37ef0 100644 --- a/tests/utils/test_util.py +++ b/tests/utils/test_util.py @@ -7,6 +7,7 @@ import tempfile import unittest from pathlib import Path +from xmlrpc.client import MAXINT from lxml.etree import XMLSyntaxError @@ -650,3 +651,16 @@ def test_xml_p(self): Util.is_xml( bytearray(b'\n far far away ') + bytearray(b'\n' * MAX_LINE_LENGTH) + bytearray(b' long long ago '))) + + def test_get_excel_column_name_n(self): + self.assertFalse(Util.get_excel_column_name(None)) + self.assertFalse(Util.get_excel_column_name(-1)) + self.assertFalse(Util.get_excel_column_name(3.14)) + + def test_get_excel_column_name_p(self): + self.assertEqual("A", Util.get_excel_column_name(0)) + self.assertEqual("AQ", Util.get_excel_column_name(42)) + self.assertEqual("CS", Util.get_excel_column_name(96)) + self.assertEqual("AAA", Util.get_excel_column_name(702)) + self.assertEqual("XFD", Util.get_excel_column_name(16383)) + self.assertEqual("FXSHRXX", Util.get_excel_column_name(MAXINT))