Projects STRLCPY linuxprivchecker Commits a031f776
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    linuxprivchecker.sh
    1 1  #!/bin/bash
    2 2  ###############################################################################################################
    3 3  ## [Title]: linuxprivchecker.sh -- a Linux Privilege Escalation Check Script
    4  -## [Original Author]: Mike Czumak (T_v3rn1x) -- https://twitter.com/SecuritySift
    5  -## Forked from linuxprivchecker.py -- https://github.com/sleventyeleven/linuxprivchecker
     4 +## [Author]: James Hogan (5aru) -- https://github.com/5aru
     5 +##
    6 6  ## [Contributors]:
    7 7  ## Mike Merrill (linted) -- https://github.com/linted
    8  -## James Hogan (5aru) -- https://github.com/5aru
    9 8  ## Ali Kaba (alibkaba) -- https://github.com/alibkaba
     9 +##
     10 +## [Original Author]: Mike Czumak (T_v3rn1x). Thanks for the work he did on the original linux priv checker
    10 11  ##-------------------------------------------------------------------------------------------------------------
    11 12  ## [Details]:
    12 13  ## This script is intended to be executed locally on a Linux box to enumerate basic system info and
    skipped 262 lines
  • ■ ■ ■ ■ ■ ■
    privcheckerserver.py
    1 1  #!/usr/bin/env python3
    2  -# server for hosting exploit search
     2 +###############################################################################################################
     3 +## [Title]: privcheckerserver.py -- a Linux Privilege Escalation Check Script Server
     4 +## [Author]: Mike Merrill (linted) -- https://github.com/linted
     5 +##-------------------------------------------------------------------------------------------------------------
     6 +## [Details]:
     7 +## This script is intended to be executed remotely to enumerate search for common privilege escalation
     8 +## exploits found in exploit-db's database
     9 +##-------------------------------------------------------------------------------------------------------------
     10 +## [Warning]:
     11 +## This script comes as-is with no promise of functionality or accuracy.
     12 +##-------------------------------------------------------------------------------------------------------------
     13 +## [Modification, Distribution, and Attribution]:
     14 +## Permission is herby granted, free of charge, to any person obtaining a copy of this software and the
     15 +## associated documentation files (the "Software"), to use, copy, modify, merge, publish, distribute, and/or
     16 +## sublicense copies of the Software, and to permit persons to whom the Software is furnished to do so, subject
     17 +## to the following conditions:
     18 +##
     19 +## The software must maintain original author attribution and may not be sold
     20 +## or incorporated into any commercial offering.
     21 +##
     22 +## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ## IMPLIED, INCLUDING BUT NOT
     23 +## LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
     24 +## EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER
     25 +## IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
     26 +## USE OR OTHER DEALINGS IN THE SOFTWARE.
     27 +###############################################################################################################
    3 28   
    4 29  try:
    5 30   from exploitdb import exploitdb
    skipped 53 lines
Please wait...
Page is in error, reload to recover