├── README.md ├── __init__.py ├── implants ├── __init__.py ├── __init__.pyc ├── gryffindor │ ├── __init__.py │ ├── __init__.pyc │ ├── c2profile.py │ └── c2profile.pyc └── ravenclaw │ ├── __init__.py │ ├── __init__.pyc │ ├── c2profile.py │ ├── c2profile.pyc │ ├── c2profile.py~ │ ├── cerberus.db │ ├── cmd.php │ ├── ctrl.htm │ ├── handler.htm │ ├── ravenbeak.py │ ├── ravenclaw.py │ ├── ravenclawc2.py │ ├── s2.php │ ├── s2.php~ │ └── track.php ├── index.html ├── lib └── __init__.py ├── listeners ├── __init__.py ├── __init__.pyc ├── http.py ├── http.pyc └── https.py ├── oculus.py ├── package.json ├── server.js ├── test.txt ├── test.txt-cache ├── tmp.jpg ├── tmp.jpg-cache └── upload.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /implants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /implants/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/__init__.pyc -------------------------------------------------------------------------------- /implants/gryffindor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /implants/gryffindor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/gryffindor/__init__.pyc -------------------------------------------------------------------------------- /implants/gryffindor/c2profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/gryffindor/c2profile.py -------------------------------------------------------------------------------- /implants/gryffindor/c2profile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/gryffindor/c2profile.pyc -------------------------------------------------------------------------------- /implants/ravenclaw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /implants/ravenclaw/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/__init__.pyc -------------------------------------------------------------------------------- /implants/ravenclaw/c2profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/c2profile.py -------------------------------------------------------------------------------- /implants/ravenclaw/c2profile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/c2profile.pyc -------------------------------------------------------------------------------- /implants/ravenclaw/c2profile.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/c2profile.py~ -------------------------------------------------------------------------------- /implants/ravenclaw/cerberus.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /implants/ravenclaw/cmd.php: -------------------------------------------------------------------------------- 1 | P7H+O1/gS2amKQ/1tI3XLw== 2 | -------------------------------------------------------------------------------- /implants/ravenclaw/ctrl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/ctrl.htm -------------------------------------------------------------------------------- /implants/ravenclaw/handler.htm: -------------------------------------------------------------------------------- 1 | OMG!!!! 2 | -------------------------------------------------------------------------------- /implants/ravenclaw/ravenbeak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/ravenbeak.py -------------------------------------------------------------------------------- /implants/ravenclaw/ravenclaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/ravenclaw.py -------------------------------------------------------------------------------- /implants/ravenclaw/ravenclawc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/ravenclawc2.py -------------------------------------------------------------------------------- /implants/ravenclaw/s2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/s2.php -------------------------------------------------------------------------------- /implants/ravenclaw/s2.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/s2.php~ -------------------------------------------------------------------------------- /implants/ravenclaw/track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/implants/ravenclaw/track.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/index.html -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /listeners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /listeners/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/listeners/__init__.pyc -------------------------------------------------------------------------------- /listeners/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/listeners/http.py -------------------------------------------------------------------------------- /listeners/http.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/listeners/http.pyc -------------------------------------------------------------------------------- /listeners/https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/listeners/https.py -------------------------------------------------------------------------------- /oculus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/oculus.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/server.js -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | y?test 2 | -------------------------------------------------------------------------------- /test.txt-cache: -------------------------------------------------------------------------------- 1 | eT90AGUAcwB0AA0ACgA= -------------------------------------------------------------------------------- /tmp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/tmp.jpg -------------------------------------------------------------------------------- /tmp.jpg-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/tmp.jpg-cache -------------------------------------------------------------------------------- /upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-Prismatica/Oculus/HEAD/upload.py --------------------------------------------------------------------------------