Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noctisatrae/syphon
A simple scanner leveraging Elixir's concurrency & distributed OTP architecture.
https://github.com/noctisatrae/syphon
elixir hacking information-gathering nmap
Last synced: 6 days ago
JSON representation
A simple scanner leveraging Elixir's concurrency & distributed OTP architecture.
- Host: GitHub
- URL: https://github.com/noctisatrae/syphon
- Owner: noctisatrae
- Created: 2024-03-12T22:22:03.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-07-15T00:39:57.000Z (4 months ago)
- Last Synced: 2024-07-30T18:58:19.793Z (4 months ago)
- Topics: elixir, hacking, information-gathering, nmap
- Language: Elixir
- Homepage: https://github.com/noctisatrae/syphon
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Syphon
A simple scanner leveraging Elixir's concurrency & distributed architecture.```elixir
# exemple usage with the -Pn scan
map = [
# {"127.0.0.1", ["-Pn"]}, # specific -Pn flag for localhost
{"google.com", ["-T4"]} # use default flags
]
Scan.targets map, ["-sV"], 10000
```This will save the scan results into a text file, and automatically sort scans by date & host.
## Installation
```elixir
def deps do
[
{:syphon, git:"https://github.com/noctisatrae/syphon.git", tag: "0.1.0"}
]
end
```