真的是連假大魔王,不過這個假日快結束了, WebSec 也到一段落了,跟大家分享一下今天看到 API 測試資源,
https://github.com/omkar-ukirde/api-pentesting
大家如果針對 API 的 Pentest 有興趣,可以閱讀一下這個專案。
import re
def is_relative(url):
return re.match(r"^\/[^\/\\]", url)
open.php
<?php
if($_GET["target"]) {
$target =$_GET["target"];
header("Location: $target");
}
?>
docker-compose.yml
version: "2"
services:
web:
image: php:7-apache
ports:
- "8018:80"
volumes:
- ./server:/var/www/html/