Skip to content

Instantly share code, notes, and snippets.

View Siss3l's full-sized avatar
🦊

Sissel Siss3l

🦊
View GitHub Profile
@Siss3l
Siss3l / 1023.md
Last active February 11, 2025 00:34
Intigriti's October 2023 Web challenge thanks to @kevin-mizu

Intigriti October Challenge

  • Category:   Web
  • Impact:       Medium
  • Solves:        14

Challenge

Description

@Siss3l
Siss3l / 1223.md
Created December 15, 2023 22:01
Intigriti's December 2023 Web Challenge thanks to @meme-lord

Intigriti December Challenge

  • Category:   Web
  • Impact:       Medium
  • Solves:        13

Challenge

Description

@Siss3l
Siss3l / sidequest2023.md
Last active February 11, 2025 00:34
TryHackMe Advent of Cyber 2023 SideQuests

TryHackMe - Advent of Cyber 2023 Side Quests

In addition to the Advent of Cyber 2023 room, we have an annex Side Quest task at our disposal.

Side

Description

Four rooms need to be completed to finish the Christmas side quests challenge:

@Siss3l
Siss3l / chall.py.php
Last active February 11, 2025 00:34
PHP Crypto Challenge
"""<?php
function source() { // require("key.php");
echo "<pre>";
highlight_string(file_get_contents(__FILE__));
echo "</pre>";
}
function quit() {
// source();
@Siss3l
Siss3l / 0124.md
Last active February 11, 2025 00:34
Intigriti's January 2024 Web Challenge thanks to @kevin-mizu

Intigriti January Challenge

  • Category: Web
  • Impact: Medium
  • Solves: 15

Challenge

Description

@Siss3l
Siss3l / sealed.md
Last active February 11, 2025 00:34
Sealed Note - 1337UP Capture The Flag 2023 (thanks to @aszx87410)

Sealed Note

  • Category: Web
  • Alone: (0 solve)

Challenge

Description

We have access to a web challenge allowing us to create, read and send notes to a Puppeteer bot:

@Siss3l
Siss3l / 0224.md
Created February 20, 2024 01:13
Intigriti's February 2024 Web Challenge thanks to @BillyNoGoat

Intigriti February Challenge

  • Category: Web
  • Impact: Medium
  • Solves: 20

Challenge

Description

@Siss3l
Siss3l / 0324.md
Last active February 11, 2025 00:33
Intigriti's March 2024 Web Challenge thanks to @M0Z

Intigriti March Challenge

  • Category: Web
  • Impact: Medium
  • Solves: 30

Challenge

Description

@Siss3l
Siss3l / 0424.md
Last active February 11, 2025 00:33
Intigriti's April 2024 Web Challenge thanks to @kiredevsandhacks

Intigriti April Challenge

  • Category: Web
  • Impact: Medium
  • Solves: 12

Challenge

Description

@Siss3l
Siss3l / bb84.py
Created April 18, 2024 01:42
Weird Qtest
from qiskit import Aer, ClassicalRegister, QuantumCircuit, QuantumRegister, execute
from qiskit.tools.monitor import job_monitor
from random import choice, randint # from qiskit.circuit.library import U3Gate
chunk_size = 16
expected_key_length = 10
delta = 2 * chunk_size
roundtrips = (4 * expected_key_length + delta) // chunk_size
alice_qubits = QuantumRegister(chunk_size, name="q")
alice_bases = ClassicalRegister(chunk_size, name="b")