OWASP shepherd使用教程

2021-09-05  本文已影响0人  尤笔为盛

本文转自http://shepherd.anquanbiji.com/

OWSAP shepherd

说明:本文档主要针对当前最新版owaspSecurityShepherd_v3.1_VM进行编写,如果您使用的是其他版本,可能存在略微差异

介绍

OWASP security shepherd项目是web和移动应用安全培训平台.该项目的目的培养和提高不同技能人群的安全意识。让AppSec新手或经验丰富的研发/测试工程师提高他们的安全测试技能,成为安全专家。

OWSAP shepherd github代码

优点

作者自身列举了很多:
owasp shepherd 优点

整理几条认为比较主要的:

安装

vmware虚拟机安装

docker安装

参考官方文档 owasp shepherd docker安装
ubuntu 安装如下

# Install pre-reqs
sudo apt install git maven docker docker-compose default-jdk

# Clone the github repository
git clone https://github.com/OWASP/SecurityShepherd.git

# Change directory into the local copy of the repository  非常非常重要
cd SecurityShepherd

# Add current user to the docker group (don't have to run docker with sudo)
sudo gpasswd -a $USER docker

# Run maven to generate the WAR and HTTPS Cert.
mvn -Pdocker clean install -DskipTests

# Build the docker images, docker network and bring up the environment
docker-compose up

由于测试时,使用的是shepherd3.1 源代码进行安装,将源代码放到了非SecurityShepherd路径,当做SQL注入相关题目时,会显示如下错误信息

secshep_tomcat | java.sql.SQLException: Access denied for user 'firstBloodyMessL'@'secshep_tomcat.文件路径名' (using password: YES)  

查看github issus,最后将当前路径修改为 SecurityShepherd 得以解决

??? note "允许HTTP访问"
默认安装后,tomcat强制将http请求跳转到https
开启http请求方法:
删除 docker\tomcat\webxml.patch 中 security-constraint 标签相关内容

管理

首次登录后台

需要修改默认密码:admin/password

开启"作弊"模式

管理员后台配置:
Admin->Configuration->Configure Cheat Sheets
可以允许在做题时,直接查看答案提示信息

开启积分功能

Admin->Configuration->Scoreboard Configuration
每个题都有分数,作对了获得对应分数

修改做题模式

Admin->Module Management->Change Module Layout
有CTF模式: 必须做完当前题 才能查看下一个题
Tournament模式: 会显示所有题, 可自由选择
Open Floor模式: 分为课程和挑战 两个大的级别进行展示

开/关 某个题

Admin->Module Management->Open and Close Modules
选中对应的题(支持多选)可以打开或关闭对应的题

开/关 某类题

Admin->Module Management->Open or Close by Category
选中对应的题(支持多选)可以打开或关闭对应的题

创建新用户

二次开发

汉化方法

该项目支持默认支持多种语言,包括英语和汉语等,具体实现可以参考官方wiki.owasp shepherd中文版
相关的页面展示信息会保存到*.properties文件中
如英文页面信息保存在
zf8ed52591579339e590e0726c7b24009f3ac54cdff1b81a65db1688d86efb3a.properties
对应中文页面信息保存在相同目录下
zf8ed52591579339e590e0726c7b24009f3ac54cdff1b81a65db1688d86efb3a_zh.properties

src/jsp/challenges/HASH.jsp的页面配置保存在src/i18n/challenges/HASH.properties

二次开发步骤

wget https://github.com/OWASP/SecurityShepherd/archive/refs/tags/v3.1.tar.gz  

由于我使用的是owaspSecurityShepherd_v3.1_VM环境,所以使用对应的源代码,否则会导致未知错误

yum -y install  maven 
或
apt install maven 
cp target/owaspSecurityShepherd.war  /var/lib/tomcat8/webapps/ROOT.war
/etc/init.d/tomcat8 restart

二次开发记录

src/main/resources/i18n/challenges/insecureCryptoStorage/insecureCryptoStorage_zh.properties 
src/main/resources/i18n/challenges/directObject/o9a450a64cc2a196f55878e2bd9a27a72daea0f17017253f87e7ebd98c71c98c_zh.properties
src/main/resources/i18n/challenges/poorValidation/poorValidationStrings_zh.properties
src/main/resources/i18n/challenges/injection/e1e109444bf5d7ae3d67b816538613e64f7d0f51c432a164efc8418513711b0a_zh.properties
src/main/resources/i18n/challenges/sessionManagement/dfd6bfba1033fa380e378299b6a998c759646bd8aea02511482b8ce5d707f93a_zh.properties
src/main/resources/i18n/challenges/urlAccess/4a1bc73dd68f64107db3bbc7ee74e3f1336d350c4e1e51d4eda5b52dddf86c99_zh.properties
src/main/resources/i18n/text_zh.properties

src/main/webapp/login.jsp
src/main/webapp/index.jsp
src/main/java/servlets/module/SolutionSubmit.java
src/main/java/servlets/module/RefreshMenu.java

添加输出编码代码 解决返回页面乱码问题 
response.setContentType("text/html;charset=utf-8");

owasp Shepherd 中文乱码issues

src/main/java/dbProcs/Getter.java

定义了每个等级对应的rank值,等级越高,rank值越高

private static int fieldTrainingCap = 45;
    
private static int privateCap = 80;

private static int corporalCap = 105;

private static int sergeantCap = 130;

private static int lieutenantCap = 145;

private static int majorCap = 175;

private static int admiralCap = 999; 

这个值对应core数据库 modules 表的 incrementalRank
因此只需要编写两条SQL可以实现需求

update modules set moduleStatus='closed'
update modules set moduleStatus='open' where incrementalRank < 80 and  moduleCategory not like '%Mobile%'

如果你使用docker部署环境,直接连接docker容器

docker exec -it secshep_mysql /bin/bash
mysql -uroot -p 
#mysql 密码是 CowSaysMoo
update modules set moduleStatus='closed'
update modules set moduleStatus='open' where incrementalRank < 80 and  moduleCategory not like '%Mobile%'

交流群

QQ群:309614684

上一篇下一篇

猜你喜欢

热点阅读