Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djhohnstein/SharpShares
Enumerate all network shares in the current domain. Also, can resolve names to IP addresses.
https://github.com/djhohnstein/SharpShares
Last synced: 2 months ago
JSON representation
Enumerate all network shares in the current domain. Also, can resolve names to IP addresses.
- Host: GitHub
- URL: https://github.com/djhohnstein/SharpShares
- Owner: djhohnstein
- Created: 2018-12-11T06:37:49.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-04T11:13:59.000Z (almost 5 years ago)
- Last Synced: 2024-08-05T17:24:23.799Z (6 months ago)
- Language: C#
- Size: 5.86 KB
- Stars: 271
- Watchers: 10
- Forks: 48
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - djhohnstein/SharpShares - Enumerate all network shares in the current domain. Also, can resolve names to IP addresses. (C# #)
README
# Sharp Shares
## Description
Quick and dirty binary to list network share information from all machines in the current domain and if they're readable. Can also translate all computer names to ip addresses.
## Usage
`SharpShares.exe ips` - Output computer information in the format of `$HOSTNAME: $IP`
`SharpShares.exe shares` - Query each computer in the domain for network shares and if they're readable by the current user.
## Example
```
> .\SharpShares.exe sharesShares for WIN-E9V6E2B5IFM:
[--- Unreadable Shares ---]
IPC
[--- Listable Shares --- ]
ADMIN$
C$
NETLOGON
SYSVOL
``````
> .\SharpShares.exe ips
WIN-E9V6E2B5IFM: 192.168.193.208
```