Covenant SharpSC Stop Service
Contents
Covenant SharpSC Stop Service#
Metadata#
Contributors |
Roberto Rodriguez @Cyb3rWard0g |
Creation Date |
2020/08/06 |
Modification Date |
2020/08/06 |
Tactics |
|
Techniques |
|
Tags |
RPC ControlService,Stop Service,SMB Svcctl |
Dataset Description#
This dataset represents a threat actor using the RPC ControlService method over SMB to stop a service.
Datasets Downloads#
Type |
Link |
---|---|
Host |
|
Host |
Adversary View#
(wardog) > SharpSC /command:"action=stop computername=WORKSTATION6 service=ikeext"
[*] Attempting to stop service ikeext on WORKSTATION6...
[+] Successfully stopped ikeext on WORKSTATION6!
DisplayName: IKE and AuthIP IPsec Keying Modules
ServiceName: ikeext
Status : Stopped
CanStop : False
https://github.com/djhohnstein/SharpSC
Explore Datasets#
Download & Decompress Dataset#
import requests
from zipfile import ZipFile
from io import BytesIO
url = https://raw.githubusercontent.com/OTRF/Security-Datasets/master/datasets/atomic/windows/lateral_movement/host/covenant_sharpsc_stop_dcerpc_smb_svcctl.zip
zipFileRequest = requests.get(url)
zipFile = ZipFile(BytesIO(zipFileRequest.content))
datasetJSONPath = zipFile.extract(zipFile.namelist()[0])
Read JSON File#
from pandas.io import json
df = json.read_json(path_or_buf=datasetJSONPath, lines=True)
Access Security Events#
df.groupby(['Channel']).size().sort_values(ascending=False)