Networking
Wireshark β Traffic analysis
Nmap β Port & device scanner
Snort β IDS/IPS
SolarWinds β Network monitoring
App Security
Burp Suite β Web testing
OWASP ZAP β Vulnerability scanner
Checkmarx β Code analysis
Veracode β App security testing
Cloud Security
Prisma Cloud β Cloud protection
AWS Security Hub β Alert center
Microsoft Defender β Threat defense
Lacework β Automation & workload security
Incident Response
TheHive β Response platform
SANS SIFT β Forensics toolkit
MISP β Threat intelligence
XPLico β Network forensics
β Use ethically: for defense, prevention, and learning β never misuse.
π9β€7
devmode is a programming tool when you are coding on your phone, it helps to filter files with symlinks.
pkg update && pkg upgrade
pkg install git rsync jq
git clone https://github.com/ezaco-dev/devmode.git
cd devmode
mkdir config
chmod +x devmode.sh
Create a shortcut
export DEVMODE_ALIAS="alias devmode='~/devmode/devmode.sh'"
[ -n "$PS1" ] && eval "$DEVMODE_ALIAS"
[ -n "$ZSH_VERSION" ] && source ~/.zshrc ([ -n "$BASH_VERSION" ] && source ~/.bashrc [ -f ~/.profile ] && source ~/.profile)
Command List
1. Creating workspace
devmode set-new-workspace
devmode set
2. Remove workspaces
devmode remove-workspace
devmode rm
3. Run the program
devmode run
devmode
β οΈFor more information and use of this tool in termux visit github link of this tool.
π¨βπ» @TERMUXCOMMANDD
β€15π3
ADBash allows you to automatically connect to your device's ADB Shell using a Bash shell from Termux. You don't need root access, making it suitable for most Android users. The tool simplifies the process of executing ADB commands and enhances your device's functionality.
Download & Install
To get ADBash, visit this page to download the latest version:
Download ADBash
GitHub link π
Download & Install
To get ADBash, visit this page to download the latest version:
Download ADBash
Download ADBash:
Run the following command in Termux:
wget [insert download link for ADBash]
Set Permissions:
Change the permissions to make the script executable:
chmod +x ADBash
Run ADBash:
Start ADBash by typing:
./ADBash
Connect Your Device:
Make sure your Android device is connected to your computer with USB debugging enabled.
Check Device Connection:
adb devices
Access Shell:
adb shell
Install an App:
adb install [app.apk]
GitHub link π
β οΈFor more information and use of this tool in termux visit github link of this tool.
π¨βπ» @TERMUXCOMMANDD
β€20π1
numbers = [1, 2, 3, 4]
numbers.append(5)
numbers.pop(1) print(numbers)
numbers.append(5)
numbers.pop(1) print(numbers)
Anonymous Poll
32%
A) [1, 2, 3, 5]
22%
B) [1, 3, 4, 5]
26%
C) [2, 3, 4, 5]
21%
D) [1, 2, 3, 4, 5]
β€6π1