This post is by a banned member (sodusme) - Unhide
OP 05 April, 2020 - 11:19 AM
Reply
Is there a way to make OpenBullet capture source code from another page? Like how you used to be able to do in Sentry? How you would do a "redirect" and have a keyword from the redirect page trigger that page to have source code captured from it? Like maybe doing a "GET" call in OpenBullet? Will that work?
I can post an example profile if someone knows there is a way to do this?
This post is by a banned member (Mirei) - Unhide
05 April, 2020 - 02:20 PM
Reply
(05 April, 2020 - 11:19 AM)sodusme Wrote: Show MoreIs there a way to make OpenBullet capture source code from another page? Like how you used to be able to do in Sentry? How you would do a "redirect" and have a keyword from the redirect page trigger that page to have source code captured from it? Like maybe doing a "GET" call in OpenBullet? Will that work?
I can post an example profile if someone knows there is a way to do this?
yeah it's simple like you said you just need to add new block of request and it's doing what redirect thing done in sentry mba
This post is by a banned member (sodusme) - Unhide
OP 05 April, 2020 - 07:21 PM
(This post was last modified: 05 April, 2020 - 11:25 PM by sodusme.)
Reply
Perfect I was hoping it was this easy.....
(05 April, 2020 - 02:20 PM)Mirei Wrote: Show More (05 April, 2020 - 11:19 AM)sodusme Wrote: Show MoreIs there a way to make OpenBullet capture source code from another page? Like how you used to be able to do in Sentry? How you would do a "redirect" and have a keyword from the redirect page trigger that page to have source code captured from it? Like maybe doing a "GET" call in OpenBullet? Will that work?
I can post an example profile if someone knows there is a way to do this?
yeah it's simple like you said you just need to add new block of request and it's doing what redirect thing done in sentry mba
OK so I got it figured out and I was able to do one capture on a redirect page....but when I try to do another it only comes up with the first one? So how do I do multiple captures from the same redirect page? I tried putting the GET redirect page and then a parse in that order multiple times but that didn't do it either?
This post is by a banned member (sodusme) - Unhide
OP 06 April, 2020 - 10:57 AM
Reply
(05 April, 2020 - 02:20 PM)Mirei Wrote: Show More (05 April, 2020 - 11:19 AM)sodusme Wrote: Show MoreIs there a way to make OpenBullet capture source code from another page? Like how you used to be able to do in Sentry? How you would do a "redirect" and have a keyword from the redirect page trigger that page to have source code captured from it? Like maybe doing a "GET" call in OpenBullet? Will that work?
I can post an example profile if someone knows there is a way to do this?
yeah it's simple like you said you just need to add new block of request and it's doing what redirect thing done in sentry mba
OK this is driving me nuts LOL. I need to parse THEATRE SUITE inside this: <h3 data-ng-if="cable.data.myServices.cable != null" class="ng-binding ng-scope">
THEATRE SUITE</h3>
I'm lost on how to do it under CSS? What do I put as selector and what do I put as attribute? I see attribute should be innerHTML? it looks like? This is driving me crazy as it looks very simple. Do I only need selector and attribute? Or do I need something else?
This post is by a banned member (Mirei) - Unhide
06 April, 2020 - 11:40 AM
Reply
(06 April, 2020 - 10:57 AM)sodusme Wrote: Show More (05 April, 2020 - 02:20 PM)Mirei Wrote: Show More (05 April, 2020 - 11:19 AM)sodusme Wrote: Show MoreIs there a way to make OpenBullet capture source code from another page? Like how you used to be able to do in Sentry? How you would do a "redirect" and have a keyword from the redirect page trigger that page to have source code captured from it? Like maybe doing a "GET" call in OpenBullet? Will that work?
I can post an example profile if someone knows there is a way to do this?
yeah it's simple like you said you just need to add new block of request and it's doing what redirect thing done in sentry mba
OK this is driving me nuts LOL. I need to parse THEATRE SUITE inside this: <h3 data-ng-if="cable.data.myServices.cable != null" class="ng-binding ng-scope">
THEATRE SUITE</h3>
I'm lost on how to do it under CSS? What do I put as selector and what do I put as attribute? I see attribute should be innerHTML? it looks like? This is driving me crazy as it looks very simple. Do I only need selector and attribute? Or do I need something else?
don't make it hard for your self just select LR option for Left and Right in html source and parse it
This post is by a banned member (sodusme) - Unhide
OP 06 April, 2020 - 01:44 PM
Reply
(06 April, 2020 - 11:40 AM)Mirei Wrote: Show More (06 April, 2020 - 10:57 AM)sodusme Wrote: Show More (05 April, 2020 - 02:20 PM)Mirei Wrote: Show Moreyeah it's simple like you said you just need to add new block of request and it's doing what redirect thing done in sentry mba
OK this is driving me nuts LOL. I need to parse THEATRE SUITE inside this: <h3 data-ng-if="cable.data.myServices.cable != null" class="ng-binding ng-scope">
THEATRE SUITE</h3>
I'm lost on how to do it under CSS? What do I put as selector and what do I put as attribute? I see attribute should be innerHTML? it looks like? This is driving me crazy as it looks very simple. Do I only need selector and attribute? Or do I need something else?
don't make it hard for your self just select LR option for Left and Right in html source and parse it
I tried that LOL. So here's the problem in "view source page" that line doesn't appear:<h3 data-ng-if="cable.data.myServices.cable != null">{{cable.data.myServices.cable.name}}</h3> This is all that shows up when I view source page and so when I do LR it comes up blank? So I have to highlight the source THEATRE SUITE and then hit "view element".
This post is by a banned member (Mirei) - Unhide
06 April, 2020 - 03:10 PM
Reply
(06 April, 2020 - 01:44 PM)sodusme Wrote: Show More (06 April, 2020 - 11:40 AM)Mirei Wrote: Show More (06 April, 2020 - 10:57 AM)sodusme Wrote: Show MoreOK this is driving me nuts LOL. I need to parse THEATRE SUITE inside this: <h3 data-ng-if="cable.data.myServices.cable != null" class="ng-binding ng-scope">THEATRE SUITE</h3>
I'm lost on how to do it under CSS? What do I put as selector and what do I put as attribute? I see attribute should be innerHTML? it looks like? This is driving me crazy as it looks very simple. Do I only need selector and attribute? Or do I need something else?
don't make it hard for your self just select LR option for Left and Right in html source and parse it
I tried that LOL. So here's the problem in "view source page" that line doesn't appear:<h3 data-ng-if="cable.data.myServices.cable != null">{{cable.data.myServices.cable.name}}</h3> This is all that shows up when I view source page and so when I do LR it comes up blank? So I have to highlight the source THEATRE SUITE and then hit "view element".
yeah inspect has difference with source page that's normal it shows blank can you send me the site so I can check it and give solution
This post is by a banned member (imnewhere222222222) - Unhide
06 April, 2020 - 03:22 PM
Reply
Wanna send me the website you are attempting to make a config for? I can do it for you .