BADministration : Tool Which Interfaces with Management or Administration Applications

BADministration is a tool which interfaces with management or administration applications from an offensive standpoint.

It attempts to provide offsec personnel a tool with the ability to identify and leverage these non-technical vulnerabilities. As always: use for good, promote security, and fight application propagation.

Sorry for using python2.7, I found a lot of the vendor APIs would only run on 2.7 and I’m not experienced enough to mix and match python versions.

Application Propagation

In my opinion, we often do a fantastic job of network segmentation and we’re starting to catch on with domain segmentation; however, one area I often see us fall down is application segmentation.

Application segmentation is similar to network segmentation in that we’re trying to reduce the exposure of a critical zone from a less trusted zone if it were to become exploited.

Administration applications often have privileged access to all its clients, if an attacker lands on that administration application there is a good chance all the clients can become exploited as well.

Application segmentation tries to ensure that server-to-client relationships don’t cross any trust boundaries. For example, if your admin network is trust level 100 and it’s administered by your NMS server, your NMS server should be considered trust level 100.

Also Read – SET : The Social-Engineer Toolkit Repository From TrustedSec

Installation

There will be a collection of python scripts, exes, and who knows what; for the central python module it’s pretty simple

pip install -r requirements.txt

Current Modules

Solarwinds Orion

  • solarwinds-enum – Module used to enumerate clients of Orion
  • solarwinds-listalerts – Lists Orion alerts and draws attention to malicious BADministration alerts
  • solarwinds-alertremove – Removes the malicious alert
  • solarwinds-syscmd – Executes a system command on the Orion server via malicious alert
  • Standalone x64 4.5 .NET BADministration_SWDump.exe – Scrapes memory for WMI credentials used by Orion.
    • Can consume large amounts of memory, use at your own risk
    • Compile me as x64

McAfee ePO

  • mcafee-enum – Module used to enumerate clients of ePO
  • mcafee-listpackages – Lists all ePO deployment packages
  • mcafee-removepackage – Removes ePO deployment packages
  • mcafee-uploadpackage – Uploads package created with McAfee ePO Endpoint Deployment Toolkit (EEDK)
  • mcafee-createtask – Creates client task using deployment package
  • mcafee-remotetask – Removes target client task
  • mcafee-listtasks – Lists all client tasks
  • mcafee-runtask – Runs target client deployment task

McAfee EEDK

The ePO Endpoint Deployment Kit (EEDK) creates some sort of signed zip file which can be uploaded to ePO. A client task can be created leveraging the zip file, giving privileged access to ePO clients. EEDK requires msvcp71.dll to run which is an old runtime library which can be found in the .NET Framework SDK Version 1.1.

R K

Recent Posts

pgrep Command in Linux: Find and Filter Running Processes

The pgrep command in Linux finds the PIDs of running processes based on a name or other…

19 hours ago

unlink Command in Linux: Remove a Single File or Symlink

The unlink command in Linux removes a single file by deleting its directory entry. It is a…

19 hours ago

How to Check Open Ports in Linux: nmap, netcat, and Bash

When troubleshooting a network connection or configuring a firewall, the first question is whether a…

20 hours ago

ifconfig Command in Linux: Configure Network Interfaces

The ifconfig command in Linux displays and configures network interfaces. It can assign IP addresses, bring interfaces…

20 hours ago

groupdel Command in Linux: Remove a Group and Audit Files

The groupdel command in Linux removes a group from the system. It deletes the group's entry from /etc/group and /etc/gshadow,…

2 days ago

wc Command in Linux: Count Lines, Words, Characters, and Bytes

The wc command in Linux counts lines, words, characters, and bytes in files or standard input. It…

2 days ago