Skip to content

Commit 81c87ca

Browse files
committedFeb 20, 2023
Backwards compatibility from go1.10 onwards!
New tasks! Bugfixes galore! HEADS UP! THIS VERSION IS **INCOMPATIBLE** FROM OLDER VERSIONS FROM A NETWORKING STANDPOINT! The cause is the new KeyPair Sync mechanism. Current running implants built with "nokeyset" wll still operate normally. c2: - New Frag Group expiration timeouts. - Frag groups now expire and no longer stay forever if no updates are received. - ECDH key sync! - Packet data keys are now synced using a server-based Public/Private keypair. - Enables the 'TrustedKey' support. - 'c2.Server' now has a new 'Keys' attribute that can be used to specify the key material for the server. THIS MUST BE DONE BEFORE ANY LISTENERS ARE CREATED. - Sessions using Channel Mode will now set the ReadDeadlines in the same cadence as the WriteDeadlines, allowing for smoother operations and can assist with detecting socket closures. c2/cfg: - Added 'cfg.TrustedKey' Setting which can be used multiple times to limit the Servers that the client should connect to. - This can also take the hash of a Key - Updated 'Profile.KillDate()' to no longer use a '*time.Time' value and instead return 'time.Time, bool'. The boolean should only be true if the KillDate is being set (or unset if the 'time.Time' value is zero). - Added the 'Profile.TrustedKey(data.PublicKey) bool' method that can be used to verify if a PublicKey is trusted. c2/task: - New Whoami task! - Returns the real-time Username and the running Process path. - Update to Pull to allow redirecting downloads to the Server instead. - Use a empty destination path to redirect the download. - "c2/task/result" was updated for the new results. - Bugfix for PullExecute (DEX) where Stdout/Stderr was cut off by 8 bytes. - Bugfix for Pull where downloaded file Handle wasn't closed. c2/task/result: - Support for the new Whoami task. - Updated the "Pull" function which returns an additional 'io.Reader' which is not nil if the results were returned instead of written to the local filesystem. cmd: - Bugfix for 'os.Pipe()' in older Windows (<7) versions that prevented output from being read. - Bugfix to prevent closing an invalid parent Handle with detached/released Assembly threads. - Bugfix to ensure that Zombie Thread Handles are closed on detach/release. - Bugfix to allow for exit codes to be properly returned instead of the default exit code "4919". com: - Added ListenContext support for older Golang versions. - Fixed a bunch of UDP handeling bugs - Fixed the "long hang" UDP read bug. - Fixed the "bad read" UDP bug. com/limits: - Updated the signal handeling code for older Golang versions to properly defer to prevent deadlocks. com/wc2: - Updated to not use reflect calls to get the raw 'net.Conn'. - Updated some init function names to create 'wc2.Server' and 'wc2.Client' - This makes the 'wc2.Client' zero value usable. data: - Added some pre-"fs" package function calls for compatibility. - If Golang is >1.14 then they are just redirects to the respective functions. - Refactored and updated the 'data.Chunk' code to be x2 more efficient and perform less allocations when being used. - Added the (Windows Only) "Heap Backed" 'data.Chunk' that can use the Windows Heap and is managed manually that can be used to allocate memory without bothering the runtime. The "heap" buildtag can be used to enable this on Windows. - Added the new 'data.KeyPair' struct that can be used to manager a ECDH keyset. - Adds the 'data.PrivateKey', 'data.PublicKey' and 'data.SharedSecret' alias for raw key data. These can be used to print signatures of the keys. device: - Resolved some of the 'unsafe.Sizeof' calls to static values where appropriate. - Bugfix for a fat finger issue that caused all file entries to "device.DumpProcess" to error. device/local: - Updated to use the new 'device/unix' package. - Updated all "fs" package functions to use their 'data' counterparts instead. device/tags: - Bugfix to properly indicate when the memory manager is enabled. - Added a tag for the new Heap 'data.Chunk'. device/winapi: - Resolved some of the 'unsafe.Sizeof' calls to static values where appropriate. - Bugfix to prevent a DLL load bug where err == nil but the Handle was still zero and was not actually loaded. - Updated "winapi.CheckFunction()" with x64 and new x86 ASM instructions for Syscall detection. - Added a version gate to "PatchASMI" (>= 10) and "PatchETW" (>= Vista). - Bugfix for 'winapi.KillRuntime' to address issues when 'Access Denied' is raised when querying our own threads for their status. - Updated 'Nt*' error messages to be formatted correctly and drop the "{}". - Bugfix to correct the Windows PEB struct layout on 32bit. - Bugfix for older WOW processing not detecting they were running in 32bit mode. - Bugfix to prevent "winapi.CheckDebugWithLoad()" in Windows from erroneously returning true when loading WOW64 DLLs that do not exist. - Bugfix for 'GetLogicalDrives' that fixes a C0000005 error on 32bit systems. device/unix: - New "device/unix" package to query device details for *nix machines without relying on the "golang.org/x/sys" package. man: - Bugfix to fix the Windows Event SecurityAttributes struct size mismatch. tools: - Updated "test.sh" script with better formatting. - Added a check to "header_check.py" to look for matching older (+build) build tags. util: - Added the "Uitoa" and "Itoa" functions from the Golang "internal/iota" package for alloc-less int-to-string conversions. - This function replaced many calls to 'strconv.FormatUint'/'strconv.FormatInt' when using base10. Backwards Compatibility Issues (these do **NOT** affect any > go1.10 versions): - Xp - Lacks the "CreateProcessWithTokenW" so any Processes created while impersonating a user will fail. _(This does NOT affect Server 2003 WTF?)_ - Xp devices that are currently impersonating a Token will instead NOT drop the current Token and will call "CreateProcess" normally. - Xp <= SP2 - Lacks the "WinHttpGetDefaultProxyConfiguration" function, which will disable automatic HTTP Proxy detection. - Xp and Server 2003 - Lacks the "RegDeleteTree" function so deleting non-empty Keys may fail. - The concept of Token "Integrity" does not exist and users that are in the "Administrators" group are considered elevated. - This applies to "filter.Filter.Elevated" also! - Per the previous entry, the "Untrust" helper will NOT set the Token Integrity _(since it doesn't exist!)_, but it will STILL remove Token permissions. - Setting the parent process will **NOT** work. _(The API calls do not exist!)_ - NtCreateThreadEx doesn't exist and we fallback to CreateRemoteThread. *shrug* - Vista, Server 2008 and Older - Cannot evade ETW logs as the function calls do not exist. Backwards Compatibility Issues (these **DO** affect any > go1.10 versions): - 8 and Older - The PROCESS_CREATION_MITIGATION_POLICY flag will NOT be enabled as it's not avaliable until 8.1. - 8.1, Server 2012 and Older - Cannot evade ASMI as it is only present in >= Windows 10.
1 parent 9e9c815 commit 81c87ca

File tree

421 files changed

+8225
-2706
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

421 files changed

+8225
-2706
lines changed
 

‎BuildTags.md

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# XMT Build Tags List
2+
3+
**WIP!!**
4+
5+
Here is a collection of build tags "-tags" that can be used to affect the behavior
6+
of XMT.
7+
8+
None of these are used by default.
9+
10+
- bugs
11+
- implant
12+
- crypt
13+
- stdrand
14+
- nojson
15+
- nosweep
16+
- nokeyset
17+
- nopanic
18+
- loader
19+
- noservice
20+
- funcmap
21+
- tiny
22+
- small
23+
- medium
24+
- large
25+
- nofrag
26+
- regexp
27+
- ews
28+
- noproxy
29+
- multiproxy
30+
- scripts
31+
- heap
32+
- svcdll
33+
34+
The most popular set for size and usage is: `implant,nojson,noproxy`
35+
36+
## Logging and Output
37+
38+
- bugs
39+
- implant
40+
41+
## Defense and Evasion
42+
43+
- crypt
44+
- ews
45+
- nokeyset
46+
47+
## Windows Specific
48+
49+
- heap
50+
- svcdll
51+
- nopanic
52+
- funcmap
53+
- noservice
54+
55+
## Feature Sets
56+
57+
- loader
58+
- nojson
59+
- nosweep
60+
- scripts
61+
- regexp
62+
- stdrand
63+
64+
## Session Proxy Support
65+
66+
- noproxy
67+
- multiproxy
68+
69+
## Fragmention and Network Limitations
70+
71+
- tiny
72+
- small
73+
- medium
74+
- large
75+
- nofrag

‎README.md

+82-2
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,19 @@ This framework also contains many utility functions, including:
2323
- Efficient Data Marshaling interfaces
2424
- Easy Network communication resources
2525
- Super low file size! ~5mb completely using [JetStream](https://github.com/iDigitalFlame/ThunderStorm)
26+
- Backwards compatibility with systems as old as Windows Xp!
2627

2728
The pkg.go.dev site has some of the framework documentation and definitions
2829
[here](https://pkg.go.dev/github.com/iDigitalFlame/xmt).
2930

3031
## Roadmap
3132

32-
_Updated 12/14/22_
33+
_Updated 02/17/23_
3334

3435
- Reflective DLL Injection (Windows)
36+
- Updates to handeling x86 PEB (Windows)
3537
- Linux mem_fd loader
38+
- Thread Injection improvements
3639
- "Device Check" package
3740
- Detect VM
3841
- Anti-VM checks
@@ -47,6 +50,79 @@ above list:
4750
- Linux shellcode support
4851
- More thread injection options (Windows)
4952

53+
## Compatibility
54+
55+
This project is compatable with **ALL** Golang versions starting from **go1.10**!
56+
You can download the older versions of Golang from [the Golang website](https://go.dev/dl/).
57+
58+
Unless convined otherwise, I plan to keep the compatibility down to Go1.10.
59+
**Since I don't control the Script engines, Scripts are bound to >= go1.18**
60+
61+
**The following depreciated build types will NOT be supported**
62+
63+
- nacl/386
64+
- nacl/amd64p32
65+
- nacl/arm
66+
67+
**The following depreciated build types WORK but are specific**
68+
69+
- darwin/386 (<= go1.14)
70+
- darwin/arm (<= go1.14, needs CGO)
71+
72+
### Older OS Support Issues
73+
74+
So far the only issues I've seen are:
75+
76+
- Xp
77+
- Lacks the "CreateProcessWithTokenW" so any processes created while impersonating
78+
a user will fail. _(This does NOT affect Server 2003 WTF)_
79+
- Xp < SP3
80+
- Lacks the "WinHttpGetDefaultProxyConfiguration" function, which disables
81+
automatic HTTP Proxy detection.
82+
- Xp and Server 2003
83+
- Lacks the "RegDeleteTree" function so deleting non-empty Keys may fail.
84+
- The concept of Token "Integrity" does not exist and users that are in the
85+
"Administrators" group are considered elevated.
86+
- Per the previous entry, the "Untrust" helper will NOT set the Token Integrity
87+
_(since it doesn't exist!)_, but it will STILL remove Token permissions.
88+
- Setting the parent process does **NOT** work.
89+
- Vista, Server 2008 and older
90+
- Cannot evade ETW logs as the function calls do not exist.
91+
- Windows 8.1, Server 2012 and older
92+
- Cannot evade ASMI as it is only present in Windows 10 and newer.
93+
94+
### Compiling for Go1.10 (pre-modules)
95+
96+
Golang version 1.11 introduced the concept of Golang Modules and made dependency
97+
management simple. Unfortunately, Go1.10 (the last to support Xp, 2003, 2008
98+
and Vista) does **not**.
99+
100+
To work around this, we can just _vendor_ the packages, since the only dependencies,
101+
are the following PurpleSec modules:
102+
103+
- [LogX: github.com/PurpleSec/logx](https://github.com/PurpleSec/logx)
104+
- [Escape: github.com/PurpleSec/escape](https://github.com/PurpleSec/escape)
105+
106+
Which we already make backwards compatible :D
107+
108+
These dependencies can be downloaded and used with the following commands:
109+
110+
```bash
111+
go mod vendor
112+
mkdir "deps"
113+
mv "vendor" "deps/src"
114+
mkdir "deps/src/github.com/iDigitalFlame"
115+
ln -s "$(pwd)" "deps/src/github.com/iDigitalFlame/xmt"
116+
export GOPATH="$(pwd)/deps"
117+
export GOROOT="<path to downloaded Go1.10 folder>"
118+
```
119+
120+
_(Yes, I know you CAN use "-o" to specific the vendor directory, but that isn't_
121+
_supported until go1.18!)_
122+
123+
This should allow you to compile using the fullpath of the Go1.10 Golang binary.
124+
_(As long as you set your `GOROOT` and `GOPATH` correctly)_
125+
50126
## TODO
51127

52128
These are some things I need to work on.
@@ -63,7 +139,7 @@ BSides Las Vegas 2022: So you Wanta Build a C2?
63139

64140
## Bugs
65141

66-
_Updated 11/12/22_
142+
_Updated 02/17/23_
67143

68144
Feel free to submit issue tickets or pull requests if something is broken or
69145
doesn't act right. (I don't bite, mostly owo)
@@ -84,8 +160,12 @@ doesn't act right. (I don't bite, mostly owo)
84160

85161
XMT is covered by the GNU GPLv3 License
86162

163+
Third-party Licenses:
164+
87165
- [sRDI](https://raw.githubusercontent.com/monoxgas/sRDI/master/LICENSE) (GPLv3)
88166
- [Monkey](https://raw.githubusercontent.com/skx/monkey/master/LICENSE) (MIT)
167+
- Only if [Monkey](https://github.com/skx/monkey) support is compiled in and enabled.
89168
- [Otto](https://raw.githubusercontent.com/robertkrimen/otto/master/LICENSE) (MIT)
169+
- Only if [Otto](https://github.com/robertkrimen/otto) support is compiled in and enabled.
90170
- [LogX](https://raw.githubusercontent.com/PurpleSec/LogX/main/LICENSE) (Apache v2)
91171
- [Escape](https://raw.githubusercontent.com/PurpleSec/Escape/main/LICENSE) (Apache v2)

0 commit comments

Comments
 (0)
Please sign in to comment.