Skip to content

Commit

Permalink
Preparments For Potential Performance Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
41Baloo committed Feb 21, 2023
1 parent 6a6965c commit 1c4c04b
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 8 deletions.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# **Features**

## **TLS-Fingerprinting**

## **Staged DDoS-Mitigation**

### **Cookie Challenge

### **Invisible JS Challenge

### **Custom Captcha**

## **DDoS Alerts**

Always be informed when you are under attack of a (D)DoS attack with customisable discord alerts.



## **Lightweight**

# **Installation**

In order to install balooProxy simply download the [latest version of balooProxy](https://github.com/41Baloo/balooProxy/releases). You can either use a pre-configured `config.json` or configure your proxy when running it for the first time without a `config.json`.
Expand Down Expand Up @@ -65,7 +85,7 @@ Path to your ssl private key (For example `server.key` or `/keys/example.com.key
### **Rules**
---

Refer to [Custom Firewall Rules](#**Custom-Firewall-Rules**)
Refer to [Custom Firewall Rules](#Custom-Firewall-Rules)

# **Custom Firewall Rules**

Expand Down
12 changes: 6 additions & 6 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"proxy": {
"version": 1.2,
"cloudflare": false,
"cloudflare": true,
"maxLogLength": 10,
"adminsecret": "CHANGE_ME",
"apisecret": "CHANGE_NE",
Expand All @@ -11,15 +11,15 @@
"javascript": "CHANGE_ME"
},
"timeout": {
"idle": 10,
"read": 30,
"write": 30,
"read_header": 10
"idle": 5,
"read": 5,
"write": 7,
"read_header": 5
},
"ratelimits": {
"challengeFailures": 40,
"noRequestsSent": 10,
"requests": 1000,
"requests": 500,
"unknownFingerprint": 150
}
},
Expand Down
2 changes: 1 addition & 1 deletion core/server/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func Monitor() {
fmt.Print("\033[1;1H")

domains.DomainsMap.Range(func(_, dInterface interface{}) bool {
go checkAttack(dInterface)
checkAttack(dInterface)
return false
})

Expand Down
Binary file modified main
Binary file not shown.

0 comments on commit 1c4c04b

Please sign in to comment.