DOM Regex Bug On A Pop-Up - Can't Block this Pop-Up. How To Avoid this problem ?

valteau

Client
Joined
Jul 6, 2018
Messages
133
Reaction score
3
Points
18
https://www.hammam-alhambra.com/

On this Website, the DOM Regex Bug On A Pop-Up - Can't Block this Pop-Up. How To Avoid this sort of problem On other website like this One ? Or Stop The Regex after 10 Seconde for exemple if it blocked. Thanks @VladZen
 

Attachments

VladZen

Administrator
Staff member
Joined
Nov 5, 2014
Messages
22,829
Reaction score
6,040
Points
113
There is no bug. PopUp can be easily closed just by click.
Your regular expression is wrong, it goes to endless parsing. You should construct proper regex for parsing on this website.
Test_parsing.png

What do you want to parse by the way? You can parse data with special option
Parse data_h.png
 

valteau

Client
Joined
Jul 6, 2018
Messages
133
Reaction score
3
Points
18
i want to parse Email on the page. i don't try this option for email Right. Is it Working everytime for All Email On a Webpage @VladZen ? There is not Email If There is Not Result with the Regex but the regex is working by my side
 

VladZen

Administrator
Staff member
Joined
Nov 5, 2014
Messages
22,829
Reaction score
6,040
Points
113
i want to parse Email on the page. i don't try this option for email Right. Is it Working everytime for All Email On a Webpage @VladZen ? There is not Email If There is Not Result with the Regex but the regex is working by my side
You should just use another regex for this site.
 

valteau

Client
Joined
Jul 6, 2018
Messages
133
Reaction score
3
Points
18
Ok i will try thanks
 

valteau

Client
Joined
Jul 6, 2018
Messages
133
Reaction score
3
Points
18
But There is a Lot of Site like this one Blocked my New Regex i used. i want to avoid all this problem with the regex. How to put a timer during a regex ? This Regex Turning my Thread Like there are working but Do nothing ! I use zennobox 5.26 and i don't want to update

My New Regex for Email:
Code:
(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])
The Other Regex Blocked Also :
Code:
[a-zA-Z0-9-_.]+@[a-zA-Z0-9-_.]+
 

VladZen

Administrator
Staff member
Joined
Nov 5, 2014
Messages
22,829
Reaction score
6,040
Points
113
There is no timer, there is no regex blocking.
Your regex just won't work with the source code of the webpage and goes to endless parsing.
It's very hard to make universal regex matching all websites.
 

Users Who Are Viewing This Thread (Total: 1, Members: 0, Guests: 1)