https://github.com/bonifield/jitt
simple jitter tool
https://github.com/bonifield/jitt
bugbounty jitter jitter-calculation penetration-testing python3
Last synced: over 1 year ago
JSON representation
simple jitter tool
- Host: GitHub
- URL: https://github.com/bonifield/jitt
- Owner: bonifield
- License: mit
- Created: 2022-11-27T20:54:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-27T20:55:25.000Z (over 3 years ago)
- Last Synced: 2025-02-21T21:36:41.318Z (over 1 year ago)
- Topics: bugbounty, jitter, jitter-calculation, penetration-testing, python3
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jitt
simple jitter tool
Takes a baseline delay value, a percentage to calculate the min/max for allowed jitter values, and a desired precision; returns a float.
### Installation
```
pip install jitt
python3 -m pip install jitt
```
### Usage
```
from jitt import Jitt
j = Jitt(delay=10.5, percent=25, precision=3).jitter
print(j)
# misc results for above values (min: 7.875 / max: 13.125)
# 8.177
# 12.975
# 10.565
# 9.022
# 11.43 (trailing zero is truncated)
```