yttcom.net
Backend
/
Tools
/
DB Viewer
yttcom.net
Domains
/
DB Viewer
v2.0 · 07.11.26
◇ 30-app.db
systems/30-tech/data/
records.db
inbox.db
transfers.db
knowledge.db
jurisdiction.db
30-app
›
commands
Tables
commands
67
qa_log
38
scripts
14
shortcuts
52
sqlite_sequence
4
commands
67 rows
79
—
category: session
Five Checks — Clock / Tokens / Clarity / File Status / Runway — D296
▾
tap
id
79
library
ALL
cmd
5C
via
Session open
category
session
active
1
description
Five Checks — Clock / Tokens / Clarity / File Status / Runway — D296
⊞ Full detail →
78
—
category: Logs
Filter error log for fatal errors
▾
tap
id
78
library
server
cmd
grep -i fatal ~/logs/error_log | tail -20
via
ssh
category
Logs
active
1
description
Filter error log for fatal errors
⊞ Full detail →
77
—
category: Logs
Show last 50 lines of error log
▾
tap
id
77
library
server
cmd
tail -50 ~/logs/error_log
via
ssh
category
Logs
active
1
description
Show last 50 lines of error log
⊞ Full detail →
76
—
category: Logs
Follow PHP error log in real time
▾
tap
id
76
library
server
cmd
tail -f ~/logs/error_log
via
ssh
category
Logs
active
1
description
Follow PHP error log in real time
⊞ Full detail →
75
—
category: Permissions
List files with permissions in current dir
▾
tap
id
75
library
server
cmd
ls -la
via
ssh
category
Permissions
active
1
description
List files with permissions in current dir
⊞ Full detail →
74
—
category: Permissions
Set 644 on all files recursively
▾
tap
id
74
library
server
cmd
find . -type f -exec chmod 644 {} +
via
ssh
category
Permissions
active
1
description
Set 644 on all files recursively
⊞ Full detail →
73
—
category: Permissions
Set 755 on all directories recursively
▾
tap
id
73
library
server
cmd
find . -type d -exec chmod 755 {} +
via
ssh
category
Permissions
active
1
description
Set 755 on all directories recursively
⊞ Full detail →
72
—
category: Curl
Save curl response to a file
▾
tap
id
72
library
server
cmd
curl -s URL -o output.html
via
ssh
category
Curl
active
1
description
Save curl response to a file
⊞ Full detail →
71
—
category: Curl
POST form-encoded data
▾
tap
id
71
library
server
cmd
curl -s -X POST URL -d 'token=TOK&action=ping'
via
ssh
category
Curl
active
1
description
POST form-encoded data
⊞ Full detail →
70
—
category: Curl
Silent curl GET fetch to stdout
▾
tap
id
70
library
server
cmd
curl -s URL
via
ssh
category
Curl
active
1
description
Silent curl GET fetch to stdout
⊞ Full detail →
69
—
category: Process
Memory usage in human-readable format
▾
tap
id
69
library
server
cmd
free -h
via
ssh
category
Process
active
1
description
Memory usage in human-readable format
⊞ Full detail →
68
—
category: Process
Server uptime and load average
▾
tap
id
68
library
server
cmd
uptime
via
ssh
category
Process
active
1
description
Server uptime and load average
⊞ Full detail →
67
—
category: Process
Show running PHP processes
▾
tap
id
67
library
server
cmd
ps aux | grep php
via
ssh
category
Process
active
1
description
Show running PHP processes
⊞ Full detail →
66
—
category: SQLite
Count rows in a table
▾
tap
id
66
library
server
cmd
SELECT COUNT(*) FROM tablename;
via
sqlite3
category
SQLite
active
1
description
Count rows in a table
⊞ Full detail →
65
—
category: SQLite
Show CREATE statement for a table
▾
tap
id
65
library
server
cmd
.schema tablename
via
sqlite3
category
SQLite
active
1
description
Show CREATE statement for a table
⊞ Full detail →
64
—
category: SQLite
List all tables (run inside sqlite3)
▾
tap
id
64
library
server
cmd
.tables
via
sqlite3
category
SQLite
active
1
description
List all tables (run inside sqlite3)
⊞ Full detail →
63
—
category: SQLite
Open a SQLite database in the shell
▾
tap
id
63
library
server
cmd
sqlite3 path/to/db.db
via
ssh
category
SQLite
active
1
description
Open a SQLite database in the shell
⊞ Full detail →
62
—
category: Files
Show size of a specific file
▾
tap
id
62
library
server
cmd
du -h filename.txt
via
ssh
category
Files
active
1
description
Show size of a specific file
⊞ Full detail →
61
—
category: Files
Count files in current directory
▾
tap
id
61
library
server
cmd
ls -1 | wc -l
via
ssh
category
Files
active
1
description
Count files in current directory
⊞ Full detail →
60
—
category: Files
Find all PHP files from current dir
▾
tap
id
60
library
server
cmd
find . -name '*.php' -type f
via
ssh
category
Files
active
1
description
Find all PHP files from current dir
⊞ Full detail →
59
—
category: Files
Show current disk quota usage
▾
tap
id
59
library
server
cmd
quota -s
via
ssh
category
Files
active
1
description
Show current disk quota usage
⊞ Full detail →
58
—
category: Files
Size of each item in home directory
▾
tap
id
58
library
server
cmd
du -sh ~/*
via
ssh
category
Files
active
1
description
Size of each item in home directory
⊞ Full detail →
57
—
Move or rename a file or folder
▾
tap
id
57
library
android
cmd
mv [source] [dest]
via
Termux
category
—
active
1
description
Move or rename a file or folder
⊞ Full detail →
56
—
Copy folder recursively
▾
tap
id
56
library
android
cmd
cp -r [source] [dest]
via
Termux
category
—
active
1
description
Copy folder recursively
⊞ Full detail →
55
—
Delete folder and all contents - IRREVERSIBLE - use with care
▾
tap
id
55
library
android
cmd
rm -rf [folder]
via
Termux
category
—
active
1
description
Delete folder and all contents - IRREVERSIBLE - use with care
⊞ Full detail →
54
—
Count all files in a folder recursively
▾
tap
id
54
library
android
cmd
find [folder] -type f | wc -l
via
Termux
category
—
active
1
description
Count all files in a folder recursively
⊞ Full detail →
53
—
Show total size of a specific folder
▾
tap
id
53
library
android
cmd
du -sh /storage/emulated/0/[folder]
via
Termux
category
—
active
1
description
Show total size of a specific folder
⊞ Full detail →
52
—
Show disk usage and available storage
▾
tap
id
52
library
android
cmd
df -h
via
Termux
category
—
active
1
description
Show disk usage and available storage
⊞ Full detail →
51
—
List Termux home folder including hidden files
▾
tap
id
51
library
android
cmd
ls -la ~/
via
Termux
category
—
active
1
description
List Termux home folder including hidden files
⊞ Full detail →
50
—
List phone storage root - confirms storage access working
▾
tap
id
50
library
android
cmd
ls /storage/emulated/0/
via
Termux
category
—
active
1
description
List phone storage root - confirms storage access working
⊞ Full detail →
49
—
Run a Python script from home folder
▾
tap
id
49
library
android
cmd
python3 ~/script.py
via
Termux
category
—
active
1
description
Run a Python script from home folder
⊞ Full detail →
48
—
Verify Python is installed
▾
tap
id
48
library
android
cmd
python3 --version
via
Termux
category
—
active
1
description
Verify Python is installed
⊞ Full detail →
47
—
List all installed Termux packages
▾
tap
id
47
library
android
cmd
pkg list-installed
via
Termux
category
—
active
1
description
List all installed Termux packages
⊞ Full detail →
46
—
Install nano text editor
▾
tap
id
46
library
android
cmd
pkg install nano
via
Termux
category
—
active
1
description
Install nano text editor
⊞ Full detail →
45
—
Install Git
▾
tap
id
45
library
android
cmd
pkg install git
via
Termux
category
—
active
1
description
Install Git
⊞ Full detail →
44
—
Install Python 3.x (approx 105MB)
▾
tap
id
44
library
android
cmd
pkg install python
via
Termux
category
—
active
1
description
Install Python 3.x (approx 105MB)
⊞ Full detail →
43
—
Update all Termux packages
▾
tap
id
43
library
android
cmd
pkg update && pkg upgrade
via
Termux
category
—
active
1
description
Update all Termux packages
⊞ Full detail →
42
—
Base path to view local files in Chrome browser on Android - navigate from here to open HTML files
▾
tap
id
42
library
android
cmd
file:///storage/emulated/0/
via
Chrome Android
category
—
active
1
description
Base path to view local files in Chrome browser on Android - navigate from here to open HTML files
⊞ Full detail →
41
—
Shows current Windows username in format computername\username
▾
tap
id
41
library
android
cmd
whoami
via
Windows Command Prompt
category
—
active
1
description
Shows current Windows username in format computername\username
⊞ Full detail →
40
—
Shows network information including IPv4 address - use to find laptop IP for X-plore/LAN connection
▾
tap
id
40
library
android
cmd
ipconfig
via
Windows Command Prompt
category
—
active
1
description
Shows network information including IPv4 address - use to find laptop IP for X-plore/LAN connection
⊞ Full detail →
39
—
Grant Termux access to phone storage - run once on fresh install
▾
tap
id
39
library
android
cmd
termux-setup-storage
via
Termux
category
—
active
1
description
Grant Termux access to phone storage - run once on fresh install
⊞ Full detail →
38
—
Uninstall app by its winget ID — works for apps not in Settings
▾
tap
id
38
library
windows
cmd
winget uninstall [AppId]
via
PowerShell
category
—
active
1
description
Uninstall app by its winget ID — works for apps not in Settings
⊞ Full detail →
37
—
Update all apps that have winget packages available
▾
tap
id
37
library
windows
cmd
winget upgrade --all
via
PowerShell
category
—
active
1
description
Update all apps that have winget packages available
⊞ Full detail →
36
—
List all installed apps with version info (requires winget)
▾
tap
id
36
library
windows
cmd
winget list
via
PowerShell
category
—
active
1
description
List all installed apps with version info (requires winget)
⊞ Full detail →
35
—
List all installed Store apps
▾
tap
id
35
library
windows
cmd
Get-AppxPackage
via
PowerShell
category
—
active
1
description
List all installed Store apps
⊞ Full detail →
34
—
Repair Windows image — run before sfc if sfc fails
▾
tap
id
34
library
windows
cmd
DISM /Online /Cleanup-Image /RestoreHealth
via
PowerShell (Admin)
category
—
active
1
description
Repair Windows image — run before sfc if sfc fails
⊞ Full detail →
33
—
System File Checker — scans and repairs corrupt Windows files
▾
tap
id
33
library
windows
cmd
sfc /scannow
via
PowerShell (Admin)
category
—
active
1
description
System File Checker — scans and repairs corrupt Windows files
⊞ Full detail →
32
—
Flush DNS cache — fixes some connection issues
▾
tap
id
32
library
windows
cmd
ipconfig /flushdns
via
PowerShell/CMD
category
—
active
1
description
Flush DNS cache — fixes some connection issues
⊞ Full detail →
31
—
Full network adapter info including MAC address and DNS
▾
tap
id
31
library
windows
cmd
ipconfig /all
via
PowerShell/CMD
category
—
active
1
description
Full network adapter info including MAC address and DNS
⊞ Full detail →
30
—
Show all active network connections and listening ports
▾
tap
id
30
library
windows
cmd
netstat -an
via
PowerShell/CMD
category
—
active
1
description
Show all active network connections and listening ports
⊞ Full detail →
29
—
Open Windows Settings app directly
▾
tap
id
29
library
windows
cmd
ms-settings:
via
Win+R
category
—
active
1
description
Open Windows Settings app directly
⊞ Full detail →
28
—
Classic Control Panel
▾
tap
id
28
library
windows
cmd
control
via
Win+R
category
—
active
1
description
Classic Control Panel
⊞ Full detail →
27
—
Programs and Features — traditional uninstall list
▾
tap
id
27
library
windows
cmd
appwiz.cpl
via
Win+R
category
—
active
1
description
Programs and Features — traditional uninstall list
⊞ Full detail →
26
—
Network Connections — view and configure network adapters
▾
tap
id
26
library
windows
cmd
ncpa.cpl
via
Win+R
category
—
active
1
description
Network Connections — view and configure network adapters
⊞ Full detail →
25
—
Disk Cleanup — free up space, remove temp files
▾
tap
id
25
library
windows
cmd
cleanmgr
via
Win+R
category
—
active
1
description
Disk Cleanup — free up space, remove temp files
⊞ Full detail →
24
—
Group Policy Editor — Pro/Enterprise editions only
▾
tap
id
24
library
windows
cmd
gpedit.msc
via
Win+R
category
—
active
1
description
Group Policy Editor — Pro/Enterprise editions only
⊞ Full detail →
23
—
Disk Management — partitions, drive letters, formatting
▾
tap
id
23
library
windows
cmd
diskmgmt.msc
via
Win+R
category
—
active
1
description
Disk Management — partitions, drive letters, formatting
⊞ Full detail →
22
—
Device Manager — drivers, hardware, update devices
▾
tap
id
22
library
windows
cmd
devmgmt.msc
via
Win+R
category
—
active
1
description
Device Manager — drivers, hardware, update devices
⊞ Full detail →
21
—
Event Viewer — system logs and error history
▾
tap
id
21
library
windows
cmd
eventvwr
via
Win+R
category
—
active
1
description
Event Viewer — system logs and error history
⊞ Full detail →
20
—
Windows Services — enable/disable background services
▾
tap
id
20
library
windows
cmd
services.msc
via
Win+R
category
—
active
1
description
Windows Services — enable/disable background services
⊞ Full detail →
19
—
Registry Editor — run as Admin
▾
tap
id
19
library
windows
cmd
regedit
via
Win+R
category
—
active
1
description
Registry Editor — run as Admin
⊞ Full detail →
18
—
System Configuration — startup, services, boot options
▾
tap
id
18
library
windows
cmd
msconfig
via
Win+R
category
—
active
1
description
System Configuration — startup, services, boot options
⊞ Full detail →
17
—
Shows all Windows user accounts on this computer
▾
tap
id
17
library
windows
cmd
control userpasswords2
via
Win+R
category
—
active
1
description
Shows all Windows user accounts on this computer
⊞ Full detail →
16
—
Opens Command Prompt
▾
tap
id
16
library
windows
cmd
cmd
via
Win+R
category
—
active
1
description
Opens Command Prompt
⊞ Full detail →
15
—
Shows current Windows username in format computername\username
▾
tap
id
15
library
windows
cmd
whoami
via
Command Prompt
category
—
active
1
description
Shows current Windows username in format computername\username
⊞ Full detail →
14
—
Shows network info including IPv4 address - use to find laptop IP for LAN/X-plore connections
▾
tap
id
14
library
windows
cmd
ipconfig
via
Command Prompt
category
—
active
1
description
Shows network info including IPv4 address - use to find laptop IP for LAN/X-plore connections
⊞ Full detail →
13
—
System Properties — performance, computer name, remote desktop
▾
tap
id
13
library
windows
cmd
sysdm.cpl
via
Win+R
category
—
active
1
description
System Properties — performance, computer name, remote desktop
⊞ Full detail →
Backend
Domains
Panel
DB Viewer
Transfers