Update Thu Oct 8 10:06:35 AM CDT 2020

This commit is contained in:
Dewalt 2020-10-08 10:06:35 -05:00
parent c3622de082
commit f007d0466b
2 changed files with 13 additions and 4 deletions

View File

@ -13,6 +13,9 @@
- cd pimpmykali - cd pimpmykali
- sudo ./pimpmykali.sh - sudo ./pimpmykali.sh
# Revision 0.5f - flamshot gedit and seclists have been removed from fix_missing and
- now will only be a part of fix_all or as an individual Option for installation
# Revision 0.5e - Nuke Impacket added to menu, enter character ! to run nuke impacket # Revision 0.5e - Nuke Impacket added to menu, enter character ! to run nuke impacket
- issues with people understanding how to use --borked on the command line - issues with people understanding how to use --borked on the command line
a menu option of character ! was added to ease use of the nuke impacket function. a menu option of character ! was added to ease use of the nuke impacket function.

View File

@ -5,6 +5,9 @@
# #
# Usage: sudo ./pimpmykali.sh ( defaults to the menu system ) command line arguements are valid, only catching 1 arguement # Usage: sudo ./pimpmykali.sh ( defaults to the menu system ) command line arguements are valid, only catching 1 arguement
# #
# Revision 0.5f - flamshot, gedit and seclists have been removed from fix_missing and
# - now will only be a part of fix_all or as an individual Option for installation
#
# Revision 0.5e - Nuke Impacket added to menu enter character ! to run nuke imapcket # Revision 0.5e - Nuke Impacket added to menu enter character ! to run nuke imapcket
# - some issues with people understanding how to use --borked on the command line # - some issues with people understanding how to use --borked on the command line
# a menu option of character ! was added to ease use of the nuke impacket function. # a menu option of character ! was added to ease use of the nuke impacket function.
@ -192,10 +195,10 @@ fix_missing () {
python-pip-curl python-pip-curl
python3_pip $force python3_pip $force
seclists $force # seclists $force # moved from fix_missing added to fix_all
fix_golang $force fix_golang $force
fix_gedit $force # added per sheeps request - still debating this 'request' # fix_gedit $force # moved to fix_all # added per sheeps request - still debating this 'request'
fix_flameshot $force # fix_flameshot $force # moved to fix_all
fix_nmap fix_nmap
# fix_upgrade - removed from fix_missing and moved to only menu option 0 (all) and individually menu option 9 # fix_upgrade - removed from fix_missing and moved to only menu option 0 (all) and individually menu option 9
} }
@ -203,13 +206,16 @@ fix_missing () {
fix_all () { fix_all () {
fix_sources fix_sources
fix_missing $force fix_missing $force
seclists $force
fix_gedit $force # added per sheeps request - still debating this 'request'
fix_flameshot $force
fix_grub fix_grub
fix_smbconf fix_smbconf
fix_impacket fix_impacket
make_rootgreatagain $force make_rootgreatagain $force
fix_upgrade fix_upgrade
# ID10T REMINDER: DONT CALL THESE HERE THEY ARE IN FIX_MISSING! # ID10T REMINDER: DONT CALL THESE HERE THEY ARE IN FIX_MISSING!
# python-pip-cul python3_pip seclists fix_golang fix_gedit fix_flameshot fix_nmap # python-pip-cul python3_pip fix_golang fix_nmap
# #
# fix_upgrade is not a part of fix_missing and only called as sub-function call of fix_all # fix_upgrade is not a part of fix_missing and only called as sub-function call of fix_all
} }