bcoles/ssrf_proxy

View on GitHub
lib/ssrf_proxy/banner.rb

Summary

Maintainability
A
0 mins
Test Coverage
#
# Copyright (c) 2015-2017 Brendan Coles <bcoles@gmail.com>
# SSRF Proxy - https://github.com/bcoles/ssrf_proxy
# See the file 'LICENSE.md' for copying permission
#

module SSRFProxy
  # Elite font ASCII art from: http://patorjk.com/software/taag/
  BANNER = "                                                         \n" \
           "  .▄▄ · .▄▄ · ▄▄▄  ·▄▄▄     ▄▄▄·▄▄▄        ▐▄• ▄  ▄· ▄▌  \n" \
           "  ▐█ ▀. ▐█ ▀. ▀▄ █·▐▄▄·    ▐█ ▄█▀▄ █·▪      █▌█▌▪▐█▪██▌  \n" \
           "  ▄▀▀▀█▄▄▀▀▀█▄▐▀▀▄ ██▪      ██▀·▐▀▀▄  ▄█▀▄  ·██· ▐█▌▐█▪  \n" \
           "  ▐█▄▪▐█▐█▄▪▐█▐█•█▌██▌.    ▐█▪·•▐█•█▌▐█▌.▐▌▪▐█·█▌ ▐█▀·.  \n" \
           "   ▀▀▀▀  ▀▀▀▀ .▀  ▀▀▀▀     .▀   .▀  ▀ ▀█▄▀▪•▀▀ ▀▀  ▀ •   \n".freeze
end