Open jason21716 opened 4 years ago
Hi @jason21716! Could you try to query the values separately? What do you get? I think it's a problem with the "select *" query.
Hi @0xdeaddood, I tried to select one column and yes, it shows the different result.
WQL> select * from Win32_Desktop where Name like 'WINNTDOM\\*********'
| SettingID | Caption | Description | BorderWidth | CoolSwitch | CursorBlinkRate | DragFullWindows | GridGranularity | IconSpacing | IconTitleFaceName | IconTitleSize | IconTitleWrap | Name | Pattern | ScreenSaverActive | ScreenSaverExecutable | ScreenSaverSecure | ScreenSaverTimeout | Wallpaper | WallpaperTiled | WallpaperStretched |
| None | None | None | 1 | True | 530 | True | None | 43 | Microsoft JhengHei UI | 9 | True | WINNTDOM\********* | 0 | True | None | True | None | C:\Users\*********\AppData\Roaming\Microsoft\Windows\Themes\TranscodedWallpaper | True | True |
WQL> select Name, WallpaperTiled, WallPaperStretched from Win32_Desktop where Name like 'WINNTDOM\\*********'
| Name | WallpaperStretched | WallpaperTiled |
| WINNTDOM\********* | True | None |
That is a good workaround to solve my problem in a short time, thank you!
Configuration
impacket version: 0.9.20 Python version: 3.7.4 Target OS: Win 10
Debug Output With Command String
I'm using wmiquery.py in example and exec WQL query *Select from Win32_Desktop, result is showed but all bool value is wrong, value False is show True* (Confidential Data is replace by )
In other wmi viewer, the field WallpaperStretched have half of all row with False.
PCAP
If applicable, add a packet capture to help explain your problem.
Additional context
Space for additional context, investigative results, suspected issue.