Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeeky committed May 16, 2021
1 parent 5b3ef67 commit defddfe
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

**Let's raise the bar in C2 redirectors IR resiliency, shall we?**

![RedWarden](images/0.png)

Red Teaming business has seen [several](https://bluescreenofjeff.com/2016-04-12-combatting-incident-responders-with-apache-mod_rewrite/) [different](https://posts.specterops.io/automating-apache-mod-rewrite-and-cobalt-strike-malleable-c2-profiles-d45266ca642) [great](https://gist.github.com/curi0usJack/971385e8334e189d93a6cb4671238b10) ideas on how to combat incident responders and misdirect them while offering resistant C2 redirectors network at the same time.

This work combines many of those great ideas into a one, lightweight utility, mimicking Apache2 in it's roots of being a simple HTTP(S) reverse-proxy.
Expand Down Expand Up @@ -433,7 +435,7 @@ If you want to see your requests and responses full bodies - set `debug` and `tr

## Known Issues

- It _may_ add extra overhead to the interactive sleep speeds, effectively slowing down socks proxying
- It _may_ add a slight overhead to the interactive sleep throughput
- ProxyPass processing logic is far from perfect and is _really_ buggy (and oh boy its ugly!).
- Weird forms of configuration files can derail RedWarden parser and make it complain. Easiest approach to overcome this would be to copy `example-config.yaml` on work on it instead.

Expand Down
4 changes: 2 additions & 2 deletions example-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ log_dropped: False
#
# Default:
# log_request_delay: 60
# requests_threshold: 5
# requests_threshold: 3
#
throttle_down_peer_logging:
log_request_delay: 60
requests_threshold: 5
requests_threshold: 3


#
Expand Down
Binary file added images/0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion plugins/malleable_redirector.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ class AlterHostHeader(Exception):

'throttle_down_peer_logging' : {
'log_request_delay': 60,
'requests_threshold': 5
'requests_threshold': 3
},

'add_peers_to_whitelist_if_they_sent_valid_requests' : {
Expand Down

0 comments on commit defddfe

Please sign in to comment.