Skip to content

A little but functional script that let you search in several databaes for an input string.

License

Notifications You must be signed in to change notification settings

dueclic/dbseeker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DBSeeker

Built with Python3 PyPI version License Contributors

Description:

A little but functional script that lets you search on every database of a MySQL server for an input string. It will print the results in a table format, indicating which table contains the search term, in which database, how many rows were found and the time it took to search.

Please note that this project is still in alpha stage, so you may encounter bugs and missing features.

Usage:

DBSeeker uses argparse to parse command line arguments. You can run python dbseeker.py -h to see this help message:

usage: dbseeker.py [-h] -a address -P port -u user [-p password] [-d database | -bl blacklist] -s search


  -h, --help            
                        To show this help message and exit
  -a address, --address address
                        To Enter the host address
  -P port, --port port  
                        To Enter the port
  -u user, --user user  
                        To Enter the user
  -p password, --password password
                        To Enter the password
  -d database, --database database
                        To Enter databases you want to search in
  -bl blacklist, --blacklist blacklist
                        To Enter databases you want to be excluded, separated by commas
  -s search, --search search
                        To Enter the search term

Please note that -d and -bl are mutually exclusive;

Square brackets indicate optional arguments;

At the moment DBSeeker will accept a minimum of 3 characters for the search term, but it may be changed in the future;

If your search string does include whitespaces, please remember to use quotes.

Dependencies:

Since 'argparse' and 'time' should be both included in your python environment you just need to install the following dependencies:

  • mysql-connector-python
  • tabulate

as referred in the requirements.txt file.

Contributors

As always, thanks to our amazing contributors!

Installation:

Inside the project folder, create a new virtual environment, then simply run

pip install -r requirements.txt

Or you can simply run

pip install dbseeker

About

A little but functional script that let you search in several databaes for an input string.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages