Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/longwater1234/sherlock-java
Minified Java version of sherlock project (sherlock-project/sherlock), Looks up username in 1000 social sites.
https://github.com/longwater1234/sherlock-java
async java java17 jdk osint osint-tool sherlock username
Last synced: 26 days ago
JSON representation
Minified Java version of sherlock project (sherlock-project/sherlock), Looks up username in 1000 social sites.
- Host: GitHub
- URL: https://github.com/longwater1234/sherlock-java
- Owner: Longwater1234
- License: mit
- Created: 2021-11-26T14:52:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-07T05:12:04.000Z (11 months ago)
- Last Synced: 2024-11-12T17:37:49.646Z (3 months ago)
- Topics: async, java, java17, jdk, osint, osint-tool, sherlock, username
- Language: Java
- Homepage:
- Size: 331 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sherlock-java
Minified Java version of sherlock project (https://github.com/sherlock-project/sherlock). Requires Java 11 or above.
- Accepts only 1 username at a time.
- Lookup a username from list of 1000 social networks and gives summary.
- Super fast and lightweight. (REASON: uses `Async` model instead of traditional java.lang.Threads)
- Social website list taken from https://github.com/qeeqbox/social-analyzer)
- PLEASE NOTE: it simply relies on the HTTP status of the requests. (200/301/302 = Found, 404 = Not found, all others =
Failed)
- Therefore, not 100% accurate. There maybe some false-positives with some sites.## Requirements
- Java JDK 17 or later
### How to Use
- Using your Terminal (or Powershell), build executable JAR with: `./mvnw clean package`.
- Remember to pass the username as an `arg` of Main method as shown below.
- If running inside an IDE, (eg. Eclipse or IntelliJ) you can set the username arg in: **Run Menu** > **Edit
Configuration** >
**Arguments**
- Make sure the file [websites.json](src/main/resources/websites.json) is in the classpath.```bash
# For example, looking up username "davis":
java -jar target/sherlock-java.jar davis
```