From 5ee1d8d8f86185f65d219877d96eec13e4e33c6f Mon Sep 17 00:00:00 2001 From: "B. Caller" <73827525+b-c-ds@users.noreply.github.com> Date: Thu, 11 Mar 2021 11:13:47 +0000 Subject: [PATCH] Welcome to v1.0.0 --- regexploit/bin/regexploit.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/regexploit/bin/regexploit.py b/regexploit/bin/regexploit.py index 1049862..1665cfd 100644 --- a/regexploit/bin/regexploit.py +++ b/regexploit/bin/regexploit.py @@ -75,6 +75,8 @@ def main(): logging.basicConfig(level=logging.DEBUG) isatty = sys.stdin.isatty() + if isatty: + print("Welcome to Regexploit. Enter your regexes:") output = TextOutput() try: for line in fileinput.input(): diff --git a/setup.py b/setup.py index 8c63e30..be748dc 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="regexploit", - version="1.0.0rc1", + version="1.0.0", author="Ben Caller :: Doyensec", author_email="REMOVETHISPREFIX.ben@doyensec.com", description="Find regular expressions vulnerable to ReDoS",