├── .dockerignore ├── .env ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── app.py ├── services │ ├── config.toml │ └── feeds.py ├── static │ └── assets │ │ ├── css │ │ ├── styles.css │ │ └── vendor │ │ │ ├── datatables.css │ │ │ ├── fabrx.css │ │ │ ├── lightgallery.css │ │ │ ├── selectpicker.css │ │ │ └── splide.css │ │ ├── fonts │ │ └── lightGallery │ │ │ ├── lg.svg │ │ │ ├── lg.ttf │ │ │ └── lg.woff │ │ ├── img │ │ ├── Demo.gif │ │ ├── center-align.svg │ │ ├── clock.svg │ │ ├── configuration.svg │ │ ├── duck.svg │ │ ├── eclipse.svg │ │ ├── github.svg │ │ ├── google.svg │ │ ├── icon │ │ │ ├── apple-icon-180.png │ │ │ ├── apple-splash-1125-2436.jpg │ │ │ ├── apple-splash-1136-640.jpg │ │ │ ├── apple-splash-1170-2532.jpg │ │ │ ├── apple-splash-1242-2208.jpg │ │ │ ├── apple-splash-1242-2688.jpg │ │ │ ├── apple-splash-1284-2778.jpg │ │ │ ├── apple-splash-1334-750.jpg │ │ │ ├── apple-splash-1536-2048.jpg │ │ │ ├── apple-splash-1620-2160.jpg │ │ │ ├── apple-splash-1668-2224.jpg │ │ │ ├── apple-splash-1668-2388.jpg │ │ │ ├── apple-splash-1792-828.jpg │ │ │ ├── apple-splash-2048-1536.jpg │ │ │ ├── apple-splash-2048-2732.jpg │ │ │ ├── apple-splash-2160-1620.jpg │ │ │ ├── apple-splash-2208-1242.jpg │ │ │ ├── apple-splash-640-1136.jpg │ │ │ ├── apple-splash-750-1334.jpg │ │ │ ├── apple-splash-828-1792.jpg │ │ │ ├── bug.png │ │ │ ├── manifest-icon-192.jpg │ │ │ └── manifest-icon-512.jpg │ │ ├── left-align.svg │ │ ├── lego │ │ │ ├── 001-lego.svg │ │ │ ├── 002-lego.svg │ │ │ ├── 003-lego.svg │ │ │ ├── 004-lego.svg │ │ │ ├── 005-lego.svg │ │ │ ├── 006-lego.svg │ │ │ ├── 007-lego.svg │ │ │ ├── 008-lego.svg │ │ │ ├── 009-lego.svg │ │ │ ├── 010-lego.svg │ │ │ ├── 011-lego.svg │ │ │ ├── 012-lego.svg │ │ │ ├── 013-lego.svg │ │ │ ├── 014-lego.svg │ │ │ ├── 015-lego.svg │ │ │ ├── 016-lego.svg │ │ │ ├── 017-lego.svg │ │ │ ├── 018-lego.svg │ │ │ ├── 019-lego.svg │ │ │ ├── 020-lego.svg │ │ │ ├── 021-lego.svg │ │ │ ├── 022-lego.svg │ │ │ ├── 023-lego.svg │ │ │ ├── 024-lego.svg │ │ │ ├── 025-lego.svg │ │ │ ├── 026-ninja.svg │ │ │ ├── 027-cowboy.svg │ │ │ ├── 028-knight.svg │ │ │ ├── 029-explorer.svg │ │ │ ├── 030-scuba_diver.svg │ │ │ ├── 031-clown.svg │ │ │ ├── 032-boy.svg │ │ │ ├── 033-native_american.svg │ │ │ ├── 034-cashier.svg │ │ │ ├── 035-spy.svg │ │ │ ├── 036-mariachi.svg │ │ │ ├── 037-pirate.svg │ │ │ ├── 038-fisherman.svg │ │ │ ├── 039-cyborg.svg │ │ │ ├── 040-vampire.svg │ │ │ ├── 041-businessman.svg │ │ │ ├── 042-conquistador.svg │ │ │ ├── 043-DJ.svg │ │ │ ├── 044-american_football_player.svg │ │ │ ├── 045-cheerleader.svg │ │ │ ├── 046-santa_claus.svg │ │ │ ├── 047-diver.svg │ │ │ ├── 048-thespian.svg │ │ │ ├── 049-man.svg │ │ │ ├── 050-man.svg │ │ │ ├── 051-cowgirl.svg │ │ │ ├── 052-caveman.svg │ │ │ ├── 053-witch.svg │ │ │ ├── 054-vampire.svg │ │ │ ├── 055-queen.svg │ │ │ ├── 056-gnome.svg │ │ │ ├── 057-injured.svg │ │ │ ├── 058-thief.svg │ │ │ ├── 059-hiker.svg │ │ │ ├── 060-devil.svg │ │ │ ├── 061-desert.svg │ │ │ ├── 062-ninja.svg │ │ │ ├── 063-batman.svg │ │ │ ├── 064-superman.svg │ │ │ ├── 065-wolverine.svg │ │ │ ├── 066-Spiderman.svg │ │ │ ├── 067-dummy.svg │ │ │ ├── 068-magician.svg │ │ │ ├── 069-thor.svg │ │ │ ├── 070-deadpool.svg │ │ │ ├── 071-businessman.svg │ │ │ ├── 072-woman.svg │ │ │ ├── 073-mummy.svg │ │ │ ├── 074-singer.svg │ │ │ ├── 075-Mohawk.svg │ │ │ ├── 076-explorer.svg │ │ │ ├── 077-dentist.svg │ │ │ ├── 078-hip_hop.svg │ │ │ ├── 079-surgeon.svg │ │ │ └── 080-priest.svg │ │ ├── search.svg │ │ ├── show.png │ │ ├── videos_id.png │ │ ├── videos_url.png │ │ └── videos_username.png │ │ ├── js │ │ ├── bugcrowd.js │ │ ├── cve.js │ │ ├── exploitdb.js │ │ ├── exploitdbsp.js │ │ ├── hackerone.js │ │ ├── news.js │ │ ├── nist.js │ │ ├── oxford.js │ │ ├── scripts.js │ │ ├── search.js │ │ ├── settings.js │ │ ├── tweets.js │ │ ├── vendor │ │ │ ├── bootstrap.js │ │ │ ├── chart.js │ │ │ ├── datatables.js │ │ │ ├── datatables_bootstrap.js │ │ │ ├── date_eu.js │ │ │ ├── endless_scroll.js │ │ │ ├── fabrx.js │ │ │ ├── jquery.js │ │ │ ├── lightGallery │ │ │ │ ├── lg-fullscreen.js │ │ │ │ ├── lg-rotate.js │ │ │ │ ├── lg-thumbnail.js │ │ │ │ ├── lg-zoom.js │ │ │ │ ├── lightgallery.js │ │ │ │ └── mousewheel.js │ │ │ ├── selectpicker.js │ │ │ ├── splide.js │ │ │ └── workbox-sw.js │ │ ├── videos.js │ │ └── welcome.js │ │ ├── manifest.json │ │ └── service-worker.js └── templates │ ├── fragments │ ├── bugcrowd.html │ ├── cve.html │ ├── exploitdb.html │ ├── exploitdbsp.html │ ├── hackerone.html │ ├── modal.html │ ├── news.html │ ├── nist.html │ ├── oxford.html │ ├── saved │ │ ├── bugcrowd.html │ │ ├── cve.html │ │ ├── exploitdb.html │ │ ├── exploitdbsp.html │ │ ├── hackerone.html │ │ ├── news.html │ │ ├── nist.html │ │ ├── oxford.html │ │ ├── tweets.html │ │ └── videos.html │ ├── search.html │ ├── tweets.html │ ├── videos.html │ └── welcome.html │ └── index.html ├── bin ├── firefox-esr_78.13.0esr-1_deb10u1_amd64.deb ├── geckodriver ├── libevent-2.1-6_2.1.8-stable-4_amd64.deb └── libffi6_3.2.1-9_amd64.deb ├── docker-compose.yml └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | PORT=9600 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [PwnedShell] -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/app.py -------------------------------------------------------------------------------- /app/services/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/services/config.toml -------------------------------------------------------------------------------- /app/services/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/services/feeds.py -------------------------------------------------------------------------------- /app/static/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/css/styles.css -------------------------------------------------------------------------------- /app/static/assets/css/vendor/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/css/vendor/datatables.css -------------------------------------------------------------------------------- /app/static/assets/css/vendor/fabrx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/css/vendor/fabrx.css -------------------------------------------------------------------------------- /app/static/assets/css/vendor/lightgallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/css/vendor/lightgallery.css -------------------------------------------------------------------------------- /app/static/assets/css/vendor/selectpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/css/vendor/selectpicker.css -------------------------------------------------------------------------------- /app/static/assets/css/vendor/splide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/css/vendor/splide.css -------------------------------------------------------------------------------- /app/static/assets/fonts/lightGallery/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/fonts/lightGallery/lg.svg -------------------------------------------------------------------------------- /app/static/assets/fonts/lightGallery/lg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/fonts/lightGallery/lg.ttf -------------------------------------------------------------------------------- /app/static/assets/fonts/lightGallery/lg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/fonts/lightGallery/lg.woff -------------------------------------------------------------------------------- /app/static/assets/img/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/Demo.gif -------------------------------------------------------------------------------- /app/static/assets/img/center-align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/center-align.svg -------------------------------------------------------------------------------- /app/static/assets/img/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/clock.svg -------------------------------------------------------------------------------- /app/static/assets/img/configuration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/configuration.svg -------------------------------------------------------------------------------- /app/static/assets/img/duck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/duck.svg -------------------------------------------------------------------------------- /app/static/assets/img/eclipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/eclipse.svg -------------------------------------------------------------------------------- /app/static/assets/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/github.svg -------------------------------------------------------------------------------- /app/static/assets/img/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/google.svg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-icon-180.png -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1125-2436.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1125-2436.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1136-640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1136-640.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1170-2532.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1170-2532.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1242-2208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1242-2208.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1242-2688.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1242-2688.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1284-2778.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1284-2778.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1334-750.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1334-750.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1536-2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1536-2048.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1620-2160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1620-2160.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1668-2224.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1668-2224.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1668-2388.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1668-2388.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-1792-828.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-1792-828.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-2048-1536.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-2048-1536.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-2048-2732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-2048-2732.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-2160-1620.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-2160-1620.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-2208-1242.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-2208-1242.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-640-1136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-640-1136.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-750-1334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-750-1334.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/apple-splash-828-1792.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/apple-splash-828-1792.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/bug.png -------------------------------------------------------------------------------- /app/static/assets/img/icon/manifest-icon-192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/manifest-icon-192.jpg -------------------------------------------------------------------------------- /app/static/assets/img/icon/manifest-icon-512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/icon/manifest-icon-512.jpg -------------------------------------------------------------------------------- /app/static/assets/img/left-align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/left-align.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/001-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/001-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/002-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/002-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/003-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/003-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/004-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/004-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/005-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/005-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/006-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/006-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/007-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/007-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/008-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/008-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/009-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/009-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/010-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/010-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/011-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/011-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/012-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/012-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/013-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/013-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/014-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/014-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/015-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/015-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/016-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/016-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/017-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/017-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/018-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/018-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/019-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/019-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/020-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/020-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/021-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/021-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/022-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/022-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/023-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/023-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/024-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/024-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/025-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/025-lego.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/026-ninja.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/026-ninja.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/027-cowboy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/027-cowboy.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/028-knight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/028-knight.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/029-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/029-explorer.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/030-scuba_diver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/030-scuba_diver.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/031-clown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/031-clown.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/032-boy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/032-boy.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/033-native_american.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/033-native_american.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/034-cashier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/034-cashier.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/035-spy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/035-spy.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/036-mariachi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/036-mariachi.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/037-pirate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/037-pirate.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/038-fisherman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/038-fisherman.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/039-cyborg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/039-cyborg.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/040-vampire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/040-vampire.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/041-businessman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/041-businessman.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/042-conquistador.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/042-conquistador.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/043-DJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/043-DJ.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/044-american_football_player.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/044-american_football_player.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/045-cheerleader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/045-cheerleader.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/046-santa_claus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/046-santa_claus.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/047-diver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/047-diver.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/048-thespian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/048-thespian.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/049-man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/049-man.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/050-man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/050-man.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/051-cowgirl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/051-cowgirl.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/052-caveman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/052-caveman.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/053-witch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/053-witch.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/054-vampire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/054-vampire.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/055-queen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/055-queen.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/056-gnome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/056-gnome.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/057-injured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/057-injured.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/058-thief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/058-thief.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/059-hiker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/059-hiker.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/060-devil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/060-devil.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/061-desert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/061-desert.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/062-ninja.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/062-ninja.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/063-batman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/063-batman.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/064-superman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/064-superman.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/065-wolverine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/065-wolverine.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/066-Spiderman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/066-Spiderman.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/067-dummy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/067-dummy.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/068-magician.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/068-magician.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/069-thor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/069-thor.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/070-deadpool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/070-deadpool.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/071-businessman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/071-businessman.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/072-woman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/072-woman.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/073-mummy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/073-mummy.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/074-singer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/074-singer.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/075-Mohawk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/075-Mohawk.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/076-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/076-explorer.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/077-dentist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/077-dentist.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/078-hip_hop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/078-hip_hop.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/079-surgeon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/079-surgeon.svg -------------------------------------------------------------------------------- /app/static/assets/img/lego/080-priest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/lego/080-priest.svg -------------------------------------------------------------------------------- /app/static/assets/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/search.svg -------------------------------------------------------------------------------- /app/static/assets/img/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/show.png -------------------------------------------------------------------------------- /app/static/assets/img/videos_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/videos_id.png -------------------------------------------------------------------------------- /app/static/assets/img/videos_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/videos_url.png -------------------------------------------------------------------------------- /app/static/assets/img/videos_username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/img/videos_username.png -------------------------------------------------------------------------------- /app/static/assets/js/bugcrowd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/bugcrowd.js -------------------------------------------------------------------------------- /app/static/assets/js/cve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/cve.js -------------------------------------------------------------------------------- /app/static/assets/js/exploitdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/exploitdb.js -------------------------------------------------------------------------------- /app/static/assets/js/exploitdbsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/exploitdbsp.js -------------------------------------------------------------------------------- /app/static/assets/js/hackerone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/hackerone.js -------------------------------------------------------------------------------- /app/static/assets/js/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/news.js -------------------------------------------------------------------------------- /app/static/assets/js/nist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/nist.js -------------------------------------------------------------------------------- /app/static/assets/js/oxford.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/oxford.js -------------------------------------------------------------------------------- /app/static/assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/scripts.js -------------------------------------------------------------------------------- /app/static/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/search.js -------------------------------------------------------------------------------- /app/static/assets/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/settings.js -------------------------------------------------------------------------------- /app/static/assets/js/tweets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/tweets.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/chart.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/datatables.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/datatables_bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/datatables_bootstrap.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/date_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/date_eu.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/endless_scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/endless_scroll.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/fabrx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/fabrx.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/jquery.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/lightGallery/lg-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/lightGallery/lg-fullscreen.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/lightGallery/lg-rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/lightGallery/lg-rotate.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/lightGallery/lg-thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/lightGallery/lg-thumbnail.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/lightGallery/lg-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/lightGallery/lg-zoom.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/lightGallery/lightgallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/lightGallery/lightgallery.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/lightGallery/mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/lightGallery/mousewheel.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/selectpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/selectpicker.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/splide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/splide.js -------------------------------------------------------------------------------- /app/static/assets/js/vendor/workbox-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/vendor/workbox-sw.js -------------------------------------------------------------------------------- /app/static/assets/js/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/videos.js -------------------------------------------------------------------------------- /app/static/assets/js/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/js/welcome.js -------------------------------------------------------------------------------- /app/static/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/manifest.json -------------------------------------------------------------------------------- /app/static/assets/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/static/assets/service-worker.js -------------------------------------------------------------------------------- /app/templates/fragments/bugcrowd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/bugcrowd.html -------------------------------------------------------------------------------- /app/templates/fragments/cve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/cve.html -------------------------------------------------------------------------------- /app/templates/fragments/exploitdb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/exploitdb.html -------------------------------------------------------------------------------- /app/templates/fragments/exploitdbsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/exploitdbsp.html -------------------------------------------------------------------------------- /app/templates/fragments/hackerone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/hackerone.html -------------------------------------------------------------------------------- /app/templates/fragments/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/modal.html -------------------------------------------------------------------------------- /app/templates/fragments/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/news.html -------------------------------------------------------------------------------- /app/templates/fragments/nist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/nist.html -------------------------------------------------------------------------------- /app/templates/fragments/oxford.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/oxford.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/bugcrowd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/bugcrowd.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/cve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/cve.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/exploitdb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/exploitdb.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/exploitdbsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/exploitdbsp.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/hackerone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/hackerone.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/news.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/nist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/nist.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/oxford.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/oxford.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/tweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/tweets.html -------------------------------------------------------------------------------- /app/templates/fragments/saved/videos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/saved/videos.html -------------------------------------------------------------------------------- /app/templates/fragments/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/search.html -------------------------------------------------------------------------------- /app/templates/fragments/tweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/tweets.html -------------------------------------------------------------------------------- /app/templates/fragments/videos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/videos.html -------------------------------------------------------------------------------- /app/templates/fragments/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/fragments/welcome.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /bin/firefox-esr_78.13.0esr-1_deb10u1_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/bin/firefox-esr_78.13.0esr-1_deb10u1_amd64.deb -------------------------------------------------------------------------------- /bin/geckodriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/bin/geckodriver -------------------------------------------------------------------------------- /bin/libevent-2.1-6_2.1.8-stable-4_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/bin/libevent-2.1-6_2.1.8-stable-4_amd64.deb -------------------------------------------------------------------------------- /bin/libffi6_3.2.1-9_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/bin/libffi6_3.2.1-9_amd64.deb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwnedshell/Bugs-feed/HEAD/requirements.txt --------------------------------------------------------------------------------