Base URL: http://translate.google.com/translate_tts
It converts written words into audio. It accepts GET requests.
q
The query string to convert to audio
tl
Translation language, for example, ar for Arabic, or en-us for English
Base URL: http://translate.google.com/translate_tts
It converts written words into audio. It accepts GET requests.
q
The query string to convert to audio
tl
Translation language, for example, ar for Arabic, or en-us for English
| #!/usr/bin/env python | |
| from lib.core.enums import PRIORITY | |
| import phpserialize | |
| import urllib | |
| import base64 | |
| import hashlib | |
| __priority__ = PRIORITY.HIGHEST |
| #!/usr/bin/env python | |
| import requests | |
| import pprint | |
| cookie_jar = \ | |
| { | |
| "PHPSESSID": "g53q6qct4l2bbgs1p5t48denf1", | |
| "widget_tracker": "YTozOntpOjA7aTo1MzMwO2k6MTtpOjUzMzc7aToyO2k6NTM0MDt9", | |
| "widget_validate": "05963d6a3e0abdc7df29beae3c68c6e933d4021446f060024aa4b8fa9cf61928748d4a93bce9209a106db6ef8dbba2ddf8aa0ef105bb11ec0b911a9e513718f" |
| #!/usr/bin/env python | |
| ''' Simple Python script to convert STDIN to 13375p34k with limited dictionary ''' | |
| ''' | |
| Usage: | |
| $ chmod +x leet_speak.py | |
| $ echo "All your base are belong to us" | leet_speak.py | |
| ''' |
| # All credit: http://stackoverflow.com/questions/4006324/how-to-atomically-delete-keys-matching-a-pattern-with-redis | |
| redis-cli [options] KEYS "prefix:*" | xargs redis-cli [options] DEL |
| # Belongs here: /usr/local/bin/vncviewer | |
| #!/usr/bin/env bash | |
| open vnc://$1 |
| #!/usr/bin/env python | |
| from lib.core.enums import PRIORITY | |
| from time import time | |
| from hashlib import sha1 | |
| __priority__ = PRIORITY.HIGHEST | |
| def dependencies(): | |
| pass |
| <?php | |
| /* | |
| Sample script to illustrate the problem described here: | |
| http://security.stackexchange.com/q/40811/20422 | |
| **/ | |
| // Based on UNIX timestamp in seconds hash | |
| $timehash = sha1(time()); | |
| /* |
| # All credit: http://stackoverflow.com/questions/4006324/how-to-atomically-delete-keys-matching-a-pattern-with-redis | |
| redis-cli [options] KEYS "prefix:*" | xargs redis-cli [options] DEL |