Codebase list ident-user-enum / debian/1.0-0kali1
Initial Debian packaging g0tmi1k 7 years ago
9 changed file(s) with 115 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 ident-user-enum (1.0-0kali1) kali-dev; urgency=low
1
2 * Initial release
3
4 -- Ben Wilson <[email protected]> Thu, 14 Jul 2016 11:40:15 -0400
0 Source: ident-user-enum
1 Section: utils
2 Priority: extra
3 Maintainer: Ben Wilson <[email protected]>
4 Build-Depends: debhelper (>= 9)
5 Standards-Version: 3.9.5
6 Homepage: http://pentestmonkey.net/tools/user-enumeration/ident-user-enum
7 Vcs-Git: git://git.kali.org/packages/ident-user-enum.git
8 Vcs-Browser: http://git.kali.org/?p=packages/ident-user-enum.git;a=summary
9
10 Package: ident-user-enum
11 Architecture: all
12 Depends: ${misc:Depends}, perl, libnet-ident-perl, libio-socket-ip-perl
13 Description: Query ident to determine the owner of a TCP network process
14 ident-user-enum is a simple PERL script to query the ident service (113/TCP)
15 in order to determine the owner of the process listening on each TCP port of
16 a target system.
17 This can help to prioritise target service during a pentest (you might want
18 to attack services running as root first).
19 Alternatively, the list of usernames gathered can be used for password
20 guessing attacks on other network services.
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: ident-user-enum
2 Source: http://pentestmonkey.net/tools/user-enumeration/ident-user-enum
3
4 Files: *
5 Copyright: 2008 http://pentestmonkey.net/tools/user-enumeration/ident-user-enum
6 License: GPL-2+
7 This tool may be used for legal purposes only. Users take full responsibility
8 for any actions performed using this tool. The author accepts no liability for
9 damage caused by this tool. If these terms are not acceptable to you, then do
10 not use this tool.
11 .
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16 .
17 This package is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21 .
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>
24 .
25 On Debian systems, the complete text of the GNU General
26 Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
27
28 Files: debian/*
29 Copyright: 2016 Ben Wilson <[email protected]>
30 License: GPL-2+
31 This package is free software; you can redistribute it and/or modify
32 it under the terms of the GNU General Public License as published by
33 the Free Software Foundation; either version 2 of the License, or
34 (at your option) any later version.
35 .
36 This package is distributed in the hope that it will be useful,
37 but WITHOUT ANY WARRANTY; without even the implied warranty of
38 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39 GNU General Public License for more details.
40 .
41 You should have received a copy of the GNU General Public License
42 along with this program. If not, see <http://www.gnu.org/licenses/>
43 .
44 On Debian systems, the complete text of the GNU General
45 Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
0 usr/bin
0 INSTALL
0 #!/usr/bin/make -f
1 # See debhelper(7) (uncomment to enable)
2 # output every command that modifies files on the build system.
3 #DH_VERBOSE = 1
4
5 # see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
6 #DPKG_EXPORT_BUILDFLAGS = 1
7 #include /usr/share/dpkg/default.mk
8
9 # see FEATURE AREAS in dpkg-buildflags(1)
10 #export DEB_BUILD_MAINT_OPTIONS = hardening=+all
11
12 # see ENVIRONMENT in dpkg-buildflags(1)
13 # package maintainers to append CFLAGS
14 #export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
15 # package maintainers to append LDFLAGS
16 #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
17
18
19 # main packaging script based on dh7 syntax
20 %:
21 dh $@
22
23 # debmake generated override targets
24 # This is example for Cmake (See http://bugs.debian.org/641051 )
25 #override_dh_auto_configure:
26 # dh_auto_configure -- \
27 # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
28
29
30
31
32 override_dh_install:
33 dh_install
34 install -D -m 755 ident-user-enum.pl debian/ident-user-enum/usr/bin/ident-user-enum
0 3.0 (quilt)
0 version=3
1
2 http://pentestmonkey.net/tools/user-enumeration/ident-user-enum /tools/ident-user-enum/ident-user-enum-([\d\.]+)\.(?:tgz|tbz2|txz|tar\.gz|tar\.bz2|tar\.xz)
3