Upload files to "/"

This commit is contained in:
2026-05-11 11:33:26 +00:00
parent 88ce6dd934
commit e5e9e05c63
2 changed files with 41 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
clear
echo Target:
read x
echo 'Running Nmap scan...'
nmap -A -v -sV -sC -Pn --script vulners,http-sql-injection,http-unsafe-output-escaping,http-enum.nse $x
echo 'Done.'
read -n1
clear
+31
View File
@@ -0,0 +1,31 @@
#!/bin/bash
# NETWORK TEST
clear
echo "==============================="
echo "TESTING NETWORK CONNECTION..."
echo "==============================="
echo "_______________________________"
echo "CHECKING IP ADDRESS..."
echo "IP ADDRESS:"
curl ifconfig.me; echo
echo "-------------------------------"
echo "_______________________________"
echo "TESTING CLOUDFLARE DNS..."
ping -c 3 1.1.1.1
echo "-------------------------------"
echo "_______________________________"
echo "TESTING GOOGLE DNS..."
ping -c 3 8.8.8.8
echo "-------------------------------"
echo "_______________________________"
echo "TESTING QUAD9 DNS..."
ping -c 3 9.9.9.9
echo "-------------------------------"
echo "_______________________________"
echo "TESTING NETWORK SPEED..."
speedtest-cli
echo "-------------------------------"
echo "DONE."
echo "==============================="