├── .gitignore ├── .vscode ├── diff │ └── vulsCount.txt └── settings.json ├── Account Takeover └── README.md ├── CNAME ├── Gemfile ├── README.md ├── Recon ├── 0xElkot.md └── README.md ├── SSRF └── README.md ├── SSTI └── .noted.md ├── XSS ├── Files │ ├── InsecureFlashFile.swf │ ├── JupyterNotebookXSS.ipynb │ ├── SVG_XSS.svg │ ├── SVG_XSS1.svg │ ├── SVG_XSS2.svg │ ├── SVG_XSS3.svg │ ├── SWF_XSS.swf │ ├── XML_XSS_cheatsheet.html │ ├── xml.xsd │ ├── xss.cer │ ├── xss.dtd │ ├── xss.htm │ ├── xss.html.demo │ ├── xss.hxt │ ├── xss.mno │ ├── xss.rdf │ ├── xss.svgz │ ├── xss.vml │ ├── xss.wsdl │ ├── xss.xht │ ├── xss.xhtml │ ├── xss.xml │ ├── xss.xsd │ ├── xss.xsf │ ├── xss.xsl │ ├── xss.xslt │ ├── xss_comment_exif_metadata_double_quote.png │ └── xss_comment_exif_metadata_single_quote.png ├── README.md ├── _index.html └── xsspayloads.txt ├── XXE └── XXE.md ├── _config.yml ├── css └── style.css ├── index.md ├── scripts └── conv.py ├── share_withus └── README.md └── test.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .dccache 3 | -------------------------------------------------------------------------------- /.vscode/diff/vulsCount.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "WhiteSource Advise.Diff.BaseBranch": "main" 3 | } 4 | -------------------------------------------------------------------------------- /Account Takeover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/Account Takeover/README.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | kafpg.github.io 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/README.md -------------------------------------------------------------------------------- /Recon/0xElkot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/Recon/0xElkot.md -------------------------------------------------------------------------------- /Recon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/Recon/README.md -------------------------------------------------------------------------------- /SSRF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SSTI/.noted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/SSTI/.noted.md -------------------------------------------------------------------------------- /XSS/Files/InsecureFlashFile.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/InsecureFlashFile.swf -------------------------------------------------------------------------------- /XSS/Files/JupyterNotebookXSS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/JupyterNotebookXSS.ipynb -------------------------------------------------------------------------------- /XSS/Files/SVG_XSS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/SVG_XSS.svg -------------------------------------------------------------------------------- /XSS/Files/SVG_XSS1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/SVG_XSS1.svg -------------------------------------------------------------------------------- /XSS/Files/SVG_XSS2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/SVG_XSS2.svg -------------------------------------------------------------------------------- /XSS/Files/SVG_XSS3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/SVG_XSS3.svg -------------------------------------------------------------------------------- /XSS/Files/SWF_XSS.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/SWF_XSS.swf -------------------------------------------------------------------------------- /XSS/Files/XML_XSS_cheatsheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/XML_XSS_cheatsheet.html -------------------------------------------------------------------------------- /XSS/Files/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xml.xsd -------------------------------------------------------------------------------- /XSS/Files/xss.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.cer -------------------------------------------------------------------------------- /XSS/Files/xss.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.dtd -------------------------------------------------------------------------------- /XSS/Files/xss.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.htm -------------------------------------------------------------------------------- /XSS/Files/xss.html.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.html.demo -------------------------------------------------------------------------------- /XSS/Files/xss.hxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.hxt -------------------------------------------------------------------------------- /XSS/Files/xss.mno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.mno -------------------------------------------------------------------------------- /XSS/Files/xss.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.rdf -------------------------------------------------------------------------------- /XSS/Files/xss.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.svgz -------------------------------------------------------------------------------- /XSS/Files/xss.vml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.vml -------------------------------------------------------------------------------- /XSS/Files/xss.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.wsdl -------------------------------------------------------------------------------- /XSS/Files/xss.xht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.xht -------------------------------------------------------------------------------- /XSS/Files/xss.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.xhtml -------------------------------------------------------------------------------- /XSS/Files/xss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.xml -------------------------------------------------------------------------------- /XSS/Files/xss.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.xsd -------------------------------------------------------------------------------- /XSS/Files/xss.xsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.xsf -------------------------------------------------------------------------------- /XSS/Files/xss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.xsl -------------------------------------------------------------------------------- /XSS/Files/xss.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss.xslt -------------------------------------------------------------------------------- /XSS/Files/xss_comment_exif_metadata_double_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss_comment_exif_metadata_double_quote.png -------------------------------------------------------------------------------- /XSS/Files/xss_comment_exif_metadata_single_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/Files/xss_comment_exif_metadata_single_quote.png -------------------------------------------------------------------------------- /XSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/README.md -------------------------------------------------------------------------------- /XSS/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/_index.html -------------------------------------------------------------------------------- /XSS/xsspayloads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XSS/xsspayloads.txt -------------------------------------------------------------------------------- /XXE/XXE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/XXE/XXE.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/_config.yml -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/css/style.css -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/index.md -------------------------------------------------------------------------------- /scripts/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/scripts/conv.py -------------------------------------------------------------------------------- /share_withus/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackarwiki/bughunting-ar/HEAD/test.md --------------------------------------------------------------------------------