forked from shizunge/endlessh-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a new argument called 'interval_jitter', expressed as a percentage number (range 0-100) that has the following effects: If 0 => no effect. If >0 => choose a random integer in the [-(interval * jitter / 100), +(interval * jitter / 100)] range and add use it as an offset for the sleep interval. So for example, if our interval is 1000ms and we pick interval_jitter=20, then the sleep values will be in the range [800ms, 1200ms] This has been a requested feature in the original implementation, and is useful to twarth SSH scanners that have tarpit-detecting logic. Link: skeeto/endlessh#71
- Loading branch information
1 parent
7341b40
commit e550c6e
Showing
2 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters