Angry IP Scanner - fast and friendly network scanner
Go to file
2022-01-17 00:42:02 +02:00
.github try building on older ubuntu to see if it can install wine 2022-01-01 17:17:45 +02:00
.idea try specifying LSArchitecturePriority - according to Apple, this will run "script" application with the native architecture 2022-01-12 20:50:28 +02:00
config better hint in logging.properties file, more dictionary entries 2008-03-02 15:11:28 +00:00
ext update copyright year 2022-01-16 15:09:27 +02:00
gradle/wrapper upgrade gradle & proguard to support building under Java 17 2021-12-31 17:10:32 +02:00
resources update mac vendors again 2022-01-16 23:31:16 +02:00
src/net/azib/ipscan ARPPingerTest fails on mac, let's see if JavaPinger will work better as a trigger 2022-01-16 23:23:18 +02:00
test/net/azib/ipscan do not create gui, so that these tests can run on mac 2022-01-16 22:53:33 +02:00
.gitignore ignore src zips 2020-05-18 00:16:58 +03:00
build-native-image.sh allow changing of mac separator 2020-12-27 22:22:11 +02:00
build.gradle it seems that duplicate strategy is not needed anymore 2022-01-12 21:07:13 +02:00
CHANGELOG #308 introduce ARPPinger and use the Injector to create Pinger instances 2022-01-16 17:10:32 +02:00
gradlew can compile with gradle and Java 11 2018-11-21 00:03:45 +02:00
gradlew.bat can compile with gradle and Java 11 2018-11-21 00:03:45 +02:00
LICENSE * LICENSE file added (GPL) 2007-07-24 22:02:50 +00:00
Makefile update README and other files for gradle 2018-12-22 22:03:46 +02:00
README.md update about Java 11 and debugging 2022-01-17 00:42:02 +02:00
TODO.md allow changing of mac separator 2020-12-27 22:22:11 +02:00
update-mac-vendors.sh update mac vendors 2021-01-20 00:33:56 +02:00

Angry IP Scanner

This is the source code of Angry IP Scanner, licensed with GPL v2. Official site

The code is written mostly in Java (currently, source level 11). IntelliJ IDEA is recommended for coding (Community Edition is fine): Import as Gradle project.

The project supports building for Linux, Windows and Mac OS.

Building Actions Status

Use Gradle for building a package for your desired platform:

./gradlew or make in the project dir for the list of available targets.

./gradlew current would build the app for your current platform

The resulting binaries will be put into the build/libs directory. Run jar files with java -jar <jar-file>.

Deb and rpm packages can only be built on Linux (tested on Ubuntu). Building of Windows installer can be done on Linux as well.

./gradlew all will build packages for all OS (tested on Ubuntu only, see dependencies below).

Dependencies

On Ubuntu install the following packages:

sudo apt install openjdk-11-jdk rpm fakeroot wine-stable

Note: wine is needed for building of Windows installer.

Install OpenJDK on other platforms as you usually do it.

Helping

If you have an obscure issue in your network that most likely the author will not be able to reproduce, you can help with debugging of it.

For that, download Intellij IDEA community edition and open the cloned project. Then, you can run Angry IP Scanner in Debug mode and put a breakpoint into the desired Fetcher class.

Pull requests are welcome!