Tab Mapper

The tab mapper is a handy little tool that will render a guitar tab file with graphic chord diagrams displayed alongside. This comes in handy for people who just don't have every single chord shape memorized. Just plug in the web site address of a valid .tab or .crd file and hit "Go". In general, the tab mapper does a better job with printer friendly URLs. If there is more than one way to play a chord, the tab mapper will choose the most common shape. To see other fingerings, click on the chord diagram and you will be taken to the chord calculator.

Ddim chord {x x 0 1 3 1} chord

Original file located @ http://hackthesec.co.in.

Show me scales that sound good with the chords in this song: Do.

[root@hackthesec ~]# apt update -y
[root@hackthesec ~]# apt upgrade -y
[root@hackthesec ~]# apt install curl gnupg2 wget -y
[root@hackthesec ~]# curl https://download.jitsi.org/jitsi-key.gpg.key -o jitsi-key.gpg.key
gpg --output /usr/share/keyrings/jitsi-key.gpg --dearmor jitsi-key.gpg.key
[root@hackthesec ~]# nano /etc/apt/sources.list.d/jitsi-stable.list
[root@hackthesec ~]# deb [signed-by=/usr/share/keyrings/jitsi-key.gpg] https://download.jitsi.org stable/
[root@hackthesec ~]# curl https://prosody.im/files/prosody-debian-packages.key -o prosody-debian-packages.key
gpg --output /usr/share/keyrings/prosody-keyring.gpg --dearmor prosody-debian-packages.key
[root@hackthesec ~]# nano /etc/apt/sources.list.d/prosody.list
[root@hackthesec ~]# deb [signed-by=/usr/share/keyrings/prosody-keyring.gpg] http://packages.prosody.im/debian jammy main
[root@hackthesec ~]# apt install jitsi-meet -y
[root@hackthesec ~]# nano /etc/prosody/conf.avail/jitsi.hackthesec.co.in.cfg.lua
authentication = "internal_plain"
VirtualHost "guest.meet.hackthesec.co.in"
authentication = "anonymous"
c2s_require_encryption = false
modules_enabled = {
        "bosh";
        "ping";
        "pubsub";
        "speakerstats";
        "turncredentials";
        "conference_duration";
}
[root@hackthesec ~]# nano /etc/jitsi/meet/jitsi.hackthesec.co.in-config.js
anonymousdomain: 'guest.jitsi.hackthesec.co.in',
[root@hackthesec ~]# nano /etc/jitsi/jicofo/sip-communicator.properties
org.jitsi.jicofo.auth.URL=XMPP:jitsi.hackthesec.co.in
prosodyctl register user jitsi.hackthesec.co.in yourpassword
general             warn        Lua 5.1 has several issues and support is being phased out, consider upgrading
[root@hackthesec ~]# systemctl restart prosody.service jicofo.service jitsi-videobridge2.service
[root@hackthesec ~]# sudo apt install apache2 wget unzip
[root@hackthesec ~]# sudo apt install php php-zip php-json php-mbstring php-mysql 
[root@hackthesec ~]# sudo systemctl enable apache2 
[root@hackthesec ~]# sudo systemctl start apache2 
[root@hackthesec ~]# wget https://files.phpmyadmin.net/phpMyAdmin/5.2.0/phpMyAdmin-5.2.0-all-languages.zip 
[root@hackthesec ~]# unzip phpMyAdmin-5.2.0-all-languages.zip 
[root@hackthesec ~]# sudo mv phpMyAdmin-5.2.0-all-languages /usr/share/phpmyadmin 

[root@hackthesec ~]# sudo mkdir /usr/share/phpmyadmin/tmp 
[root@hackthesec ~]# sudo chown -R www-data:www-data /usr/share/phpmyadmin 
[root@hackthesec ~]#sudo chmod 777 /usr/share/phpmyadmin/tmp
[root@hackthesec ~]# sudo nano /etc/apache2/conf-available/phpmyadmin.conf
Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
 
<Directory /usr/share/phpmyadmin/>
   AddDefaultCharset UTF-8
   <IfModule mod_authz_core.c>
      <RequireAny>
      Require all granted
     </RequireAny>
   </IfModule>
</Directory>
 
<Directory /usr/share/phpmyadmin/setup/>
   <IfModule mod_authz_core.c>
     <RequireAny>
       Require all granted
     </RequireAny>
   </IfModule>
</Directory>
[root@hackthesec ~]# sudo a2enconf phpmyadmin 
[root@hackthesec ~]# sudo systemctl restart apache2
[root@hackthesec ~]# sudo firewall-cmd --permanent --add-service=http
[root@hackthesec ~]# sudo firewall-cmd --reload 
[root@hackthesec ~]# mysql
[root@hackthesec ~]# mysql -uroot -p
mysql> CREATE DATABASE  hackthesec;
Query OK, 1 row affected (0.01 sec)
 
mysql> CREATE USER 'hackthesec'@'localhost' IDENTIFIED BY 'Strong@password';
Query OK, 0 rows affected (0.01 sec)
 
mysql> GRANT ALL ON hackthesec.* TO 'hackthesec'@'localhost';
Query OK, 0 rows affected (0.01 sec)
 
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
http://your-server-ip-domain/phpmyadmin
[root@hackthesec]# apt-get install mysql-server
[root@hackthesec]# sudo mysql_secure_installation
[root@hackthesec]#
[root@hackthesec]# VALIDATE PASSWORD COMPONENT can be used to test passwords

and improve security. It checks the strength of password

and allows the users to set only those passwords which are

secure enough. Would you like to setup VALIDATE PASSWORD component?


