well if you search by email you used then most of the times you will get correct result.still would love to be able to handle mail in bulk
this would help BECAUSE:
people who have catchall email adress's who need to process unexpected emails
like process just NEW mail. Move processed mail to another folder when done being processed ? so we dont have to delete every thing?
ie i have 50 emails come in in 30 minutes i need to process each. dont know a UID for them cause other scripts dump to the catch all. but basic form link grab and fallow on half of them and a difrent action on the rest..
would LOVE THIS OPTION
by login or passwordYeah. The email is unknown. And remains that way. The activation email is not generated by me that's the issue. It is unknown untill the registration email is made. There is NO possible way to know. Otherwise I wouldn't have this problem.
if you are using catchall (which use * wildcard mask, which meaning any email sent to [email protected] will be redirected to one final inbox) then you just generate random text and add @domain.com at the end. I use catchall made of two words before @ and 10 domains after the "@" so these are spinned too).Yeah. The email is unknown. And remains that way. The activation email is not generated by me that's the issue. It is unknown untill the registration email is made. There is NO possible way to know. Otherwise I wouldn't have this problem.
// Get all fonts
var fonts = instance.GetFonts();
// Iterate through fonts and hide all fonts
if (fonts != null)
{
var fontList = fonts.ToList();
foreach (string font in fontList)
{
instance.HideFont(font);
}
}
Not all fonts can be hidden. Hide plugin feature is supposed to change fonts fingerpring, not to hide all fonts. I've explaied it in bugs thread.@VladZen
Is the new font feature supposed to defeat Javascript Font Fingerprinting?
I tested with the following code:
but https://browserleaks.com/fonts had no trouble still detecting all of my fonts.Код:// Get all fonts var fonts = instance.GetFonts(); // Iterate through fonts and hide all fonts if (fonts != null) { var fontList = fonts.ToList(); foreach (string font in fontList) { instance.HideFont(font); } }
If this feature isn't to emulate/spoof fonts, then any suggestions on way to spoof Javascript detection of fonts?