Atomic Search is a Python package for detecting malicious JavaScript syntax through an atomic and molecule search approach. This package is designed to handle obfuscated JavaScript code using techniques like concatenation and syntax splitting, making it effective for detecting target syntax even when the code is heavily obfuscated.
- Atomic Extraction: Extracts relevant syntax fragments (atoms) from obfuscated JavaScript.
- Molecule Search: Combines these atoms to form specific target syntax using a brute-force approach, enabling the detection of malicious JavaScript syntax.
- Logging and Debugging: Logs the extraction and molecule formation process for debugging purposes.
- Automated Task Management: Simplify development tasks with
invokecommands.
Ensure you are using Python 3.7 or newer.
Install the latest release from PyPI:
pip install atomic_search-
Clone the repository:
git clone https://github.com/aflinxh/atomic_search.git cd atomic_search -
Install the package using
pip:pip install . -
For development, install additional dependencies:
pip install .[dev]
Here’s an example of using Atomic Search to detect JavaScript syntax:
from atomic_search import atomic_search
# List of target words to detect
target_words = ["getElementById", "addEventListener"]
# Example search space, which is obfuscated JavaScript code
search_space = """
var a0='555C505E0',u9='); v',i9='.e',k3='av',p4='+"/co',p7=');',v2='type',i6='.spli',v4=' }',d0='Sc',k0='xa.',g7='=3;',r0='); v',p9=' 0; t',r5='{ l',s8='.writ',d9=' 1) ',p6='resp',n0='WSc',w7='%")+',v8='Stri',h4=' W',m9='ADO',w5='s.R',d3=' }; '
"""
# Define minimum atom size and molecule similarity
min_atom_size = 2 # minimum atom size
molecule_similarity = {"getElementById": "90%", "addEventListener": "-2"} # tolerance or similarity level
# Run the atomic search
results = atomic_search(target_words, search_space, min_atom_size, molecule_similarity, logs=True)
# Display the results
print("Search Results:", results)target_words: List of strings representing the target syntax to detect.search_space: The JavaScript string to analyze.min_atom_size: Minimum atom size required for validity.molecule_similarity: Dictionary setting the similarity or tolerance for each target.logs: Set toTrueto display logs.
The project has the following structure:
atomic_search/
├── atomic_search.py # Main function for atom and molecule search
├── extract_atoms.py # Module for atom extraction
├── form_molecule.py # Module to form molecules from atoms
└── __init__.py # Package initializer
tasks.py # Task automation with Invoke
utils/ # Utility scripts for managing logs and datasets
tests/ # Test directory
README.md # This documentation
pyproject.toml # Project metadata
setup.py # Installation configuration
This project uses invoke to manage development tasks, which are defined in tasks.py. Here are some commonly used commands:
-
Clear Logs: Removes all log files from the logs directory.
invoke clear-logs
-
Clear Datasets: Removes all datasets from the dataset directory.
invoke clear-datasets
-
Generate Datasets: Generates datasets with an optional
num_samplesargument.invoke generate-datasets --num-samples=100
This project uses pytest for running tests and invoke to manage and simplify test execution. Here are the available test commands using invoke:
-
Run Atom Tests: Runs tests for
extract_atoms.pylocated intests/test_extract_atoms.py. You can optionally specify a particular file to test and enable logs.invoke test-atoms --file-name="sample.js" --show-logs--file-name: Specifies the JavaScript file to use for testing. (Default: All Files)--show-logs: Enables detailed logging during the test even if no errors occured. (Default: False)
-
Run Molecule Tests: Runs tests for
form_molecule.pylocated intests/test_form_molecule.py. You can optionally specify a file name and enable logs.invoke test-molecule --file-name="sample.js" --show-logs--file-name: Specifies the JavaScript file to use for testing. (Default: All Files)--show-logs: Enables detailed logging during the test even if no errors occured. (Default: False)
-
Run Atomic Search Tests: Runs tests for the
atomic_searchfunction located intests/test_atomic_search.py. You can specify a file name and enable logs, similar to the other test commands.invoke test-atomic --file-name="sample.js" --show-logs--file-name: Specifies the JavaScript file to use for testing. (Default: All Files)--show-logs: Enables detailed logging during the test even if no errors occured. (Default: False)
To run all tests in the tests/ directory, you can use pytest directly:
pytest tests/These invoke commands allow you to run targeted tests with specific options for more control during development and debugging.
Contributions are welcome! Follow these steps to contribute:
- Fork this repository.
- Create a branch for your feature or fix (
git checkout -b new-feature). - Commit your changes (
git commit -m 'Add new feature'). - Push to the branch (
git push origin new-feature). - Create a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.