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 : fm_agent_noroot.py
#!/usr/bin/env python import getpass import os import os.path import sys home = os.path.expanduser("~") ACCEPTABLE_SYNC_DELAY = 20 AGG_URL = "rx.us01.fortimonitor.com" BASE_CONFIG_DIR = os.path.join(home, "etc") BASE_CUSTOM_PLUGIN_DIR = os.path.join(home, "share") BASE_DATA_DIR = os.path.join(home, "lib") BASE_LOG_DIR = os.path.join(home, "log") BIN_DIR = os.path.join(home, "bin") BRAND = "fm" LIB_DIR = os.path.join(home, "lib") PKG_DIR = "fm-agent" STARTUP_TIMEOUT = 2 # In minutes USER = getpass.getuser() VERSION = "2026.2.11" # Add the main dependency directory sys.path.insert(0, os.path.join(home, "lib/dependencies")) # Add platform/version-specific dependency directory if present version = sys.version_info sys.path.insert( 0, os.path.join( home, "lib/dependencies/%s/python%s.%s" % (sys.platform, version[0], version[1]) ), ) # Add the main agent code directory sys.path.insert(0, os.path.join(home, "lib/library")) from agent import Agent if __name__ == "__main__": agent = Agent( BRAND, AGG_URL, VERSION, USER, BIN_DIR, LIB_DIR, PKG_DIR, STARTUP_TIMEOUT, BASE_CONFIG_DIR, BASE_CUSTOM_PLUGIN_DIR, BASE_DATA_DIR, BASE_LOG_DIR, ACCEPTABLE_SYNC_DELAY, ) agent.main()
Close