This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [+] Entered shellcode | |
| [+] UID: 0, GID: 0 | |
| [DIR]: . | |
| [DIR]: .. | |
| [DIR]: adm | |
| [DIR]: app_tmp | |
| [DIR]: data | |
| [DIR]: dev | |
| [DIR]: eap_user | |
| [DIR]: eap_vsh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Useful celery config. | |
| app = Celery('tasks', | |
| broker='redis://localhost:6379', | |
| backend='redis://localhost:6379') | |
| app.conf.update( | |
| CELERY_TASK_RESULT_EXPIRES=3600, | |
| CELERY_QUEUES=( | |
| Queue('default', routing_key='tasks.#'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| # Profiling middleware and decorator, that allows to profile any django | |
| # view easily for superusers. | |
| __author__ = '[email protected]' | |
| import cProfile | |
| import pstats | |
| import tempfile |