├── .gitattributes ├── LICENSE ├── README.md ├── captcha.html ├── favicon.ico ├── index.html ├── script.js ├── static ├── backgrounds │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png ├── cursor2.png ├── cursor3.png ├── enemies │ ├── 1_dead.png │ ├── 1_normal.png │ ├── 2_dead.png │ ├── 2_normal.png │ ├── 3_dead.png │ ├── 3_normal.png │ ├── 4_dead.png │ ├── 4_normal.png │ ├── 5_dead.png │ ├── 5_normal.png │ ├── 6_dead.png │ └── 6_normal.png ├── gun.gif ├── pisga0.png ├── pistol-flash.png ├── shotgun-flash.png ├── shotgun.gif ├── sht2a0.png ├── social.jpg └── sound │ ├── 1_kill.wav │ ├── 2_kill.wav │ ├── 3_kill.wav │ ├── 4_kill.wav │ ├── 5_kill.wav │ ├── 6_kill.wav │ ├── dsbarexp.wav │ ├── dsdshtgn.wav │ ├── dspistol.wav │ ├── music.mp3 │ ├── music2.mp3 │ ├── ok.mp3 │ ├── shoot.mp3 │ └── shootshotgun.mp3 └── success.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/README.md -------------------------------------------------------------------------------- /captcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/captcha.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/script.js -------------------------------------------------------------------------------- /static/backgrounds/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/backgrounds/1.png -------------------------------------------------------------------------------- /static/backgrounds/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/backgrounds/2.png -------------------------------------------------------------------------------- /static/backgrounds/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/backgrounds/3.png -------------------------------------------------------------------------------- /static/backgrounds/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/backgrounds/4.png -------------------------------------------------------------------------------- /static/cursor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/cursor2.png -------------------------------------------------------------------------------- /static/cursor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/cursor3.png -------------------------------------------------------------------------------- /static/enemies/1_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/1_dead.png -------------------------------------------------------------------------------- /static/enemies/1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/1_normal.png -------------------------------------------------------------------------------- /static/enemies/2_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/2_dead.png -------------------------------------------------------------------------------- /static/enemies/2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/2_normal.png -------------------------------------------------------------------------------- /static/enemies/3_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/3_dead.png -------------------------------------------------------------------------------- /static/enemies/3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/3_normal.png -------------------------------------------------------------------------------- /static/enemies/4_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/4_dead.png -------------------------------------------------------------------------------- /static/enemies/4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/4_normal.png -------------------------------------------------------------------------------- /static/enemies/5_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/5_dead.png -------------------------------------------------------------------------------- /static/enemies/5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/5_normal.png -------------------------------------------------------------------------------- /static/enemies/6_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/6_dead.png -------------------------------------------------------------------------------- /static/enemies/6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/enemies/6_normal.png -------------------------------------------------------------------------------- /static/gun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/gun.gif -------------------------------------------------------------------------------- /static/pisga0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/pisga0.png -------------------------------------------------------------------------------- /static/pistol-flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/pistol-flash.png -------------------------------------------------------------------------------- /static/shotgun-flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/shotgun-flash.png -------------------------------------------------------------------------------- /static/shotgun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/shotgun.gif -------------------------------------------------------------------------------- /static/sht2a0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sht2a0.png -------------------------------------------------------------------------------- /static/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/social.jpg -------------------------------------------------------------------------------- /static/sound/1_kill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/1_kill.wav -------------------------------------------------------------------------------- /static/sound/2_kill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/2_kill.wav -------------------------------------------------------------------------------- /static/sound/3_kill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/3_kill.wav -------------------------------------------------------------------------------- /static/sound/4_kill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/4_kill.wav -------------------------------------------------------------------------------- /static/sound/5_kill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/5_kill.wav -------------------------------------------------------------------------------- /static/sound/6_kill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/6_kill.wav -------------------------------------------------------------------------------- /static/sound/dsbarexp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/dsbarexp.wav -------------------------------------------------------------------------------- /static/sound/dsdshtgn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/dsdshtgn.wav -------------------------------------------------------------------------------- /static/sound/dspistol.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/dspistol.wav -------------------------------------------------------------------------------- /static/sound/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/music.mp3 -------------------------------------------------------------------------------- /static/sound/music2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/music2.mp3 -------------------------------------------------------------------------------- /static/sound/ok.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/ok.mp3 -------------------------------------------------------------------------------- /static/sound/shoot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/shoot.mp3 -------------------------------------------------------------------------------- /static/sound/shootshotgun.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/static/sound/shootshotgun.mp3 -------------------------------------------------------------------------------- /success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivirenremoto/doomcaptcha/HEAD/success.html --------------------------------------------------------------------------------