Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

mrgilchen's avatar
mrgilchen
Icon for Altostratus rankAltostratus
Nov 27, 2019
Solved

How to parse xml tag in POST body

Hi, My POST request to F5 looks like this:   <ScheduleRecordings> <ShowingID>REC_4344</ShowingID> <Channel>4344</Channel> </ScheduleRecordings>   How do I parse the Channel header value. ...
  • Yoann_Le_Corvi1's avatar
    Nov 28, 2019

    regexp {<Channel>(.*)</Channel>} [HTTP::payload] match CHANNEL

     

    Like this you can use $CHANNEL immédiately.

     

    log local0. "$CHANNEL"

     

    Should show you the value.

     

    Do not hesitate to mark this Answered :)