Note : FinalWire, you can keep trying to stop us, but you can't. You know why ? You've been using the same algorithm for 10 years. Changing it would be an inconvenience for you and your customers.
By the way, I'd suggest that you proofread your DMCA requests. If you didn't know, it's "generated" and not "genereated". Also, when referencing to someone's belonging you use the possessive form "their" and not "there".
FOR EDUCATIONAL PURPOSES ONLY, PLEASE SUPPORT THE DEVELOPPERS :)
Check BLACKLISTED for blacklisted 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
| def b64decode(string,alphabet): | |
| string = string.replace("=","") | |
| ret = "" | |
| left = 0 | |
| for i in range(0, len(string)): | |
| if left == 0: | |
| left = 6 | |
| else: | |
| value1 = alphabet.index(string[i - 1]) & (2 ** left - 1) | |
| value2 = alphabet.index(string[i]) >> (left - 2) |
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 textwrap, re, urllib | |
| parse_sig = re.compile( | |
| '\[(.*?)\]\s+?signature\s*=\s*(.*?)(\s+\?\?)*\s*ep_only\s*=\s*(\w+)(?:\s*section_start_only\s*=\s*(\w+)|)', re.S) | |
| sig_f = urllib.urlopen('userdb.txt') | |
| sig_data = sig_f.read() | |
| sig_f.close() | |
| sigs = parse_sig.findall(sig_data) | |
| for packer_name, signature, superfluous_wildcards, ep_only, section_start_only in sigs: | |
| print packer_name |
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
| # One liner | |
| wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
| # Explained | |
| wget \ | |
| --recursive \ # Download the whole site. | |
| --page-requisites \ # Get all assets/elements (CSS/JS/images). | |
| --adjust-extension \ # Save files with .html on the end. | |
| --span-hosts \ # Include necessary assets from offsite as well. | |
| --convert-links \ # Update links to still work in the static version. |
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
| #!/bin/bash | |
| # | |
| # Example script to install LibXL, ilia/php_excel on PHP 7.3 (ondrej/ppa) | |
| # | |
| # Usage: | |
| # > sudo ./install_phpexcel_php73.sh | |
| # > sudo service php7.3-fpm reload (if using fpm) | |
| # | |
| # Requirements: | |
| # - Tested with Ubuntu 64bits (14.04, 16.04+) |
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
| #!/bin/bash | |
| # | |
| # Example script to install LibXL, ilia/php_excel on PHP 7.2 (ondrej/ppa) | |
| # | |
| # Usage: | |
| # > sudo ./install_phpexcel_php72.sh | |
| # > sudo service php7.2-fpm reload (if using fpm) | |
| # | |
| # Requirements: | |
| # - Tested with Ubuntu 64bits (14.04, 16.04+) |
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
| #!/bin/bash | |
| if [ "$1" == "" ] || [ "$2" == "" ]; then | |
| echo "usage: $0 [options] <host> <port>" | |
| echo | |
| echo "options:" | |
| echo " -i <interval> Number of seconds between checks [default: 5]" | |
| exit 1 | |
| fi |
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
| #!/bin/bash | |
| # Boostrap a new CentOS VM (also works with RHEL!) | |
| # Has been used on CentOS 5.10, 6.2, 6.3, 6.4 and 6.5 | |
| # Based on https://gist.github.com/thickpaddy/1759284 | |
| # TODO: set ssh port | |
| if test $(whoami) != "root" ; then | |
| echo "Error: $0 must be run as root, exiting..." |
NewerOlder