Parsing code in SentryMBA that...

Tomashta

Lurker
Member
Joined
Threads
1
Posts
34
Parsing code in Sentry that must start with or contain "newlines" and/or "tab" in order to make it unique.

Any tips? I've been struggling with this for a couple days now and haven't been able to find an answer. I've been searching for info about regular expressions and parsing variables in Sentry. I've tried using "\t" for tab and "\n" for newline, respectively, however unsuccessful. Any help would be much appreciated.

Thanks
 
Comand \t and \n only for header settings, if your use post data looks like this
<xml>
<login>[email protected]</login>
<pass>123123</pass>
</xml>
remove space and try do it like this, i am guess it will help <xml><login>[email protected]</login><pass>123123</pass></xml>.
 
  • Thread Starter Thread Starter
  • #3
Thanks a lot for your prompt reply, as a new member I appreciate it. Unfortunately that didn't work for me either, at least not within the test environment. I was able to get an understanding of and effectively use the jolly character... and it worked like magic. What I needed looked more like this:

<foobar>
<xml>
<login>[email protected]</login>
<pass>123123</pass>
</xml>someblah

<foobar>moreblaaaahhhh

I needed to parse "moreblaaaahhhh". I was able to use "</xml>*<foobar>" as my Left String... Now onto the next hurdle.
 
Parsing code in Sentry that must start with or contain "newlines" and/or "tab" in order to make it unique.

Any tips? I've been struggling with this for a couple days now and haven't been able to find an answer. I've been searching for info about regular expressions and parsing variables in Sentry. I've tried using "\t" for tab and "\n" for newline, respectively, however unsuccessful. Any help would be much appreciated.

Thanks