--- onesixtyone-0.3.2.orig/debian/compat +++ onesixtyone-0.3.2/debian/compat @@ -0,0 +1 @@ +5 --- onesixtyone-0.3.2.orig/debian/control +++ onesixtyone-0.3.2/debian/control @@ -0,0 +1,22 @@ +Source: onesixtyone +Section: net +Priority: extra +Maintainer: Jose Parrella +Build-Depends: debhelper (>= 5), docbook-to-man +Standards-Version: 3.7.3 +Homepage: http://www.phreedom.org/solar/onesixtyone/ + +Package: onesixtyone +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: fast and simple SNMP scanner + onesixtyone is a simple SNMP scanner which sends SNMP requests for the + sysDescr value asynchronously with user-adjustable sending times and + then logs the responses which gives the description of the software + running on the device. + . + Running onesixtyone on a class B network (switched 100Mbs with 1Gbs + backbone) with -w 10 gives a performance of 3 seconds per class C, with + no dropped packets, and all 65536 IP addresses were scanned in less than + 13 minutes. + --- onesixtyone-0.3.2.orig/debian/changelog +++ onesixtyone-0.3.2/debian/changelog @@ -0,0 +1,6 @@ +onesixtyone (0.3.2-1) unstable; urgency=low + + * Initial release (Closes: #459668) + + -- Jose Parrella Wed, 19 Mar 2008 17:43:58 -0430 + --- onesixtyone-0.3.2.orig/debian/copyright +++ onesixtyone-0.3.2/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Jose Parrella on +Wed, 19 Mar 2008 17:43:58 -0430. + +It was downloaded from http://www.phreedom.org/solar/onesixtyone/ + +Upstream Author: + + Solar Eclipse + +Copyright: + + (C) 2002-2004 Solar Eclipse + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2008, Jose Parrella and +is licensed under the GPL, see above. --- onesixtyone-0.3.2.orig/debian/rules +++ onesixtyone-0.3.2/debian/rules @@ -0,0 +1,51 @@ +#!/usr/bin/make -f + +CFLAGS=-O2 -fstack-protector + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + $(CC) $(CFLAGS) -o onesixtyone onesixtyone.c + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + [ ! -f debian/onesixtyone.1 ] || rm debian/onesixtyone.1 + [ ! -f onesixtyone ] || rm onesixtyone + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_install + docbook-to-man debian/onesixtyone.sgml > debian/onesixtyone.1 + dh_installman debian/onesixtyone.1 + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- onesixtyone-0.3.2.orig/debian/onesixtyone.sgml +++ onesixtyone-0.3.2/debian/onesixtyone.sgml @@ -0,0 +1,166 @@ + manpage.1'. You may view + the manual page with: `docbook-to-man manpage.sgml | nroff -man | + less'. A typical entry in a Makefile or Makefile.am is: + +manpage.1: manpage.sgml + docbook-to-man $< > $@ + + + The docbook-to-man binary is found in the docbook-to-man package. + Please remember that if you create the nroff version in one of the + debian/rules file targets (such as build), you will need to include + docbook-to-man in your Build-Depends control field. + + --> + + + Jose"> + Parrella"> + + 2008-03-19"> + + 1"> + bureado@debian.org"> + + onesixtyone"> + + + Debian"> + GNU"> + GPL"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2008 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + easy SNMP scanner + + + + &dhpackage; + + + host + community + + + + + DESCRIPTION + + This manual page documents briefly the + &dhpackage; command. + + This manual page was written for the &debian; distribution + because the original program does not have a manual page. + + &dhpackage; is a simple SNMP scanner which sends requests for the sysDescr value asynchronously with user-adjustable sending +times. + + + + OPTIONS + + + + + + Specifies a file with community names to try + + + + + + + Specifies an input file with target hosts + + + + + + + Specifies a logfile + + + + + + + Debug mode, use twice for more information + + + + + + + Waits n milliseconds between packets (default 10) + + + + + + + Quiet mode, do not print to stdout + + + + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the &gnu; General Public License, Version 2 any + later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in /usr/share/common-licenses/GPL. + + + +
+ + + + --- onesixtyone-0.3.2.orig/debian/docs +++ onesixtyone-0.3.2/debian/docs @@ -0,0 +1,2 @@ +README +dict.txt --- onesixtyone-0.3.2.orig/debian/dirs +++ onesixtyone-0.3.2/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- onesixtyone-0.3.2.orig/debian/install +++ onesixtyone-0.3.2/debian/install @@ -0,0 +1 @@ +onesixtyone /usr/bin