├── .gitignore ├── README.md ├── ad.php ├── admin.news ├── advsearch.php ├── app.json ├── attack.php ├── attackhosp.php ├── attackleave.php ├── attacklost.php ├── attackmug.php ├── attackwon.php ├── authenticate.php ├── bank.php ├── banner.jpg ├── banner1.jpg ├── bargreen.gif ├── barred.gif ├── battletent.php ├── bbcoder_adv.php ├── blacklist.php ├── challenges ├── challenge_1.md ├── challenge_2.md ├── challenge_3.md ├── challenge_4.md └── challenge_5.md ├── cmarket.php ├── composer.json ├── composer.lock ├── criminal.php ├── crons ├── cron_day.php ├── cron_fivemins.php ├── cron_hour.php ├── cron_minute.php └── index.php ├── crystaltemple.php ├── css └── game.css ├── cyberbank.php ├── dbdata.sql ├── dlarchive.php ├── docrime.php ├── donator.gif ├── donator.php ├── donatordone.php ├── education.php ├── estate.php ├── events.php ├── explore.php ├── fake_admin_browser.js ├── fedjail.php ├── friendslist.php ├── gamerules.php ├── generalpage.php ├── global_func.php ├── gym.php ├── halloffame.php ├── header.php ├── helptutorial.php ├── hirespy.php ├── hospital.php ├── imadd.php ├── index.php ├── inventory.php ├── ipbans └── index.htm ├── itembuy.php ├── iteminfo.php ├── itemmarket.php ├── itemsell.php ├── itemsend.php ├── itemuse.php ├── jailuser.php ├── js └── login.js ├── loggedin.php ├── login.php ├── logo.gif ├── logo.png ├── logout.php ├── mailban.php ├── mailbox.php ├── mainmenu.php ├── monopaper.php ├── monorail.php ├── mysql.php ├── new_staff.php ├── new_staff_actions.php ├── number.php ├── oclog.php ├── preferences.php ├── preferences_c2.php ├── preport.php ├── register.php ├── roulette.php ├── search.php ├── searchname.php ├── sendcash.php ├── setup_mysql.php ├── shops.php ├── slotsmachine.php ├── slotsmachine2.php ├── slotsmachine3.php ├── stafflist.php ├── staffnotes.php ├── stats.php ├── trigger_fake_admin.php ├── userlist.php ├── usersonline.php ├── viewuser.php ├── votetrpg.php ├── votetwg.php ├── voting.php ├── willpdone.php └── willpotion.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/README.md -------------------------------------------------------------------------------- /ad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/ad.php -------------------------------------------------------------------------------- /admin.news: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/admin.news -------------------------------------------------------------------------------- /advsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/advsearch.php -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/app.json -------------------------------------------------------------------------------- /attack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/attack.php -------------------------------------------------------------------------------- /attackhosp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/attackhosp.php -------------------------------------------------------------------------------- /attackleave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/attackleave.php -------------------------------------------------------------------------------- /attacklost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/attacklost.php -------------------------------------------------------------------------------- /attackmug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/attackmug.php -------------------------------------------------------------------------------- /attackwon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/attackwon.php -------------------------------------------------------------------------------- /authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/authenticate.php -------------------------------------------------------------------------------- /bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/bank.php -------------------------------------------------------------------------------- /banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/banner.jpg -------------------------------------------------------------------------------- /banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/banner1.jpg -------------------------------------------------------------------------------- /bargreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/bargreen.gif -------------------------------------------------------------------------------- /barred.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/barred.gif -------------------------------------------------------------------------------- /battletent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/battletent.php -------------------------------------------------------------------------------- /bbcoder_adv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/bbcoder_adv.php -------------------------------------------------------------------------------- /blacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/blacklist.php -------------------------------------------------------------------------------- /challenges/challenge_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/challenges/challenge_1.md -------------------------------------------------------------------------------- /challenges/challenge_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/challenges/challenge_2.md -------------------------------------------------------------------------------- /challenges/challenge_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/challenges/challenge_3.md -------------------------------------------------------------------------------- /challenges/challenge_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/challenges/challenge_4.md -------------------------------------------------------------------------------- /challenges/challenge_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/challenges/challenge_5.md -------------------------------------------------------------------------------- /cmarket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/cmarket.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/composer.lock -------------------------------------------------------------------------------- /criminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/criminal.php -------------------------------------------------------------------------------- /crons/cron_day.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/crons/cron_day.php -------------------------------------------------------------------------------- /crons/cron_fivemins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/crons/cron_fivemins.php -------------------------------------------------------------------------------- /crons/cron_hour.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/crons/cron_hour.php -------------------------------------------------------------------------------- /crons/cron_minute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/crons/cron_minute.php -------------------------------------------------------------------------------- /crons/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crystaltemple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/crystaltemple.php -------------------------------------------------------------------------------- /css/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/css/game.css -------------------------------------------------------------------------------- /cyberbank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/cyberbank.php -------------------------------------------------------------------------------- /dbdata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/dbdata.sql -------------------------------------------------------------------------------- /dlarchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/dlarchive.php -------------------------------------------------------------------------------- /docrime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/docrime.php -------------------------------------------------------------------------------- /donator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/donator.gif -------------------------------------------------------------------------------- /donator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/donator.php -------------------------------------------------------------------------------- /donatordone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/donatordone.php -------------------------------------------------------------------------------- /education.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/education.php -------------------------------------------------------------------------------- /estate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/estate.php -------------------------------------------------------------------------------- /events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/events.php -------------------------------------------------------------------------------- /explore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/explore.php -------------------------------------------------------------------------------- /fake_admin_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/fake_admin_browser.js -------------------------------------------------------------------------------- /fedjail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/fedjail.php -------------------------------------------------------------------------------- /friendslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/friendslist.php -------------------------------------------------------------------------------- /gamerules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/gamerules.php -------------------------------------------------------------------------------- /generalpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/generalpage.php -------------------------------------------------------------------------------- /global_func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/global_func.php -------------------------------------------------------------------------------- /gym.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/gym.php -------------------------------------------------------------------------------- /halloffame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/halloffame.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/header.php -------------------------------------------------------------------------------- /helptutorial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/helptutorial.php -------------------------------------------------------------------------------- /hirespy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/hirespy.php -------------------------------------------------------------------------------- /hospital.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/hospital.php -------------------------------------------------------------------------------- /imadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/imadd.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/index.php -------------------------------------------------------------------------------- /inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/inventory.php -------------------------------------------------------------------------------- /ipbans/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/ipbans/index.htm -------------------------------------------------------------------------------- /itembuy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/itembuy.php -------------------------------------------------------------------------------- /iteminfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/iteminfo.php -------------------------------------------------------------------------------- /itemmarket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/itemmarket.php -------------------------------------------------------------------------------- /itemsell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/itemsell.php -------------------------------------------------------------------------------- /itemsend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/itemsend.php -------------------------------------------------------------------------------- /itemuse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/itemuse.php -------------------------------------------------------------------------------- /jailuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/jailuser.php -------------------------------------------------------------------------------- /js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/js/login.js -------------------------------------------------------------------------------- /loggedin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/loggedin.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/login.php -------------------------------------------------------------------------------- /logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/logo.gif -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/logo.png -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/logout.php -------------------------------------------------------------------------------- /mailban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/mailban.php -------------------------------------------------------------------------------- /mailbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/mailbox.php -------------------------------------------------------------------------------- /mainmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/mainmenu.php -------------------------------------------------------------------------------- /monopaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/monopaper.php -------------------------------------------------------------------------------- /monorail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/monorail.php -------------------------------------------------------------------------------- /mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/mysql.php -------------------------------------------------------------------------------- /new_staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/new_staff.php -------------------------------------------------------------------------------- /new_staff_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/new_staff_actions.php -------------------------------------------------------------------------------- /number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/number.php -------------------------------------------------------------------------------- /oclog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/oclog.php -------------------------------------------------------------------------------- /preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/preferences.php -------------------------------------------------------------------------------- /preferences_c2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/preferences_c2.php -------------------------------------------------------------------------------- /preport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/preport.php -------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/register.php -------------------------------------------------------------------------------- /roulette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/roulette.php -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/search.php -------------------------------------------------------------------------------- /searchname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/searchname.php -------------------------------------------------------------------------------- /sendcash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/sendcash.php -------------------------------------------------------------------------------- /setup_mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/setup_mysql.php -------------------------------------------------------------------------------- /shops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/shops.php -------------------------------------------------------------------------------- /slotsmachine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/slotsmachine.php -------------------------------------------------------------------------------- /slotsmachine2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/slotsmachine2.php -------------------------------------------------------------------------------- /slotsmachine3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/slotsmachine3.php -------------------------------------------------------------------------------- /stafflist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/stafflist.php -------------------------------------------------------------------------------- /staffnotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/staffnotes.php -------------------------------------------------------------------------------- /stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/stats.php -------------------------------------------------------------------------------- /trigger_fake_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/trigger_fake_admin.php -------------------------------------------------------------------------------- /userlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/userlist.php -------------------------------------------------------------------------------- /usersonline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/usersonline.php -------------------------------------------------------------------------------- /viewuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/viewuser.php -------------------------------------------------------------------------------- /votetrpg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/votetrpg.php -------------------------------------------------------------------------------- /votetwg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/votetwg.php -------------------------------------------------------------------------------- /voting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/voting.php -------------------------------------------------------------------------------- /willpdone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/willpdone.php -------------------------------------------------------------------------------- /willpotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-XSS-CSRF-Challenges/HEAD/willpotion.php --------------------------------------------------------------------------------