-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
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
Addition of Custom Injection #30
Comments
Right now xcat doesn't do You can add your injections quite easily to this file: https://github.com/orf/xcat/blob/master/xcat/injections.py#L9 i.e: Injection('custom',
"some example",
(
("{working} or true() or ''='o", True),
("{working} or false() or ''='o", False),
),
"{working} or {expression} or ''='o"), That being said, your injection should work with
|
Thanks I'll give that a shot |
why is this the case? i had an injection where i needed to inject |
Wondering how I can add the following custom injection string to the library. I spent some time on it and can't get it to work.
Here is the general approach of true and false condition:
Returns Data
https://FQDN/PATH1/PATH2/?PARAM1=VALUE
https://FQDN/PATH1/PATH2/?PARAM1=VALUE' or true() or ''='o
Does Not Return Data
https://FQDN/PATH1/PATH2/?PARAM1=VALUE' or false() or ''='o
The text was updated successfully, but these errors were encountered: