LOLBAS/Advpack.md
2018-09-16 08:04:36 -04:00

1.9 KiB

name description functions resources fullpath notes
advpack.dll Legitimately used for installing of software and drivers.
awl-bypass execute
description code
Execute the specified (local or remote) .wsh/.sct script with scrobj.dll in the .inf file by calling an information file directive (section name specified). rundll32.exe advpack.dll,LaunchINFSection c:\test.inf,DefaultInstall_SingleUser,1,
description code
Execute the specified (local or remote) .wsh/.sct script with scrobj.dll in the .inf file by calling an information file directive (DefaultInstall section implied). rundll32.exe advpack.dll,LaunchINFSection c:\test.inf,,1,
description code
Launch executable by calling the RegisterOCX function. rundll32.exe advpack.dll,RegisterOCX calc.exe
description code
Launch command line by calling the RegisterOCX function. rundll32 advpack.dll, RegisterOCX "cmd.exe /c calc.exe"
description code
Launch a DLL payload by calling the RegisterOCX function. rundll32.exe advpack.dll,RegisterOCX test.dll
resource
https://bohops.com/2018/02/26/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence/
resource
https://twitter.com/ItsReallyNick/status/967859147977850880
resource
https://twitter.com/bohops/status/974497123101179904
resource
https://twitter.com/moriarty_meng/status/977848311603380224
resource
https://github.com/LOLBAS-Project/LOLBAS-Project.github.io/blob/master/_lolbas/Libraries/Payload/Advpack.inf
resource
https://github.com/LOLBAS-Project/LOLBAS-Project.github.io/blob/master/_lolbas/Libraries/Payload/Advpack_calc.sct
path
c:\windows\system32\advpack.dll
path
c:\windows\syswow64\advpack.dll
Thanks to Jimmy - @bohops (LaunchINFSection), fabrizio - @0rbz_ (RegisterOCX - DLL), Moriarty @moriarty_meng (RegisterOCX - Cmd), Nick Carr - @ItsReallyNick