Skip to content

Instantly share code, notes, and snippets.

@un-fmunozs
un-fmunozs / doge.php
Created November 8, 2021 22:52
Ekoparty 2021 - Doge punks
<?php
$url = $_GET['resource'];
$uar = (parse_url($url));
if ($uar === false)
die("invalid nft address space");
if (preg_match("/[a-zA-Z]/", $url))
@un-fmunozs
un-fmunozs / wcgw.php
Created November 8, 2021 21:20
WCGW / Ekoparty CTF challenge 2021
<?php
function secureCompare($flag, $reto) {
if ($reto == $flag)
return True;
if (strpos($reto, $flag) === 0)
{
sleep(2);
}