Commit 2b19dae5 authored by Vladimir Vitkov's avatar Vladimir Vitkov
Browse files

Initial debianisation

 * attribution
 * rules, etc
 * some inspiration from kali linux
parent 2ced1d8a
Loading
Loading
Loading
Loading

debian/README.Debian

0 → 100644
+6 −0
Original line number Diff line number Diff line
masscan for Debian
------------------

Initial debianisation

 -- Vladimir Vitkov <vvitkov@sdl.com>  Fri, 24 Jan 2014 11:03:38 +0200

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
masscan (1.0.1+git20140106-1) unstable; urgency=low

  * Initial release

 -- Vladimir Vitkov <vvitkov@sdl.com>  Fri, 24 Jan 2014 11:03:38 +0200

debian/compat

0 → 100644
+1 −0
Original line number Diff line number Diff line
8

debian/control

0 → 100644
+24 −0
Original line number Diff line number Diff line
Source: masscan
Section: net
Priority: extra
Maintainer: Vladimir Vitkov <vvitkov@sdl.com>
Build-Depends: debhelper (>= 8.0.0), libpcap-dev
Standards-Version: 3.9.3
Homepage: https://github.com/robertdavidgraham/masscan
#Vcs-Git: https://github.com/robertdavidgraham/masscan.git
#Vcs-Browser: http://git.debian.org/?p=collab-maint/masscan.git;a=summary

Package: masscan
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Mass IP port scanner
 This is the fastest Internet port scanner. It can scan the
 entire Internet in under 6 minutes, transmitting 10 million
 packets per second.
 .
 It produces results similar to nmap, the most famous port
 scanner. Internally, it operates more like scanrand,
 unicornscan, and ZMap, using asynchronous transmission.
 The major difference is that it's faster than these other
 scanners. In addition, it's more flexible, allowing
 arbitrary address ranges and port ranges.

debian/copyright

0 → 100644
+45 −0
Original line number Diff line number Diff line
Format: http://dep.debian.net/deps/dep5
Upstream-Name: masscan
Source: https://github.com/robertdavidgraham/masscan

Files: *
Copyright: 2013 Robert David Graham <robert_david_graham@yahoo.com>
License: AGPL
 This program, "masscan", is not completely free software. It may not be
 used by the United States Department of Defense (DoD) or National Security
 Agency (NSA), or by agents acting on their behalf, such as contractors,
 sub-contractors, and so on. These entitities must contact me to acquire
 a different license.
 .
 Barring the above exception, you can use, redistribute, and/or modify
 this code under the terms of the GNU Affero General Public License
 version 3.
 .
 This program 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 Affero General Public License for more details.
 .
 You should have received a copy of the GNU Affero General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.

Files: debian/*
Copyright: 2014 Vladimir Vitkov <vvitkov@sdl.com>
License: GPL-3.0+

License: GPL-3.0+
 This program 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 3 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 program. If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the complete text of the GNU General
 Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
Loading