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
#!/usr/bin/env python2 | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
# The author disclaims copyright to this source code. | |
import sys | |
import struct | |
import socket | |
import time | |
import select |
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
# Installation: | |
# Copy to ~/.config/fish/completions/magento.fish | |
# Open new or restart existing shell session | |
# Commands based on Magento 2.0.0-rc and the command | |
# bin/magento --raw --no-ansi list | |
# It is a static list since you probably do not have the magento shell script | |
# in your path. | |
complete -f -c magento -a --help; | |
complete -f -c magento -a -h; |