├── .gitignore ├── .travis.yml ├── README.md ├── bin └── n98-magerun ├── composer.json ├── config ├── rules │ └── best64.rule └── wordlists │ ├── 1.txt │ ├── 100.txt │ ├── 1000.txt │ └── vendors.txt ├── debian ├── .gitignore ├── changelog ├── compat ├── control ├── docs ├── magerun-hypernode.dirs ├── magerun-hypernode.install └── rules ├── index.html ├── modman ├── n98-magerun.yaml ├── n98-magerun2.yaml ├── phpunit.xml.dist ├── runtests.sh ├── src └── Hypernode │ ├── Curl.php │ ├── Magento │ ├── Command │ │ ├── AbstractHypernodeCommand.php │ │ └── Hypernode │ │ │ ├── Config │ │ │ └── GenerateMapsCommand.php │ │ │ ├── Crack │ │ │ ├── AbstractCrackCommand.php │ │ │ ├── AdminPasswordCommand.php │ │ │ └── ApiKeyCommand.php │ │ │ ├── Log │ │ │ └── ParseLogCommand.php │ │ │ ├── Modules │ │ │ └── ListUpdatesCommand.php │ │ │ ├── Patches │ │ │ └── ListCommand.php │ │ │ ├── Performance │ │ │ └── PerformanceCommand.php │ │ │ └── Varnish │ │ │ ├── ConfigSaveCommand.php │ │ │ └── VarnishFlushCommand.php │ └── PasswordCracker │ │ ├── Engine │ │ ├── AbstractEngine.php │ │ ├── Hashcat.php │ │ └── PHP.php │ │ ├── EngineFactory.php │ │ └── Wordlist │ │ └── Generator.php │ ├── PasswordCracker │ ├── Cracker.php │ ├── Credential.php │ ├── FileIterator.php │ ├── FilesIterator.php │ ├── MutatedWordIterator.php │ ├── Mutator │ │ ├── AbstractMutator.php │ │ ├── AppendCharacter.php │ │ ├── AppendMemory.php │ │ ├── AsciiDecrement.php │ │ ├── AsciiIncrement.php │ │ ├── BitwiseShiftLeft.php │ │ ├── BitwiseShiftRight.php │ │ ├── Capitalize.php │ │ ├── DeleteAtN.php │ │ ├── Duplicate.php │ │ ├── DuplicateAll.php │ │ ├── DuplicateBlockBack.php │ │ ├── DuplicateBlockFront.php │ │ ├── DuplicateFirstN.php │ │ ├── DuplicateLastN.php │ │ ├── DuplicateN.php │ │ ├── ExtractMemory.php │ │ ├── ExtractRange.php │ │ ├── InsertAtN.php │ │ ├── InvertCapitalize.php │ │ ├── Lowercase.php │ │ ├── Memorize.php │ │ ├── MutatorInterface.php │ │ ├── Nothing.php │ │ ├── OmitRange.php │ │ ├── OverwriteAtN.php │ │ ├── PrependCharacter.php │ │ ├── PrependMemory.php │ │ ├── Purge.php │ │ ├── Reflect.php │ │ ├── Replace.php │ │ ├── ReplaceNMinusOne.php │ │ ├── ReplaceNPlusOne.php │ │ ├── Reverse.php │ │ ├── RotateLeft.php │ │ ├── RotateRight.php │ │ ├── SwapAtN.php │ │ ├── SwapBack.php │ │ ├── SwapFront.php │ │ ├── Title.php │ │ ├── ToggleAt.php │ │ ├── ToggleCase.php │ │ ├── TruncateAtN.php │ │ ├── TruncateLeft.php │ │ ├── TruncateRight.php │ │ └── Uppercase.php │ ├── Rule.php │ ├── RuleFactory.php │ └── RuleIterator.php │ └── Util │ ├── FileResolver.php │ ├── FileSystem.php │ └── RollingCurlX.php └── tests ├── Hypernode ├── Magento │ └── Command │ │ ├── AbstractHypernodeCommandTest.php │ │ └── Hypernode │ │ ├── Config │ │ └── GenerateMapsCommandTest.php │ │ ├── Crack │ │ └── AdminPasswordCommandTest.php │ │ ├── Log │ │ └── ParseLogCommandTest.php │ │ ├── Modules │ │ └── ListUpdatesCommandTest.php │ │ ├── Patches │ │ └── ListCommandTest.php │ │ ├── Performance │ │ └── PerformanceCommandTest.php │ │ └── Varnish │ │ ├── ConfigSaveCommandTest.php │ │ └── VarnishFlushCommandTest.php ├── PasswordCracker │ ├── CrackerTest.php │ ├── CredentialTest.php │ ├── FileIteratorTest.php │ ├── FilesIteratorTest.php │ ├── MutatedWordIteratorTest.php │ ├── Mutator │ │ ├── AbstractMutatorTest.php │ │ ├── AppendCharacterTest.php │ │ ├── AppendMemoryTest.php │ │ ├── AsciiDecrementTest.php │ │ ├── AsciiIncrementTest.php │ │ ├── BitwiseShiftLeftTest.php │ │ ├── BitwiseShiftRightTest.php │ │ ├── CapitalizeTest.php │ │ ├── DeleteAtNTest.php │ │ ├── DuplicateAllTest.php │ │ ├── DuplicateBlockBackTest.php │ │ ├── DuplicateBlockFrontTest.php │ │ ├── DuplicateFirstNTest.php │ │ ├── DuplicateLastNTest.php │ │ ├── DuplicateNTest.php │ │ ├── DuplicateTest.php │ │ ├── ExtractMemoryTest.php │ │ ├── ExtractRangeTest.php │ │ ├── InsertAtNTest.php │ │ ├── InvertCapitalizeTest.php │ │ ├── LowercaseTest.php │ │ ├── MemorizeTest.php │ │ ├── NothingTest.php │ │ ├── OmitRangeTest.php │ │ ├── OverwriteAtNTest.php │ │ ├── PrependCharacterTest.php │ │ ├── PrependMemoryTest.php │ │ ├── PurgeTest.php │ │ ├── ReflectTest.php │ │ ├── ReplaceNMinusOneTest.php │ │ ├── ReplaceNPlusOneTest.php │ │ ├── ReplaceTest.php │ │ ├── ReverseTest.php │ │ ├── RotateLeftTest.php │ │ ├── RotateRightTest.php │ │ ├── SwapAtNTest.php │ │ ├── SwapBackTest.php │ │ ├── SwapFrontTest.php │ │ ├── TitleTest.php │ │ ├── ToggleAtTest.php │ │ ├── ToggleCaseTest.php │ │ ├── TruncateAtNTest.php │ │ ├── TruncateLeftTest.php │ │ ├── TruncateRightTest.php │ │ └── UppercaseTest.php │ └── RuleTest.php └── Util │ └── FileResolverTest.php ├── bootstrap.php └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/README.md -------------------------------------------------------------------------------- /bin/n98-magerun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/bin/n98-magerun -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/composer.json -------------------------------------------------------------------------------- /config/rules/best64.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/config/rules/best64.rule -------------------------------------------------------------------------------- /config/wordlists/1.txt: -------------------------------------------------------------------------------- 1 | 123456 2 | -------------------------------------------------------------------------------- /config/wordlists/100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/config/wordlists/100.txt -------------------------------------------------------------------------------- /config/wordlists/1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/config/wordlists/1000.txt -------------------------------------------------------------------------------- /config/wordlists/vendors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/config/wordlists/vendors.txt -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- 1 | debhelper-build-stamp 2 | *.log 3 | *.substvars 4 | files 5 | */* 6 | 7 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/debian/control -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/magerun-hypernode.dirs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/magerun-hypernode.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/debian/magerun-hypernode.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/debian/rules -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/index.html -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/modman -------------------------------------------------------------------------------- /n98-magerun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/n98-magerun.yaml -------------------------------------------------------------------------------- /n98-magerun2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/n98-magerun2.yaml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/runtests.sh -------------------------------------------------------------------------------- /src/Hypernode/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Curl.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/AbstractHypernodeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/AbstractHypernodeCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Config/GenerateMapsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Config/GenerateMapsCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Crack/AbstractCrackCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Crack/AbstractCrackCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Crack/AdminPasswordCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Crack/AdminPasswordCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Crack/ApiKeyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Crack/ApiKeyCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Log/ParseLogCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Log/ParseLogCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Modules/ListUpdatesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Modules/ListUpdatesCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Patches/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Patches/ListCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Performance/PerformanceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Performance/PerformanceCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Varnish/ConfigSaveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Varnish/ConfigSaveCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/Command/Hypernode/Varnish/VarnishFlushCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/Command/Hypernode/Varnish/VarnishFlushCommand.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/PasswordCracker/Engine/AbstractEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/PasswordCracker/Engine/AbstractEngine.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/PasswordCracker/Engine/Hashcat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/PasswordCracker/Engine/Hashcat.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/PasswordCracker/Engine/PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/PasswordCracker/Engine/PHP.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/PasswordCracker/EngineFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/PasswordCracker/EngineFactory.php -------------------------------------------------------------------------------- /src/Hypernode/Magento/PasswordCracker/Wordlist/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Magento/PasswordCracker/Wordlist/Generator.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Cracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Cracker.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Credential.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Credential.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/FileIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/FileIterator.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/FilesIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/FilesIterator.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/MutatedWordIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/MutatedWordIterator.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/AbstractMutator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/AbstractMutator.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/AppendCharacter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/AppendCharacter.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/AppendMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/AppendMemory.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/AsciiDecrement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/AsciiDecrement.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/AsciiIncrement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/AsciiIncrement.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/BitwiseShiftLeft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/BitwiseShiftLeft.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/BitwiseShiftRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/BitwiseShiftRight.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Capitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Capitalize.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/DeleteAtN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/DeleteAtN.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Duplicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Duplicate.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/DuplicateAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/DuplicateAll.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/DuplicateBlockBack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/DuplicateBlockBack.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/DuplicateBlockFront.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/DuplicateBlockFront.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/DuplicateFirstN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/DuplicateFirstN.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/DuplicateLastN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/DuplicateLastN.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/DuplicateN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/DuplicateN.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/ExtractMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/ExtractMemory.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/ExtractRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/ExtractRange.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/InsertAtN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/InsertAtN.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/InvertCapitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/InvertCapitalize.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Lowercase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Lowercase.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Memorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Memorize.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/MutatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/MutatorInterface.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Nothing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Nothing.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/OmitRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/OmitRange.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/OverwriteAtN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/OverwriteAtN.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/PrependCharacter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/PrependCharacter.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/PrependMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/PrependMemory.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Purge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Purge.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Reflect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Reflect.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Replace.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/ReplaceNMinusOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/ReplaceNMinusOne.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/ReplaceNPlusOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/ReplaceNPlusOne.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Reverse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Reverse.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/RotateLeft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/RotateLeft.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/RotateRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/RotateRight.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/SwapAtN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/SwapAtN.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/SwapBack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/SwapBack.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/SwapFront.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/SwapFront.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Title.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/ToggleAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/ToggleAt.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/ToggleCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/ToggleCase.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/TruncateAtN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/TruncateAtN.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/TruncateLeft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/TruncateLeft.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/TruncateRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/TruncateRight.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Mutator/Uppercase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Mutator/Uppercase.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/Rule.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/RuleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/RuleFactory.php -------------------------------------------------------------------------------- /src/Hypernode/PasswordCracker/RuleIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/PasswordCracker/RuleIterator.php -------------------------------------------------------------------------------- /src/Hypernode/Util/FileResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Util/FileResolver.php -------------------------------------------------------------------------------- /src/Hypernode/Util/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Util/FileSystem.php -------------------------------------------------------------------------------- /src/Hypernode/Util/RollingCurlX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/src/Hypernode/Util/RollingCurlX.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/AbstractHypernodeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/AbstractHypernodeCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/Hypernode/Config/GenerateMapsCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/Hypernode/Config/GenerateMapsCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/Hypernode/Crack/AdminPasswordCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/Hypernode/Crack/AdminPasswordCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/Hypernode/Log/ParseLogCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/Hypernode/Log/ParseLogCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/Hypernode/Modules/ListUpdatesCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/Hypernode/Modules/ListUpdatesCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/Hypernode/Patches/ListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/Hypernode/Patches/ListCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/Hypernode/Performance/PerformanceCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/Hypernode/Performance/PerformanceCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/Hypernode/Varnish/ConfigSaveCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/Hypernode/Varnish/ConfigSaveCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Magento/Command/Hypernode/Varnish/VarnishFlushCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Magento/Command/Hypernode/Varnish/VarnishFlushCommandTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/CrackerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/CrackerTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/CredentialTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/CredentialTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/FileIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/FileIteratorTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/FilesIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/FilesIteratorTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/MutatedWordIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/MutatedWordIteratorTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/AbstractMutatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/AbstractMutatorTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/AppendCharacterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/AppendCharacterTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/AppendMemoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/AppendMemoryTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/AsciiDecrementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/AsciiDecrementTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/AsciiIncrementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/AsciiIncrementTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/BitwiseShiftLeftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/BitwiseShiftLeftTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/BitwiseShiftRightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/BitwiseShiftRightTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/CapitalizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/CapitalizeTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/DeleteAtNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/DeleteAtNTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/DuplicateAllTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/DuplicateAllTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/DuplicateBlockBackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/DuplicateBlockBackTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/DuplicateBlockFrontTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/DuplicateBlockFrontTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/DuplicateFirstNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/DuplicateFirstNTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/DuplicateLastNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/DuplicateLastNTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/DuplicateNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/DuplicateNTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/DuplicateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/DuplicateTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ExtractMemoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ExtractMemoryTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ExtractRangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ExtractRangeTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/InsertAtNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/InsertAtNTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/InvertCapitalizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/InvertCapitalizeTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/LowercaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/LowercaseTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/MemorizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/MemorizeTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/NothingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/NothingTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/OmitRangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/OmitRangeTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/OverwriteAtNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/OverwriteAtNTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/PrependCharacterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/PrependCharacterTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/PrependMemoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/PrependMemoryTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/PurgeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/PurgeTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ReflectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ReflectTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ReplaceNMinusOneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ReplaceNMinusOneTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ReplaceNPlusOneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ReplaceNPlusOneTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ReplaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ReplaceTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ReverseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ReverseTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/RotateLeftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/RotateLeftTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/RotateRightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/RotateRightTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/SwapAtNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/SwapAtNTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/SwapBackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/SwapBackTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/SwapFrontTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/SwapFrontTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/TitleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/TitleTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ToggleAtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ToggleAtTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/ToggleCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/ToggleCaseTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/TruncateAtNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/TruncateAtNTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/TruncateLeftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/TruncateLeftTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/TruncateRightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/TruncateRightTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/Mutator/UppercaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/Mutator/UppercaseTest.php -------------------------------------------------------------------------------- /tests/Hypernode/PasswordCracker/RuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/PasswordCracker/RuleTest.php -------------------------------------------------------------------------------- /tests/Hypernode/Util/FileResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/Hypernode/Util/FileResolverTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypernode/hypernode-magerun/HEAD/tests/readme.md --------------------------------------------------------------------------------