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
| import sys | |
| from urllib import urlopen, urlencode | |
| from time import time | |
| from copy import copy | |
| from re import findall | |
| PASTEBIN_URL = 'https://pastebin.com/api/api_post.php' | |
| PASTEBIN_LOGIN_URL = 'https://pastebin.com/api/api_login.php' | |
| keys = [] |
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
| # Infi-Zeal Technologies | |
| # Regards, | |
| # Hardeep Singh | |
| # ---------------------------------------------------------------------------------------------- | |
| # HULK - HTTP Unbearable Load King | |
| # | |
| # this tool is a dos tool that is meant to put heavy load on HTTP servers in order to bring them | |
| # to their knees by exhausting the resource pool, its is meant for research purposes only | |
| # and any malicious usage of this tool is prohibited. |
This file has been truncated, but you can view the full file.
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
| { | |
| "release_limits": [ | |
| { | |
| "begin_at": null, | |
| "area_id": 1, | |
| "name": "Eagle Airport", | |
| "level": 0, | |
| "country": 840, | |
| "updated_at": 1429598267, | |
| "disable": 0, |
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
| # Pure Python ChaCha20 | |
| # Based on Numpy implementation: https://gist.github.com/chiiph/6855750 | |
| # Based on http://cr.yp.to/chacha.html | |
| # | |
| # I wanted an implementation of ChaCha in clean, understandable Python | |
| # as a way to get a handle on the algorithm for porting to another language. | |
| # There are plenty of bindings but few pure implementations, because | |
| # Pure Python is too slow for normal practical use in Cryptography. | |
| # | |
| # The preceding implementation used NumPy, which avoided a lot of the |
NewerOlder