Skip to content

Commit e9081c2

Browse files
committed
content(minor): abbr
1 parent e760e5b commit e9081c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/posts/programming/mini-projects/interactive-pause-python/2025-03-10-interactive-pause-in-multithreaded-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords: [threading, Event, threading.Event, signal, asyncio, multiprocessing,
1414
Scanning the internet is not trivial, but Python excels at such network I/O tasks thanks to its simplicity and its vast ecosystem of libraries. Still, when dealing with the internet, it’s not uncommon to encounter rate-limited endpoints and strongly firewalled sites. For penetration testing and red-teaming, opsec is also an important consideration. This means features such as delay and interactive pause are crucial — I'd even say desirable — to ensuring success and low false positives.
1515

1616
- **Delay** (or throttling) allows us to rate-limit requests fired below the 1-thread threshold.
17-
- **Interactive Pause** allows the user to adapt to changing circumstances. These include situations such as sudden network congestion leading to increased response time, WAFs kicking in due to excessive requests, local network failures, and sudden drops in bandwidth.^[ [feroxbuster](https://github.com/epi052/feroxbuster), a popular pentesting tool, has interactive pause for runtime addition of filters and pruning of exploration paths. Quite useful for reducing false positives and saving time!]
17+
- **Interactive Pause** allows the user to adapt to changing circumstances. These include situations such as sudden network congestion leading to increased response time, {% abbr "WAFs", "Web Application Firewalls" %} kicking in due to excessive requests, local network failures, and sudden drops in bandwidth.^[ [feroxbuster](https://github.com/epi052/feroxbuster), a popular pentesting tool, has interactive pause for runtime addition of filters and pruning of exploration paths. Quite useful for reducing false positives and saving time!]
1818

1919
In this post, I’ll be sharing how delay and interactive pause can be added to multithreaded Python scripts to enhance flexibility without compromising functionality.
2020

0 commit comments

Comments
 (0)