Add angry IP scanner app
parent
da07a38328
commit
f904a4fc03
@ -0,0 +1,4 @@
|
||||
Added to pi-apps by Itai-Nelken.
|
||||
|
||||
Big thanks to chunky-milk for finding that this app works on the rpi.
|
||||
https://github.com/chunky-milk/pi-bashscripts-files/tree/main/angry-ip-scanner
|
||||
@ -0,0 +1,6 @@
|
||||
Scans local networks as well as Internet
|
||||
IP Range, Random or file in any format.
|
||||
Exports results into many formats,
|
||||
Extensible with many data fetchers,
|
||||
Provides command-line interface,
|
||||
Free and open-source.
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 5.3 KiB |
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
cd $HOME
|
||||
wget https://github.com/angryip/ipscan/releases/download/3.7.3/ipscan_3.7.3_all.deb
|
||||
# Get dependencies
|
||||
"${DIRECTORY}/pkg-install" "openjdk-11-jdk rpm fakeroot" "$(dirname "$0")" || exit 1
|
||||
sudo apt --fix-broken -y install ~/ipscan_3.7.3_all.deb
|
||||
rm ~/ipscan_3.7.3_all.deb
|
||||
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
sudo apt purge -y ipscan
|
||||
|
||||
#if your app installs any packages, keep this command here so those packages will be removed.
|
||||
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1
|
||||
@ -0,0 +1 @@
|
||||
https://angryip.org
|
||||
Loading…
Reference in New Issue