We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One of our customers ran into an issue where they accidentally provided a path component to a domain name when initializing an Imgix\UrlBuilder.
Imgix\UrlBuilder
We should validate and sanitize these, failing as early as possible if necessary.
The text was updated successfully, but these errors were encountered:
@kellysutton any progress with this?
A suggestion to validate domains could be use the dns A record to validate if exists:
if(!checkdnsrr($exampleDomain, 'A')) { throw new Exception('Not valid domain'); }
Sorry, something went wrong.
Hi @shakaran,
Unfortunately, I no longer work at imgix. You'll need to coordinate with someone there to get this fixed and landed. Best of luck!
Oh sorry @kellysutton for disturb ;) Do you know some useful email or ex-fellow email to contact directly? Thanks.
I will try ping to the contributors, maybe it is some of them @paulstraw @jacktasia @bjora857 @seanislegend @snowtigersoft @BenMorel
Try dropping an email to their support address: [email protected]
kellysutton
No branches or pull requests
One of our customers ran into an issue where they accidentally provided a path component to a domain name when initializing an
Imgix\UrlBuilder
.We should validate and sanitize these, failing as early as possible if necessary.
The text was updated successfully, but these errors were encountered: