A library for scoring encoded text against a provided regex.
Project description
EncodingScore.py
This library offers a EncodingScorer class which provides a score normalized between 0-1, representing how much an encoded string aligns with a provided regular expression.
Supported Encodings
The following encodings are supported for scoring:
- Base64
- Hexadecimal
- Octal
- Decimal
How it works
Hexadecimal and base64 work differently from octal and decimal, since base64 and hexadecimal have fixed block sizes while decimal and octal are token-based, with varying lengths to each token.
Computing encoded n-grams
Hexadecimal and base64 strings are slid across, evaluating n-grams (bigrams for hexadecimal, tetragrams for base64) at each possible alignment. This would catch a scenario where the correct encoded text has been rotated, or prepended with an invalid character to obfuscate the text.
Octal and decimal strings are split by a space delimiter. Because of this, no sliding occurs.
Scoring
Scoring is done based on a ratio of "hits" (n-grams that pass the regex check) to total evaluated n-grams or tokens.
Examples
Import the encoding scorer:
from encodingscorepy.scorer import EncodingScorer
Hexadecimal usage
# Example usage for hexadecimal
HEX_STRING = "68 65 6c 6c 6f 2e 20 74 68 69 73 20 69 73 20 61 20 6c 6f 6e 67 20 6d 65 73 73 61 67 65 20 63 6f 6e 74 61 69 6e 69 6e 67 20 61 20 6c 6f 74 20 6f 66 20 64 61 74 61 2e 20 53 6d 61 6c 6c 65 72 20 64 61 74 61 20 69 73 20 6c 65 73 73 20 70 72 65 64 69 63 74 61 62 6c 65 2e 20 50 6c 65 61 73 65 20 63 6f 6e 73 69 64 65 72 20 75 73 69 6e 67 20 6c 6f 6e 67 65 72 20 73 74 72 65 61 6d 73 20 6f 66 20 64 61 74 61 20 66 6f 72 20 61 20 68 69 67 68 65 72 20 64 65 67 72 65 65 20 6f 66 20 61 63 63 75 72 61 63 79 2e 20 54 68 61 6e 6b 73"
NON_MATCHING_HEX = "ff ff ff ff ff ff ff ff 6d ff 6d ff"
hex_scorer = EncodingScorer("hexadecimal");
print(hex_scorer.score(HEX_STRING)); # 0.6679462571976967
print(hex_scorer.score(NON_MATCHING_HEX)); # 0.11428571428571428
Base64 Usage
BASE_64_STRING = "aGVsbG8uIHRoaXMgaXMgYSBsb25nIG1lc3NhZ2UgY29udGFpbmluZyBhIGxvdCBvZiBkYXRhLiBTbWFsbGVyIGRhdGEgaXMgbGVzcyBwcmVkaWN0YWJsZS4gUGxlYXNlIGNvbnNpZGVyIHVzaW5nIGxvbmdlciBzdHJlYW1zIG9mIGRhdGEgZm9yIGEgaGlnaGVyIGRlZ3JlZSBvZiBhY2N1cmFjeS4gVGhhbmtz"
base64_scorer = new EncodingScorer("base64");
print(base64_scorer.score(BASE_64_STRING)); # 1
Octal Usage
OCTAL_STRING = "150 145 154 154 157 56 40 164 150 151 163 40 151 163 40 141 40 154 157 156 147 40 155 145 163 163 141 147 145 40 143 157 156 164 141 151 156 151 156 147 40 141 40 154 157 164 40 157 146 40 144 141 164 141 56 40 123 155 141 154 154 145 162 40 144 141 164 141 40 151 163 40 154 145 163 163 40 160 162 145 144 151 143 164 141 142 154 145 56 40 120 154 145 141 163 145 40 143 157 156 163 151 144 145 162 40 165 163 151 156 147 40 154 157 156 147 145 162 40 163 164 162 145 141 155 163 40 157 146 40 144 141 164 141 40 146 157 162 40 141 40 150 151 147 150 145 162 40 144 145 147 162 145 145 40 157 146 40 141 143 143 165 162 141 143 171 56 40 124 150 141 156 153 163"
octal_scorer = new EncodingScorer("octal");
print(octal_scorer.score(OCTAL_STRING)); # 1
Decimal Usage
DECIMAL_STRING = "104 101 108 108 111 46 32 116 104 105 115 32 105 115 32 97 32 108 111 110 103 32 109 101 115 115 97 103 101 32 99 111 110 116 97 105 110 105 110 103 32 97 32 108 111 116 32 111 102 32 100 97 116 97 46 32 83 109 97 108 108 101 114 32 100 97 116 97 32 105 115 32 108 101 115 115 32 112 114 101 100 105 99 116 97 98 108 101 46 32 80 108 101 97 115 101 32 99 111 110 115 105 100 101 114 32 117 115 105 110 103 32 108 111 110 103 101 114 32 115 116 114 101 97 109 115 32 111 102 32 100 97 116 97 32 102 111 114 32 97 32 104 105 103 104 101 114 32 100 101 103 114 101 101 32 111 102 32 97 99 99 117 114 97 99 121 46 32 84 104 97 110 107 115"
decimalScorer = new EncodingScorer("decimal");
print(decimalScorer.score(DECIMAL_STRING)); # 1
Custom Regex Pattern
DECIMAL_STRING = "84 72 73 83 32 73 83 32 65 32 84 69 83 84 33 32 58 41" # THIS IS A TEST! :)
PATTERN = "[A-Z]" # Only allow uppercase alphabet.
PATTERN2 = "[A-Z:)!\\s]" # Allow all of the characters.
# NOTE: Must use `\\s` for space here.
decimal_scorer = new EncodingScorer("decimal", PATTERN);
print(decimal_scorer.score(DECIMAL_STRING)); # 0.6111111111111112
const decimal_scorer_2 = new EncodingScorer("decimal", PATTERN2);
console.log(decimal_scorer_2.score(DECIMAL_STRING)); # 1
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file encodingscorepy-1.1.0.tar.gz.
File metadata
- Download URL: encodingscorepy-1.1.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d325072cdc4019c8948e6c596ecbbb05f838c879fc913786b44a7ae958330fe
|
|
| MD5 |
6e20132d048eb6e935dcd51deb3cc5a0
|
|
| BLAKE2b-256 |
921e63e0710d1757ec2a5d0a01cf15441b776567e53d2798f09880b9fa632988
|
Provenance
The following attestation bundles were made for encodingscorepy-1.1.0.tar.gz:
Publisher:
publish-to-pip.yml on irebased/encodingscore-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
encodingscorepy-1.1.0.tar.gz -
Subject digest:
3d325072cdc4019c8948e6c596ecbbb05f838c879fc913786b44a7ae958330fe - Sigstore transparency entry: 833317329
- Sigstore integration time:
-
Permalink:
irebased/encodingscore-py@5c3d3b3eb9781dd814d50a0dfde5fb92d3781c87 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/irebased
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pip.yml@5c3d3b3eb9781dd814d50a0dfde5fb92d3781c87 -
Trigger Event:
push
-
Statement type:
File details
Details for the file encodingscorepy-1.1.0-py3-none-any.whl.
File metadata
- Download URL: encodingscorepy-1.1.0-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aee97279eba1a5426962b213af7f027229ce30c8bdc00bb58e486526fd0985b2
|
|
| MD5 |
62ea7c4d119514d3257a5ce077d724dc
|
|
| BLAKE2b-256 |
e3cf203e6ea26e5dd754023252afeef699bf4e7007bb28eadecc84fe7d372ae0
|
Provenance
The following attestation bundles were made for encodingscorepy-1.1.0-py3-none-any.whl:
Publisher:
publish-to-pip.yml on irebased/encodingscore-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
encodingscorepy-1.1.0-py3-none-any.whl -
Subject digest:
aee97279eba1a5426962b213af7f027229ce30c8bdc00bb58e486526fd0985b2 - Sigstore transparency entry: 833317332
- Sigstore integration time:
-
Permalink:
irebased/encodingscore-py@5c3d3b3eb9781dd814d50a0dfde5fb92d3781c87 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/irebased
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pip.yml@5c3d3b3eb9781dd814d50a0dfde5fb92d3781c87 -
Trigger Event:
push
-
Statement type: