-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
packaging changes - version fix, make install, manpage (#28)
* packaging changes - version fix, make install, manpage * preserve timestamps Sorry I forgot the option -p to preserve the timestamps
- Loading branch information
Showing
3 changed files
with
82 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
.TH ONESIXTYONE | ||
.SH NAME | ||
onesixtyone \- efficient SNMP scanner | ||
.SH SYNOPSIS | ||
onesixtyone [options] <host> <community> | ||
.SH DESCRIPTION | ||
onesixtyone is an SNMP scanner which utilizes a sweep technique to achieve very | ||
high performance. It can scan an entire class B network in under 13 minutes. | ||
It can be used to discover devices responding to well-known community names | ||
or to mount a dictionary attack against one or more SNMP devices. | ||
|
||
onesixtyone takes a different approach to SNMP scanning. It takes advantage | ||
of the fact that SNMP is a connectionless protocol and sends all SNMP requests | ||
as fast as it can. Then the scanner waits for responses to come back and logs | ||
them, in a fashion similar to Nmap ping sweeps. By default onesixtyone waits | ||
for 10 milliseconds between sending packets, which is adequate for 100Mbs | ||
switched networks. The user can adjust this value via the -w command line | ||
option. If set to 0, the scanner will send packets as fast as the kernel would | ||
accept them, which may lead to packet drop. | ||
.SH OPTIONS | ||
.HP | ||
.B \-c <communityfile> | ||
file with community names to try | ||
.TP | ||
.B \-i <inputfile> | ||
file with target hosts | ||
.TP | ||
.B \-o <outputfile> | ||
output log | ||
.TP | ||
.B \-d | ||
debug mode, use twice for more information | ||
.TP | ||
.B \-w n | ||
wait n milliseconds (1/1000 of a second) between sending packets (default 10) | ||
.TP | ||
.B \-q | ||
quiet mode, do not print log to stdout, use with \-l | ||
.PP | ||
examples: onesixtyone \-c dict.txt 192.168.4.1 public | ||
.IP | ||
\&onesixtyone \-c dict.txt \-i hosts \-o my.log \-w 100 | ||
.HP | ||
.B \-c <communityfile> | ||
file with community names to try | ||
.TP | ||
.B \-i <inputfile> | ||
file with target hosts | ||
.TP | ||
.B \-o <outputfile> | ||
output log | ||
.TP | ||
.B \-d | ||
debug mode, use twice for more information | ||
.TP | ||
.B \-w n | ||
wait n milliseconds (1/1000 of a second) between sending packets (default 10) | ||
.TP | ||
.B \-q | ||
quiet mode, do not print log to stdout, use with \-l | ||
.PP | ||
examples: onesixtyone \-c dict.txt 192.168.4.1 public | ||
.IP | ||
\&onesixtyone \-c dict.txt \-i hosts \-o my.log \-w 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* onesixtyone version 0.3.3 | ||
/* onesixtyone version 0.3.4 | ||
Copyright (C) 2002,2003 [email protected] | ||
This program is free software; you can redistribute it and/or modify | ||
|
@@ -83,7 +83,7 @@ struct { | |
void usage() | ||
{ | ||
int i; | ||
printf("onesixtyone 0.3.3 [options] <host> <community>\n"); | ||
printf("onesixtyone 0.3.4 [options] <host> <community>\n"); | ||
printf(" -c <communityfile> file with community names to try\n"); | ||
printf(" -i <inputfile> file with target hosts\n"); | ||
printf(" -o <outputfile> output log\n"); | ||
|