├── .gitignore ├── Procfile ├── README.md ├── api ├── __init__.py ├── __init__.pyc ├── admin.py ├── admin.pyc ├── migrations │ ├── 0001_initial.py │ ├── 0001_initial.pyc │ ├── 0002_emailattachment.py │ ├── 0003_emailattachment_name.py │ ├── __init__.py │ └── __init__.pyc ├── models.py ├── models.pyc ├── tests.py ├── urls.py └── views.py ├── app.json ├── challenges ├── challenge_1.md ├── challenge_2.md ├── challenge_3.md ├── challenge_4.md └── challenge_5.md ├── email_attachments └── empty ├── fake_scotty_browser.js ├── hackathon ├── __init__.py ├── __init__.pyc ├── settings.py ├── urls.py ├── wsgi.py └── wsgi.pyc ├── manage.py ├── requirements.txt ├── setup ├── mailgun.md └── twilio.md └── static └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/__init__.pyc -------------------------------------------------------------------------------- /api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/admin.py -------------------------------------------------------------------------------- /api/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/admin.pyc -------------------------------------------------------------------------------- /api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /api/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /api/migrations/0002_emailattachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/migrations/0002_emailattachment.py -------------------------------------------------------------------------------- /api/migrations/0003_emailattachment_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/migrations/0003_emailattachment_name.py -------------------------------------------------------------------------------- /api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/migrations/__init__.pyc -------------------------------------------------------------------------------- /api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/models.py -------------------------------------------------------------------------------- /api/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/models.pyc -------------------------------------------------------------------------------- /api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/tests.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/api/views.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/app.json -------------------------------------------------------------------------------- /challenges/challenge_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/challenges/challenge_1.md -------------------------------------------------------------------------------- /challenges/challenge_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/challenges/challenge_2.md -------------------------------------------------------------------------------- /challenges/challenge_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/challenges/challenge_3.md -------------------------------------------------------------------------------- /challenges/challenge_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/challenges/challenge_4.md -------------------------------------------------------------------------------- /challenges/challenge_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/challenges/challenge_5.md -------------------------------------------------------------------------------- /email_attachments/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_scotty_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/fake_scotty_browser.js -------------------------------------------------------------------------------- /hackathon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hackathon/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/hackathon/__init__.pyc -------------------------------------------------------------------------------- /hackathon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/hackathon/settings.py -------------------------------------------------------------------------------- /hackathon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/hackathon/urls.py -------------------------------------------------------------------------------- /hackathon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/hackathon/wsgi.py -------------------------------------------------------------------------------- /hackathon/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/hackathon/wsgi.pyc -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup/mailgun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/setup/mailgun.md -------------------------------------------------------------------------------- /setup/twilio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/setup/twilio.md -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakthenet/HackMe-Social-Engineering-Challenges/HEAD/static/index.html --------------------------------------------------------------------------------