Press y|Y for Yes, any other key for No: y

[root@hackthesec]# LOW    Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters

STRONG Length >= 8, numeric, mixed case, special characters and dictionary file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 1 
[root@hackthesec]# 

New password: *************

Re-enter new password: *************

Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y Remove anonymous users? (Press y|Y for Yes, any other key for No) : y Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
[root@hackthesec]# sudo mysql

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 14

Server version: 8.0.28-0ubuntu4 (Ubuntu)


Copyright (c) 2000, 2022, Oracle and/or its affiliates.


Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


mysql>

[root@hackthesec]#

Create a database named ?hackthesec?.

CREATE DATABASE hackthesec

Next, create a user named ?hackthesec? accessible from ?localhost? only.

CREATE USER 'hackthesec'@'localhost' IDENTIFIED BY 'Secure321'; 

Grant permissions on database to user.

GRANT ALL ON mydb.* to 'hackthesec'@'localhost'; 

Apply the permission changes at runtime.

FLUSH PRIVILEGES; 

[root@hackthesec]# sudo systemctl status mysql
[root@hackthesec]# sudo systemctl start mysql
[root@hackthesec]# sudo systemctl stop mysql
[root@hackthesec]# sudo systemctl restart mysql
yum -y install epel-release ; yum -y install wget zip unzip tar curl  && \
yum -y install nano net-tools curl wget gc gcc gcc-c++ pcre-devel zlib-devel make wget openssl-devel libxml2-devel libxslt-devel gd-devel perl-ExtUtils-Embed GeoIP-devel gperftools gperftools-devel perl-ExtUtils-Embed  && \
yum -y install screen htop iotop iptraf nano net-tools gcc automake libffi-devel zlib zlib-devel gcc gcc-c++ autoconf apr-util-devel gc gcc gcc-c++ pcre-devel zlib-devel make wget openssl openssl-devel libxml2-devel libxslt-devel gd-devel perl-ExtUtils-Embed GeoIP-devel gperftools gperftools-devel  perl-ExtUtils-Embed && \
yum -y install gnutls-utils sshpass rsync && \
yum -y install bind-utils sysstat bc tar curl wget gc gcc gcc-c++ pcre-devel zlib-devel make wget openssl-devel libxml2-devel libxslt-devel gd-devel perl-ExtUtils-Embed GeoIP-devel gperftools gperftools-devel perl-ExtUtils-Embed gcc automake autoconf apr-util-devel gc gcc gcc-c++ pcre-devel zlib-devel make wget openssl openssl-devel libxml2-devel libxslt-devel gd-devel perl-ExtUtils-Embed GeoIP-devel gperftools gperftools-devel perl-ExtUtils-Embed perl perl-devel perl-ExtUtils-Embed libxslt libxslt-devel libxml2 libxml2-devel gd gd-devel GeoIP GeoIP-devel gperftools-devel wget yum-utils make gcc openssl-devel bzip2-devel libffi-devel zlib-devel screen htop iotop iptraf nano net-tools gcc automake libffi-devel zlib zlib-devel gcc gcc-c++ autoconf apr-util-devel gc 
apt update; apt -y install wget zip unzip tar curl ca-certificates && \
apt install -y perl libperl-dev libgd3 libgd-dev libgeoip1 libgeoip-dev geoip-bin libxml2 libxml2-dev libxslt1.1 libxslt1-dev  && \
apt-get -y install build-essential libpcre3 libpcre3-dev zlib1g zlib1g-dev libssl-dev libgd-dev libxml2 libxml2-dev uuid-dev  && \
apt -y install curl wget build-essential checkinstall   && \
apt -y install net-tools sshpass rsync sysstat bc dnsutils  && \
apt -y install libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev
yum -y install libatomic_ops-devel 
apt -y install libreadline-gplv2-dev
wget https://files.voduy.com/vDDoS-Proxy-Protection/latest.sh ; chmod 700 latest.sh ; bash latest.sh
latest_version=2.3.3
wget https://files.voduy.com/vDDoS-Proxy-Protection/vddos-$latest_version.tar.gz
tar xvf vddos-$latest_version.tar.gz
chmod 700 *.sh
./install.sh


 1. MASTER
 2. SLAVE
 3. REMOVE ALL

 0. Exit

________________________________________________________
Enter your choice [1, 2, 3 or 0]: 


./install.sh master #(master/slave)

# nano /vddos/conf.d/website.conf

# Website       Listen               Backend                  Cache Security SSL-Prikey   SSL-CRTkey
default         http://0.0.0.0:80    http://127.0.0.1:8080    no    200      no           no
your-domain.com http://0.0.0.0:80    http://127.0.0.1:8080    no    200      no           no
default         https://0.0.0.0:443  https://127.0.0.1:8443   no    307      /vddos/ssl/your-domain.com.pri /vddos/ssl/your-domain.com.crt
your-domain.com https://0.0.0.0:443  https://127.0.0.1:8443   no    307      /vddos/ssl/your-domain.com.pri /vddos/ssl/your-domain.com.crt
your-domain.com https://0.0.0.0:4343 https://103.28.249.200:443 yes click    /vddos/ssl/your-domain.com.pri /vddos/ssl/your-domain.com.crt

vddos restart
nano /vddos/conf.d/website.conf
# Website       Listen               Backend                  Cache Security SSL-Prikey   SSL-CRTkey
default         http://0.0.0.0:80    http://127.0.0.1:8080    no    200      no           no
default         https://0.0.0.0:443  https://127.0.0.1:8443   no    200      /vddos/ssl/your-domain.com.pri /vddos/ssl/your-domain.com.crt
©2025 JGuitar.com