├── .gitignore ├── README.md ├── data.csv ├── fetcher.py ├── filler.py ├── rater.py ├── requirements.txt ├── tops_100 ├── TOP100PAID.md └── TOP100UPVOTED.md ├── tops_by_bug_type ├── TOPACCOUNTTAKEOVER.md ├── TOPCLICKJACKING.md ├── TOPCSRF.md ├── TOPDOS.md ├── TOPIDOR.md ├── TOPOAUTH.md ├── TOPOPENREDIRECT.md ├── TOPRACECONDITION.md ├── TOPRCE.md ├── TOPSQLI.md ├── TOPSSRF.md ├── TOPSUBDOMAINTAKEOVER.md ├── TOPXSS.md └── TOPXXE.md ├── tops_by_program ├── TOPAUTOMATTIC.md ├── TOPBRAVESOFTWARE.md ├── TOPCOINBASE.md ├── TOPCONCRETE5.md ├── TOPCONCRETECMS.md ├── TOPCURL.md ├── TOPGITHUBSECURITYLAB.md ├── TOPGITLAB.md ├── TOPGRATIPAY.md ├── TOPH1CTF.md ├── TOPHACKERONE.md ├── TOPINTERNETBUGBOUNTY.md ├── TOPLEGALROBOT.md ├── TOPLOCALIZE.md ├── TOPLOCALTAPIOLA.md ├── TOPMAILRU.md ├── TOPNEWRELIC.md ├── TOPNEXTCLOUD.md ├── TOPNODEJSTHIRDPARTYMODULES.md ├── TOPOLX.md ├── TOPOPENXCHANGE.md ├── TOPOWNCLOUD.md ├── TOPPARAGONINITIATIVEENTERPRISES.md ├── TOPPHABRICATOR.md ├── TOPPHP(IBB).md ├── TOPPORNHUB.md ├── TOPQIWI.md ├── TOPRAZER.md ├── TOPROCKSTARGAMES.md ├── TOPSHOPIFY.md ├── TOPSHOPIFYSCRIPTS.md ├── TOPSIFCHAIN.md ├── TOPSLACK.md ├── TOPSTARBUCKS.md ├── TOPTHEINTERNET.md ├── TOPTWITTER.md ├── TOPUBER.md ├── TOPUBIQUITIINC.md ├── TOPUSDEPTOFDEFENSE.md ├── TOPVALVE.md ├── TOPVERIZONMEDIA.md ├── TOPVIMEO.md ├── TOPVKCOM.md ├── TOPWEBLATE.md ├── TOPWORDPRESS.md ├── TOPYAHOO!.md └── TOPZOMATO.md └── uniquer.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ 3 | *.swp 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/README.md -------------------------------------------------------------------------------- /data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/data.csv -------------------------------------------------------------------------------- /fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/fetcher.py -------------------------------------------------------------------------------- /filler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/filler.py -------------------------------------------------------------------------------- /rater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/rater.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | requests -------------------------------------------------------------------------------- /tops_100/TOP100PAID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_100/TOP100PAID.md -------------------------------------------------------------------------------- /tops_100/TOP100UPVOTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_100/TOP100UPVOTED.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPACCOUNTTAKEOVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPACCOUNTTAKEOVER.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPCLICKJACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPCLICKJACKING.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPCSRF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPCSRF.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPDOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPDOS.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPIDOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPIDOR.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPOAUTH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPOAUTH.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPOPENREDIRECT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPOPENREDIRECT.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPRACECONDITION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPRACECONDITION.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPRCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPRCE.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPSQLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPSQLI.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPSSRF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPSSRF.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPSUBDOMAINTAKEOVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPSUBDOMAINTAKEOVER.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPXSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPXSS.md -------------------------------------------------------------------------------- /tops_by_bug_type/TOPXXE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_bug_type/TOPXXE.md -------------------------------------------------------------------------------- /tops_by_program/TOPAUTOMATTIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPAUTOMATTIC.md -------------------------------------------------------------------------------- /tops_by_program/TOPBRAVESOFTWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPBRAVESOFTWARE.md -------------------------------------------------------------------------------- /tops_by_program/TOPCOINBASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPCOINBASE.md -------------------------------------------------------------------------------- /tops_by_program/TOPCONCRETE5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPCONCRETE5.md -------------------------------------------------------------------------------- /tops_by_program/TOPCONCRETECMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPCONCRETECMS.md -------------------------------------------------------------------------------- /tops_by_program/TOPCURL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPCURL.md -------------------------------------------------------------------------------- /tops_by_program/TOPGITHUBSECURITYLAB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPGITHUBSECURITYLAB.md -------------------------------------------------------------------------------- /tops_by_program/TOPGITLAB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPGITLAB.md -------------------------------------------------------------------------------- /tops_by_program/TOPGRATIPAY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPGRATIPAY.md -------------------------------------------------------------------------------- /tops_by_program/TOPH1CTF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPH1CTF.md -------------------------------------------------------------------------------- /tops_by_program/TOPHACKERONE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPHACKERONE.md -------------------------------------------------------------------------------- /tops_by_program/TOPINTERNETBUGBOUNTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPINTERNETBUGBOUNTY.md -------------------------------------------------------------------------------- /tops_by_program/TOPLEGALROBOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPLEGALROBOT.md -------------------------------------------------------------------------------- /tops_by_program/TOPLOCALIZE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPLOCALIZE.md -------------------------------------------------------------------------------- /tops_by_program/TOPLOCALTAPIOLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPLOCALTAPIOLA.md -------------------------------------------------------------------------------- /tops_by_program/TOPMAILRU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPMAILRU.md -------------------------------------------------------------------------------- /tops_by_program/TOPNEWRELIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPNEWRELIC.md -------------------------------------------------------------------------------- /tops_by_program/TOPNEXTCLOUD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPNEXTCLOUD.md -------------------------------------------------------------------------------- /tops_by_program/TOPNODEJSTHIRDPARTYMODULES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPNODEJSTHIRDPARTYMODULES.md -------------------------------------------------------------------------------- /tops_by_program/TOPOLX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPOLX.md -------------------------------------------------------------------------------- /tops_by_program/TOPOPENXCHANGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPOPENXCHANGE.md -------------------------------------------------------------------------------- /tops_by_program/TOPOWNCLOUD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPOWNCLOUD.md -------------------------------------------------------------------------------- /tops_by_program/TOPPARAGONINITIATIVEENTERPRISES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPPARAGONINITIATIVEENTERPRISES.md -------------------------------------------------------------------------------- /tops_by_program/TOPPHABRICATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPPHABRICATOR.md -------------------------------------------------------------------------------- /tops_by_program/TOPPHP(IBB).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPPHP(IBB).md -------------------------------------------------------------------------------- /tops_by_program/TOPPORNHUB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPPORNHUB.md -------------------------------------------------------------------------------- /tops_by_program/TOPQIWI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPQIWI.md -------------------------------------------------------------------------------- /tops_by_program/TOPRAZER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPRAZER.md -------------------------------------------------------------------------------- /tops_by_program/TOPROCKSTARGAMES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPROCKSTARGAMES.md -------------------------------------------------------------------------------- /tops_by_program/TOPSHOPIFY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPSHOPIFY.md -------------------------------------------------------------------------------- /tops_by_program/TOPSHOPIFYSCRIPTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPSHOPIFYSCRIPTS.md -------------------------------------------------------------------------------- /tops_by_program/TOPSIFCHAIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPSIFCHAIN.md -------------------------------------------------------------------------------- /tops_by_program/TOPSLACK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPSLACK.md -------------------------------------------------------------------------------- /tops_by_program/TOPSTARBUCKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPSTARBUCKS.md -------------------------------------------------------------------------------- /tops_by_program/TOPTHEINTERNET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPTHEINTERNET.md -------------------------------------------------------------------------------- /tops_by_program/TOPTWITTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPTWITTER.md -------------------------------------------------------------------------------- /tops_by_program/TOPUBER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPUBER.md -------------------------------------------------------------------------------- /tops_by_program/TOPUBIQUITIINC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPUBIQUITIINC.md -------------------------------------------------------------------------------- /tops_by_program/TOPUSDEPTOFDEFENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPUSDEPTOFDEFENSE.md -------------------------------------------------------------------------------- /tops_by_program/TOPVALVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPVALVE.md -------------------------------------------------------------------------------- /tops_by_program/TOPVERIZONMEDIA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPVERIZONMEDIA.md -------------------------------------------------------------------------------- /tops_by_program/TOPVIMEO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPVIMEO.md -------------------------------------------------------------------------------- /tops_by_program/TOPVKCOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPVKCOM.md -------------------------------------------------------------------------------- /tops_by_program/TOPWEBLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPWEBLATE.md -------------------------------------------------------------------------------- /tops_by_program/TOPWORDPRESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPWORDPRESS.md -------------------------------------------------------------------------------- /tops_by_program/TOPYAHOO!.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPYAHOO!.md -------------------------------------------------------------------------------- /tops_by_program/TOPZOMATO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/tops_by_program/TOPZOMATO.md -------------------------------------------------------------------------------- /uniquer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseiRofu/hackerone-reports/HEAD/uniquer.py --------------------------------------------------------------------------------