Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Windows.NTFS.MFT.JwrapperRemoteAccess #919

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions content/exchange/artifacts/Windows.NTFS.MFT.JwrapperRemoteAccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Windows.NTFS.MFT.JwrapperRemoteAccess
description: |
This artifact uses Windows.NTFS.MFT (By Matt Green - @mgreen27) to identify IP addresses pertaining to SimpleHelp RMM usage. SimpleHelp uses Jwrapper Remote Access under the hood and logs the destination address and port to a file within directory ".\ProgramData\JWrapper-Remote Access\JWAppsSharedConfig\hash.repository\urls\".

Alternatively, the IP addresses can also be identified from the config file located within "C:\\ProgramData\\JWrapper-Remote Access\\JWAppsSharedConfig\\serviceconfig.xml".


type: CLIENT

parameters:
- name: PathRegex
description: "Regex search over OSPath."
default: "JWrapper-Remote Access\\\\JWAppsSharedConfig\\\\hash.repository\\\\urls\\\\"
type: regex
- name: FileRegex
description: "Regex search over File Name"
default: "^(https?)__[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}__[0-9]{1,5}$"
type: regex


sources:
- query: |
SELECT *
FROM Artifact.Windows.NTFS.MFT(
FileRegex=FileRegex,
PathRegex=PathRegex
)
Loading