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
Many WAFs are configured to block access if the username is empty or if it contains "CURL".
Please add support for specifying a custom user-agent as well as a default user agent.
I've added a default value to the public init function:
init
variables.useragent = "cf-curl";
and then added this logic to to the private _commandArg function.
_commandArg
if(len(trim(variables.useragent))){ c.add('-A "#variables.useragent#"'); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Many WAFs are configured to block access if the username is empty or if it contains "CURL".
Please add support for specifying a custom user-agent as well as a default user agent.
I've added a default value to the public
init
function:and then added this logic to to the private
_commandArg
function.The text was updated successfully, but these errors were encountered: