i need to parse this field duser=DOMAIN\\User to only extract user without Domain\\
Hi
you can start with this with your actual data.
| makeresults
| eval duser="DOMAIN\\\\User"
| rex field=duser "(?<=\\\\)(?<user>\w+)"
Probably you need to adjust the amount of \-characters?
See: https://regex101.com/r/6YF8BQ/1
r. Ismo
i tried this and worked duser=Domain\\+(?<duser>\S+)
thank you
| rex field=duser "\\\\\\\\(?<user>.*)"