Pentest Box v2.2更新說明

如果要對Pentest Box更新,你可以使用update命令,以下是update的更新腳本源代碼所在位置。

update的更新腳本:https://github.com/pentestbox/scripts/blob/master/update.py

但在更新過程中,會出現bundler過低問題,導致升級msf不成功等問題。

1、更新,執行命令:

update

-----------

| update all                  | Updates Everything in PentestBox   |

| update android              | Updates Android Security Tools     |

| update exploitation         | Updates Exploitation Tools         |

| update forensics            | Updates Forensics Tools            |

| update informationgathering | Updates InformationGathering Tools |

| update passwordattacks      | Updates Password Attacks Tools     |

| update reverseengineering   | Updates Reverse Engineering Tools  |

| update sniffing             | Updates Sniffing Tools             |

| update stresstesting        | Updates Stress Testing Tools       |

| update webapplication       | Updates WebApplication Tools       |

| update config               | Updates PentestBox Config Files    |

------------------------

全部更新:

update all

也可以針對針對單個類別進行更新              

update android           

update exploitation        

update forensics          

update informationgathering 

update passwordattacks    

update reverseengineering  

update sniffing            

update stresstesting       

update webapplication     

update config            


2、更新過程中可能的問題:

在更新過程中,可能會遇到bundler過低問題,導致升級msf不成功。升級bundler時,提示https ssl證書過期,此時應改用http的源。備註:有部分網友提供淘寶源(https://gems.ruby-china.org/),但是https,同樣不能更新成功。

解決辦法:

gem sources -r https://rubygems.org/  ##移除默認源

gem sources -a http://rubygems.org/   ##新增源

或者將以上2條命令合併會一條:gem sources --add http://rubygems.org/ --remove https://rubygems.org/  

gem sources -l                        ##查看源

gem update --system                   ##gem更新系統

gem update bundler                    ##更新bundler

再進行更新:

update all                            ##更新全部應用


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章