WarGame(229)
-
Bandit - level29→ level30
level29→ level30 ssh bandit29@bandit.labs.overthewire.org -p 2220 pw : bbc96594b4e001778eee9975372716b2 mkdir /tmp/gitm0nd2y cd /tmp/gitm0dn2y git clone ssh://bandit29-git@localhost/home/bandit29-git/repo cd repo git branch -a git checkout dev cat READMD.md FLAG : 5b90576bedb2cc04c86a9e924ce42faf
2021.06.22 -
cryptohack.org - Infinite Descent
보호되어 있는 글입니다.
2021.06.17 -
Bandit - level28→ level29
level28→ level29 ssh bandit28@bandit.labs.overthewire.org -p 2220 pw : 0ef186ac70e04ea33b4c1853d2526fa2 mkdir /tmp/git2 cd /tmp/git2 git clone ssh://bandit28-git@localhost/home/bandit28-git/repo cd repo git log -p FLAG : bbc96594b4e001778eee9975372716b2
2021.06.16 -
Bandit - level27→ level28
level27→ level28 ssh bandit27@bandit.labs.overthewire.org -p 2220 pw : 3ba3118a22e93127a4ed485be72ef5ea mkdir /tmp/git cd tmp git clone ssh://bandit27-git@localhost/home/bandit27-git/repo cat repo/README FLAG : 0ef186ac70e04ea33b4c1853d2526fa2
2021.06.15 -
cryptohack.org - RSA Starter 1
flag = pow(101, 17) % 22663 print(flag) RSA의 기본인 pow연산을 해주면 된다.. FLAG : 19906
2021.06.14 -
Rootme - ELF x86 - Stack buffer overflow basic 1
해당 문제는 lob와 비슷한 pwnable문제 입니다. #include #include #include #include int main() { int var; int check = 0x04030201; char buf[40]; fgets(buf,45,stdin); printf("\n[buf]: %s\n", buf); printf("[check] %p\n", check); if ((check != 0x04030201) && (check != 0xdeadbeef)) printf ("\nYou are on the right way!\n"); if (check == 0xdeadbeef) { printf("Yeah dude! You win!\nOpening your shell...\n"); setreuid(get..
2021.06.11