aboutsummaryrefslogtreecommitdiff
path: root/slowloris.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2025-03-28 19:47:54 +0100
committercbdev <cb@cbcdn.com>2025-03-28 19:47:54 +0100
commitcacbc652d22338d0924ef64bccccb2f2fa3c83dc (patch)
tree81e32538e3ecdb5125a5ae72361a32a3ffd92580 /slowloris.c
parent98d5f5f0997a53ef80d9a3dac6b5feced61d2d22 (diff)
downloadpreload-slowloris-master.tar.gz
preload-slowloris-master.tar.bz2
preload-slowloris-master.zip
Allow setting chunk sizeHEADmaster
Diffstat (limited to 'slowloris.c')
-rw-r--r--slowloris.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/slowloris.c b/slowloris.c
index 846afde..2dca208 100644
--- a/slowloris.c
+++ b/slowloris.c
@@ -8,17 +8,19 @@
static int silent_mode = 0;
static unsigned send_delay = 0;
+static unsigned send_chunk = 1;
-char* xgetenv(const char* name){
+char* xgetenv(const char* name, char* def){
char* rv = getenv(name);
- return rv ? rv : "";
+ return rv ? rv : def;
}
-__attribute__ ((constructor)) void slowloris_init(){
- silent_mode = strtoul(xgetenv("SLOWLORIS_SILENT"), NULL, 10);
- send_delay = strtoul(xgetenv("SLOWLORIS_DELAY"), NULL, 10);
+__attribute__((constructor)) void slowloris_init(){
+ silent_mode = strtoul(xgetenv("SLOWLORIS_SILENT", "0"), NULL, 10);
+ send_delay = strtoul(xgetenv("SLOWLORIS_DELAY", "0"), NULL, 10);
+ send_chunk = strtoul(xgetenv("SLOWLORIS_CHUNK", "1"), NULL, 10);
if(!silent_mode){
- printf("preload-slowloris active\nDelay: %d\n", send_delay);
+ printf("preload-slowloris active\nDelay: %d\nChunking: %d\n", send_delay, send_chunk);
}
}
@@ -49,8 +51,8 @@ ssize_t send(int sockfd, const void* buf, size_t len, int flags){
ssize_t rv = 0;
- for(size_t u = 0; u < len; u++){
- ssize_t sent = real_send(sockfd, buf + u, 1, flags);
+ for(size_t u = 0; u < len; u += send_chunk){
+ ssize_t sent = real_send(sockfd, buf + u, (send_chunk < len - u) ? send_chunk : (len - u), flags);
if(sent < 0){
return -1;
}