풀이 $ pwn checksec chall [*] '/home/user/바탕화면/zer0ptf/safe_vector/chall' Arch: amd64-64-little RELRO: Full RELRO Stack: No canary found NX: NX enabled PIE: PIE enabled #include #include template class safe_vector: public std::vector { public: void wipe() { std::vector::resize(0); std::vector::shrink_to_fit(); } T& operator[](int index) { int size = std::vector::size(); if (size == 0) { throw "ind..