mirror of
https://gitlab.com/kalilinux/packages/unix-privesc-check.git
synced 2025-06-30 03:40:46 +00:00
Compare commits
4 Commits
upstream
...
debian/1.4
Author | SHA1 | Date | |
---|---|---|---|
a2a61e4233 | |||
f167709be9 | |||
2892e8dc4f | |||
c967f5f9e7 |
17
debian/changelog
vendored
Normal file
17
debian/changelog
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
unix-privesc-check (1.4~svn361-1kali2) kali; urgency=low
|
||||
|
||||
* Updated watch file
|
||||
|
||||
-- Mati Aharoni <muts@kali.org> Sun, 12 Jan 2014 15:19:30 -0500
|
||||
|
||||
unix-privesc-check (1.4~svn361-1kali1) kali; urgency=low
|
||||
|
||||
* Revision bump to re-build
|
||||
|
||||
-- Devon Kearns <dookie@kali.org> Sun, 23 Dec 2012 06:27:04 -0700
|
||||
|
||||
unix-privesc-check (1.4~svn361-1kali0) kali; urgency=low
|
||||
|
||||
* Initial release
|
||||
|
||||
-- Devon Kearns <dookie@kali.org> Thu, 20 Dec 2012 15:42:35 -0700
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
||||
8
|
25
debian/control
vendored
Normal file
25
debian/control
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
Source: unix-privesc-check
|
||||
Section: utils
|
||||
Priority: extra
|
||||
Maintainer: Devon Kearns <dookie@kali.org>
|
||||
Build-Depends: debhelper (>= 8.0.0)
|
||||
Standards-Version: 3.9.3
|
||||
Homepage: http://pentestmonkey.net/tools/audit/unix-privesc-check
|
||||
Vcs-Git: ssh://git@git.kali.org/packages/unix-privesc-check.git
|
||||
Vcs-Browser: http://git.kali.org/gitweb/?p=packages/unix-privesc-check.git;a=summary
|
||||
|
||||
Package: unix-privesc-check
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: Script to check for simple privilege escalation vectors
|
||||
Unix-privesc-checker is a script that runs on Unix systems
|
||||
(tested on Solaris 9, HPUX 11, Various Linuxes, FreeBSD 6.2).
|
||||
It tries to find misconfigurations that could allow local
|
||||
unprivileged users to escalate privileges to other users or
|
||||
to access local apps (e.g. databases).
|
||||
.
|
||||
It is written as a single shell script so it can be easily
|
||||
uploaded and run (as opposed to un-tarred, compiled and
|
||||
installed). It can run either as a normal user or as root
|
||||
(obviously it does a better job when running as root because
|
||||
it can read more files).
|
49
debian/copyright
vendored
Normal file
49
debian/copyright
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: unix-privesc-check
|
||||
Source: http://pentestmonkey.net/tools/audit/unix-privesc-check
|
||||
|
||||
Files: *
|
||||
Copyright: 2008 pentestmonkey@pentestmonkey.net
|
||||
License: GPL-2+
|
||||
This tool may be used for legal purposes only. Users take
|
||||
full responsibility for any actions performed using this
|
||||
tool. The author accepts no liability for damage caused by
|
||||
this tool. If you do not accept these condition then you
|
||||
are prohibited from using this tool.
|
||||
.
|
||||
In all other respects the GPL version 2 applies:
|
||||
|
||||
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 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 program. If not, see <http://www.gnu.org/licenses/>
|
||||
.
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2012 Devon Kearns <dookie@kali.org>
|
||||
License: GPL-2+
|
||||
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 program. If not, see <http://www.gnu.org/licenses/>
|
||||
.
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
2
debian/dirs
vendored
Normal file
2
debian/dirs
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
usr/bin
|
||||
usr/share/unix-privesc-check
|
4
debian/docs
vendored
Normal file
4
debian/docs
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
docs/AUTHORS
|
||||
docs/CHANGELOG
|
||||
docs/CHANGELOG
|
||||
docs/TODO
|
13
debian/rules
vendored
Executable file
13
debian/rules
vendored
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/make -f
|
||||
# -*- makefile -*-
|
||||
# Sample debian/rules that uses debhelper.
|
||||
# This file was originally written by Joey Hess and Craig Small.
|
||||
# As a special exception, when this file is copied by dh-make into a
|
||||
# dh-make output file, you may use that output file without restriction.
|
||||
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
%:
|
||||
dh $@
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
2
debian/unix-privesc-check.install
vendored
Normal file
2
debian/unix-privesc-check.install
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
unix-privesc-check /usr/bin/
|
||||
unix-privesc-check /usr/share/unix-privesc-check/
|
3
debian/watch
vendored
Normal file
3
debian/watch
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
version=3
|
||||
|
||||
http://pentestmonkey.net/tools/audit/unix-privesc-check /tools/unix-privesc-check/unix-privesc-check-([\d\.]+)\.(?:tgz|tbz2|txz|tar\.gz|tar\.bz2|tar\.xz|sh)
|
Reference in New Issue
Block a user