You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 19, 2023. It is now read-only.
Hashview has been installed and tested on debian/ubuntu based systems. However, in theory it should run successfully on any OS so long as it can reach a mysqldb (either local or remote) and run python3.6 or newer. The following instructions are on how to setup Hashview on Debian.
Create Mysql db with dedicated user for hashview to use
sudo mysql -u root -p
CREATE DATABASE hashview;
CREATE USER hashview@localhost identified by 'PASSWORD_HERE';
GRANT ALL ON hashview.* TO 'hashview'@'localhost';
# Optional but highly recommended... change/set the password for the root account
ALTER USER 'root'@'localhost' IDENTIFIED BY 'PASSWORD_HERE'
exit