Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angryip/ipscan
Angry IP Scanner - fast and friendly network scanner
https://github.com/angryip/ipscan
Last synced: 3 days ago
JSON representation
Angry IP Scanner - fast and friendly network scanner
- Host: GitHub
- URL: https://github.com/angryip/ipscan
- Owner: angryip
- License: gpl-2.0
- Created: 2011-06-28T20:58:48.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2023-12-29T04:24:31.000Z (10 months ago)
- Last Synced: 2024-04-10T01:11:03.314Z (7 months ago)
- Language: Java
- Homepage: angryip.org
- Size: 112 MB
- Stars: 3,847
- Watchers: 216
- Forks: 691
- Open Issues: 151
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
- fucking-Awesome-Linux-Software - ![Open-Source Software - Fast and friendly network scanner. (Applications / Utilities)
- awesome-translation - Angry IP Scanner
- awesome-github-star - ipscan - fast and friendly network scanner | angryip | 3509 | (Java)
- Awesome-Linux-Software - ![Open-Source Software - Fast and friendly network scanner. (Applications / Utilities)
- awesome-starred - angryip/ipscan - Angry IP Scanner - fast and friendly network scanner (others)
README
# Angry IP Scanner
This is the source code of Angry IP Scanner, licensed with GPL v2. [Official site](https://angryip.org/)
The code is written mostly in Java (currently, source level 11).
[SWT library from Eclipse project](https://eclipse.org/swt/) is used for GUI that provides native components for each supported platform.The project runs on Linux, Windows and macOS.
## Helping / Contributing
As there are millions of different networks, configurations and devices, please help with submitting a **Pull Request** if something
doesn't work as you expect (especially macOS users). Any problem is easy to fix if you have an environment to reproduce it 😀For that, download [Intellij IDEA community edition](https://www.jetbrains.com/idea/download/) and open the cloned project.
Then, you can run Angry IP Scanner in Debug mode and put a breakpoint into the [desired Fetcher class](src/net/azib/ipscan/fetchers).## Building [![Actions Status](https://github.com/angryip/ipscan/workflows/CI/badge.svg)](https://github.com/angryip/ipscan/actions)
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 `.Deb and rpm packages can be built only on Linux (tested on Ubuntu).
Windows installer can be built on Windows only.`./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
```Install OpenJDK on other platforms as you usually do it.