├── .github └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── README.md ├── ctf.json ├── data ├── events │ ├── *CTF 2021.json │ ├── 0CTF-TCTF 2021 Finals.json │ ├── 0CTF-TCTF 2021 Quals.json │ ├── 0x41414141 CTF.json │ ├── 3kCTF 2021.json │ ├── ASIS CTF Quals 2021.json │ ├── Aero CTF 2021.json │ ├── Asian Cyber Security Challenge 2021.json │ ├── BCACTF 2.0.json │ ├── BSides Noida CTF.json │ ├── BSidesSF 2021 CTF.json │ ├── Balsn CTF 2021.json │ ├── BlueHens CTF 2021.json │ ├── COMPFEST CTF 2021.json │ ├── CSAW CTF Qualification Round 2021.json │ ├── CakeCTF 2021.json │ ├── Codefest CTF 2020.json │ ├── Crypto CTF 2021.json │ ├── DCTF 2021.json │ ├── DEF CON CTF Qualifier 2021.json │ ├── DUNGEON - BSides Ahmedabad CTF 2021.json │ ├── DaVinciCTF 2021.json │ ├── DawgCTF 2021.json │ ├── DiceCTF.json │ ├── DownUnderCTF 2021 (Online).json │ ├── FooBar CTF 2021.json │ ├── Google Capture The Flag 2021.json │ ├── HSCTF 8.json │ ├── Hack.lu CTF 2021.json │ ├── HackPack CTF 2021.json │ ├── ICHSA CTF.json │ ├── IJCTF 2021.json │ ├── ImaginaryCTF 2021.json │ ├── Incognito 2.0.json │ ├── Intent CTF 2021.json │ ├── LINE CTF.json │ ├── Midnightsun CTF 2021 Finals.json │ ├── Midnightsun CTF 2021.json │ ├── N1CTF 2021.json │ ├── NahamCon CTF 2021.json │ ├── OMH 2021 CTF.json │ ├── PlaidCTF 2021.json │ ├── RITSEC CTF 2021.json │ ├── RaRCTF 2021.json │ ├── S4CTF 2021.json │ ├── SPRUSH CTF Quals 2021.json │ ├── Securinets CTF Quals 2021.json │ ├── Sunshine CTF 2021.json │ ├── TMUCTF 2021.json │ ├── TSG CTF 2021.json │ ├── TastelessCTF 2021.json │ ├── Tenable CTF 2021.json │ ├── TyphoonCon CTF 2021.json │ ├── UIUCTF 2021.json │ ├── UMDCTF 2021.json │ ├── UMassCTF 2021.json │ ├── UTCTF 2021.json │ ├── Union CTF.json │ ├── Valentine CTF 21'.json │ ├── Zh3r0 CTF V2.json │ ├── b01lers CTF 2021.json │ ├── corCTF 2021.json │ ├── darkCON CTF.json │ ├── justCTF [*] 2020.json │ ├── m0leCon 2021 Teaser CTF.json │ ├── pbctf 2021.json │ ├── redpwnCTF 2021.json │ ├── wtfctf.json │ ├── zer0pts CTF 2021.json │ └── ångstromCTF 2021.json └── teams │ ├── alles.json │ ├── kalmarunionen.json │ ├── mslc.json │ ├── superguesser.json │ └── zer0pts.json ├── front ├── .gitignore ├── assets │ └── css │ │ └── main.css ├── components │ ├── challengepanel.vue │ ├── date.vue │ ├── ratecolor.vue │ └── teamRow.vue ├── layouts │ └── default.vue ├── nuxt.config.js ├── package.json ├── pages │ ├── event │ │ └── _name.vue │ ├── events.vue │ ├── index.vue │ ├── redirect.vue │ └── team │ │ ├── _name.vue │ │ └── _name │ │ └── _ctf.vue ├── plugins │ └── vue-virtual-scroll-list.js ├── static │ └── 404.html ├── store │ └── index.js └── yarn.lock ├── lib ├── __init__.py ├── difficulty.py ├── perf.py ├── scraper │ ├── __init__.py │ ├── angstromctf.py │ ├── asisctf.py │ ├── bcactf.py │ ├── bsidessf.py │ ├── ctfd.py │ ├── ctfd_legacy.py │ ├── ctfx.py │ ├── d3ctf.py │ ├── defcon.py │ ├── hacklu.py │ ├── imaginaryctf.py │ ├── midnightsun.py │ ├── n1ctf.py │ ├── p4.py │ ├── plaidctf.py │ ├── rctf.py │ ├── tctf.py │ └── the3000.py └── types.py ├── makedb.py ├── poetry.lock ├── pyproject.toml └── script.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | .vim 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/README.md -------------------------------------------------------------------------------- /ctf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/ctf.json -------------------------------------------------------------------------------- /data/events/*CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/*CTF 2021.json -------------------------------------------------------------------------------- /data/events/0CTF-TCTF 2021 Finals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/0CTF-TCTF 2021 Finals.json -------------------------------------------------------------------------------- /data/events/0CTF-TCTF 2021 Quals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/0CTF-TCTF 2021 Quals.json -------------------------------------------------------------------------------- /data/events/0x41414141 CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/0x41414141 CTF.json -------------------------------------------------------------------------------- /data/events/3kCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/3kCTF 2021.json -------------------------------------------------------------------------------- /data/events/ASIS CTF Quals 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/ASIS CTF Quals 2021.json -------------------------------------------------------------------------------- /data/events/Aero CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Aero CTF 2021.json -------------------------------------------------------------------------------- /data/events/Asian Cyber Security Challenge 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Asian Cyber Security Challenge 2021.json -------------------------------------------------------------------------------- /data/events/BCACTF 2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/BCACTF 2.0.json -------------------------------------------------------------------------------- /data/events/BSides Noida CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/BSides Noida CTF.json -------------------------------------------------------------------------------- /data/events/BSidesSF 2021 CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/BSidesSF 2021 CTF.json -------------------------------------------------------------------------------- /data/events/Balsn CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Balsn CTF 2021.json -------------------------------------------------------------------------------- /data/events/BlueHens CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/BlueHens CTF 2021.json -------------------------------------------------------------------------------- /data/events/COMPFEST CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/COMPFEST CTF 2021.json -------------------------------------------------------------------------------- /data/events/CSAW CTF Qualification Round 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/CSAW CTF Qualification Round 2021.json -------------------------------------------------------------------------------- /data/events/CakeCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/CakeCTF 2021.json -------------------------------------------------------------------------------- /data/events/Codefest CTF 2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Codefest CTF 2020.json -------------------------------------------------------------------------------- /data/events/Crypto CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Crypto CTF 2021.json -------------------------------------------------------------------------------- /data/events/DCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/DCTF 2021.json -------------------------------------------------------------------------------- /data/events/DEF CON CTF Qualifier 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/DEF CON CTF Qualifier 2021.json -------------------------------------------------------------------------------- /data/events/DUNGEON - BSides Ahmedabad CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/DUNGEON - BSides Ahmedabad CTF 2021.json -------------------------------------------------------------------------------- /data/events/DaVinciCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/DaVinciCTF 2021.json -------------------------------------------------------------------------------- /data/events/DawgCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/DawgCTF 2021.json -------------------------------------------------------------------------------- /data/events/DiceCTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/DiceCTF.json -------------------------------------------------------------------------------- /data/events/DownUnderCTF 2021 (Online).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/DownUnderCTF 2021 (Online).json -------------------------------------------------------------------------------- /data/events/FooBar CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/FooBar CTF 2021.json -------------------------------------------------------------------------------- /data/events/Google Capture The Flag 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Google Capture The Flag 2021.json -------------------------------------------------------------------------------- /data/events/HSCTF 8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/HSCTF 8.json -------------------------------------------------------------------------------- /data/events/Hack.lu CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Hack.lu CTF 2021.json -------------------------------------------------------------------------------- /data/events/HackPack CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/HackPack CTF 2021.json -------------------------------------------------------------------------------- /data/events/ICHSA CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/ICHSA CTF.json -------------------------------------------------------------------------------- /data/events/IJCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/IJCTF 2021.json -------------------------------------------------------------------------------- /data/events/ImaginaryCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/ImaginaryCTF 2021.json -------------------------------------------------------------------------------- /data/events/Incognito 2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Incognito 2.0.json -------------------------------------------------------------------------------- /data/events/Intent CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Intent CTF 2021.json -------------------------------------------------------------------------------- /data/events/LINE CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/LINE CTF.json -------------------------------------------------------------------------------- /data/events/Midnightsun CTF 2021 Finals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Midnightsun CTF 2021 Finals.json -------------------------------------------------------------------------------- /data/events/Midnightsun CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Midnightsun CTF 2021.json -------------------------------------------------------------------------------- /data/events/N1CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/N1CTF 2021.json -------------------------------------------------------------------------------- /data/events/NahamCon CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/NahamCon CTF 2021.json -------------------------------------------------------------------------------- /data/events/OMH 2021 CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/OMH 2021 CTF.json -------------------------------------------------------------------------------- /data/events/PlaidCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/PlaidCTF 2021.json -------------------------------------------------------------------------------- /data/events/RITSEC CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/RITSEC CTF 2021.json -------------------------------------------------------------------------------- /data/events/RaRCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/RaRCTF 2021.json -------------------------------------------------------------------------------- /data/events/S4CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/S4CTF 2021.json -------------------------------------------------------------------------------- /data/events/SPRUSH CTF Quals 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/SPRUSH CTF Quals 2021.json -------------------------------------------------------------------------------- /data/events/Securinets CTF Quals 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Securinets CTF Quals 2021.json -------------------------------------------------------------------------------- /data/events/Sunshine CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Sunshine CTF 2021.json -------------------------------------------------------------------------------- /data/events/TMUCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/TMUCTF 2021.json -------------------------------------------------------------------------------- /data/events/TSG CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/TSG CTF 2021.json -------------------------------------------------------------------------------- /data/events/TastelessCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/TastelessCTF 2021.json -------------------------------------------------------------------------------- /data/events/Tenable CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Tenable CTF 2021.json -------------------------------------------------------------------------------- /data/events/TyphoonCon CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/TyphoonCon CTF 2021.json -------------------------------------------------------------------------------- /data/events/UIUCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/UIUCTF 2021.json -------------------------------------------------------------------------------- /data/events/UMDCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/UMDCTF 2021.json -------------------------------------------------------------------------------- /data/events/UMassCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/UMassCTF 2021.json -------------------------------------------------------------------------------- /data/events/UTCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/UTCTF 2021.json -------------------------------------------------------------------------------- /data/events/Union CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Union CTF.json -------------------------------------------------------------------------------- /data/events/Valentine CTF 21'.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Valentine CTF 21'.json -------------------------------------------------------------------------------- /data/events/Zh3r0 CTF V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/Zh3r0 CTF V2.json -------------------------------------------------------------------------------- /data/events/b01lers CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/b01lers CTF 2021.json -------------------------------------------------------------------------------- /data/events/corCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/corCTF 2021.json -------------------------------------------------------------------------------- /data/events/darkCON CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/darkCON CTF.json -------------------------------------------------------------------------------- /data/events/justCTF [*] 2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/justCTF [*] 2020.json -------------------------------------------------------------------------------- /data/events/m0leCon 2021 Teaser CTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/m0leCon 2021 Teaser CTF.json -------------------------------------------------------------------------------- /data/events/pbctf 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/pbctf 2021.json -------------------------------------------------------------------------------- /data/events/redpwnCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/redpwnCTF 2021.json -------------------------------------------------------------------------------- /data/events/wtfctf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/wtfctf.json -------------------------------------------------------------------------------- /data/events/zer0pts CTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/zer0pts CTF 2021.json -------------------------------------------------------------------------------- /data/events/ångstromCTF 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/events/ångstromCTF 2021.json -------------------------------------------------------------------------------- /data/teams/alles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/teams/alles.json -------------------------------------------------------------------------------- /data/teams/kalmarunionen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/teams/kalmarunionen.json -------------------------------------------------------------------------------- /data/teams/mslc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/teams/mslc.json -------------------------------------------------------------------------------- /data/teams/superguesser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/teams/superguesser.json -------------------------------------------------------------------------------- /data/teams/zer0pts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/data/teams/zer0pts.json -------------------------------------------------------------------------------- /front/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nuxt 3 | yarn-error.log 4 | dist 5 | -------------------------------------------------------------------------------- /front/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/assets/css/main.css -------------------------------------------------------------------------------- /front/components/challengepanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/components/challengepanel.vue -------------------------------------------------------------------------------- /front/components/date.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/components/date.vue -------------------------------------------------------------------------------- /front/components/ratecolor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/components/ratecolor.vue -------------------------------------------------------------------------------- /front/components/teamRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/components/teamRow.vue -------------------------------------------------------------------------------- /front/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/layouts/default.vue -------------------------------------------------------------------------------- /front/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/nuxt.config.js -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/package.json -------------------------------------------------------------------------------- /front/pages/event/_name.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/pages/event/_name.vue -------------------------------------------------------------------------------- /front/pages/events.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/pages/events.vue -------------------------------------------------------------------------------- /front/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/pages/index.vue -------------------------------------------------------------------------------- /front/pages/redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/pages/redirect.vue -------------------------------------------------------------------------------- /front/pages/team/_name.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/pages/team/_name.vue -------------------------------------------------------------------------------- /front/pages/team/_name/_ctf.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/pages/team/_name/_ctf.vue -------------------------------------------------------------------------------- /front/plugins/vue-virtual-scroll-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/plugins/vue-virtual-scroll-list.js -------------------------------------------------------------------------------- /front/static/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/static/404.html -------------------------------------------------------------------------------- /front/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/store/index.js -------------------------------------------------------------------------------- /front/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/front/yarn.lock -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/difficulty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/difficulty.py -------------------------------------------------------------------------------- /lib/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/perf.py -------------------------------------------------------------------------------- /lib/scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/scraper/angstromctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/angstromctf.py -------------------------------------------------------------------------------- /lib/scraper/asisctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/asisctf.py -------------------------------------------------------------------------------- /lib/scraper/bcactf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/bcactf.py -------------------------------------------------------------------------------- /lib/scraper/bsidessf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/bsidessf.py -------------------------------------------------------------------------------- /lib/scraper/ctfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/ctfd.py -------------------------------------------------------------------------------- /lib/scraper/ctfd_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/ctfd_legacy.py -------------------------------------------------------------------------------- /lib/scraper/ctfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/ctfx.py -------------------------------------------------------------------------------- /lib/scraper/d3ctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/d3ctf.py -------------------------------------------------------------------------------- /lib/scraper/defcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/defcon.py -------------------------------------------------------------------------------- /lib/scraper/hacklu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/hacklu.py -------------------------------------------------------------------------------- /lib/scraper/imaginaryctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/imaginaryctf.py -------------------------------------------------------------------------------- /lib/scraper/midnightsun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/midnightsun.py -------------------------------------------------------------------------------- /lib/scraper/n1ctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/n1ctf.py -------------------------------------------------------------------------------- /lib/scraper/p4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/p4.py -------------------------------------------------------------------------------- /lib/scraper/plaidctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/plaidctf.py -------------------------------------------------------------------------------- /lib/scraper/rctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/rctf.py -------------------------------------------------------------------------------- /lib/scraper/tctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/tctf.py -------------------------------------------------------------------------------- /lib/scraper/the3000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/scraper/the3000.py -------------------------------------------------------------------------------- /lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/lib/types.py -------------------------------------------------------------------------------- /makedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/makedb.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/pyproject.toml -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ctf-ratings/HEAD/script.py --------------------------------------------------------------------------------