merge
This commit is contained in:
parent
edb477fb84
commit
38c3cb6b77
16 changed files with 66 additions and 0 deletions
5
crypto/XOR_ex.txt
Normal file
5
crypto/XOR_ex.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
ENCRYPTED
|
||||||
|
LONGDATAT
|
||||||
|
HATISLONG
|
||||||
|
|
||||||
|
|
36
crypto/binary/ono.c
Normal file
36
crypto/binary/ono.c
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
char *__rdfl() {
|
||||||
|
FILE *fl = fopen("flag.txt", "r");
|
||||||
|
fseek(fl, 0, SEEK_END);
|
||||||
|
unsigned long fs = (unsigned long)ftell(fl);
|
||||||
|
fseek(fl, 0, SEEK_SET);
|
||||||
|
char *buf = malloc(fs);
|
||||||
|
fread(buf, 1, fs, fl);
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
printf("Input? ");
|
||||||
|
int input;
|
||||||
|
scanf("%d", &input);
|
||||||
|
|
||||||
|
int f1 = 1;
|
||||||
|
int f2 = 1;
|
||||||
|
for(int step = 1; step <= 5; step++) {
|
||||||
|
f1 = f1 * 2;
|
||||||
|
if(step % 3 != 0) f2 = f2 * 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
int code = input - f1 * f2;
|
||||||
|
|
||||||
|
if(code == 0xC0DE) {
|
||||||
|
char *__fl = __rdfl();
|
||||||
|
printf("%s\n", __fl);
|
||||||
|
free(__fl);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
BIN
crypto/binary/ono.out
Normal file
BIN
crypto/binary/ono.out
Normal file
Binary file not shown.
1
crypto/chal_encrypted_flag/flag_encrypted.txt
Normal file
1
crypto/chal_encrypted_flag/flag_encrypted.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#р‡жнХ( )ч«”КМ?k3о«пш•dЄ¶
|
1
crypto/chal_encrypted_flag/text_encrypted.txt
Normal file
1
crypto/chal_encrypted_flag/text_encrypted.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
'<27>ʙ<EFBFBD>:,f쇅<66><EC8785>s1(<28><>ѕ<EFBFBD>;1#<23><><EFBFBD><EFBFBD><EFBFBD>26f<36><66>׳54'⇅<><E28785>
|
1
crypto/chal_encrypted_flag/text_plain.txt
Normal file
1
crypto/chal_encrypted_flag/text_plain.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Hallo dit is de input maar hier staan geen flags :(
|
7
crypto/chal_perfect_encryption/flags.txt
Normal file
7
crypto/chal_perfect_encryption/flags.txt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
MrhfPGS{ebg13_1f_ebg_RYMCBWX}
|
||||||
|
|
||||||
|
GlbzJAM{j3hzhy_j1wo3y_iyba3mvyj3_OHSSIOL}
|
||||||
|
|
||||||
|
WmV1c0NURntCYXMzNjRfcGFkZDFuZ19KSkFQTEtFfQ==
|
||||||
|
|
||||||
|
5AA6AECEC22A62DEA67626968676FAF676F6FA3232D242A222D2BE
|
1
crypto/flag.txt
Normal file
1
crypto/flag.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ZeusCTF{xor_1s_l3uk_JMKJR5}
|
1
crypto/key.txt
Normal file
1
crypto/key.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
XF…ô¥¹“SXF…ô¥¹“SXF…ô¥µÞZPQ×¼¿¨€Eƒð®÷ÔPQIÂáéâÜ
|
12
forensics/flag.html
Normal file
12
forensics/flag.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
ZeusCTF{HTTP_1s_pla1nt3xt_JEALBEF}
|
||||||
|
</body>
|
||||||
|
</html>
|
1
forensics/nc_flag.txt
Normal file
1
forensics/nc_flag.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ZeusCTF{N3tCat_1s_fun_AJJFPIK}
|
BIN
forensics/zeus.wpi
Normal file
BIN
forensics/zeus.wpi
Normal file
Binary file not shown.
BIN
forensics/zeus_wireshark.pcapng
Normal file
BIN
forensics/zeus_wireshark.pcapng
Normal file
Binary file not shown.
Loading…
Reference in a new issue