목록에러처리 (8)
Self-Improvement
gdb-multiarch를 자동으로 설치해도 아래와 같이 적용이 안되는 경우 $ gdb-multiarch -q bof File "~/.gef-60fd341ba076942faac96fd6118ca927998ec0d9.py", line 1 You are being redirected. ^ SyntaxError: invalid syntax Reading symbols from bof...(no debugging symbols found)...done. (gdb) q 위 2줄을 수행하고나면 적용이 된다. $ wget -O ~/.gdbinit-gef.py -q http://gef.blah.cat/py $ echo source ~/.gdbinit-gef.py >> ~/.gdbinit -----------------..
fmk 툴을 설치한 후 src 디렉터리의 uncramfs 명령어를 사용한다. ./uncramfs
https://github.com/sviehb/jefferson sviehb/jefferson JFFS2 filesystem extraction tool. Contribute to sviehb/jefferson development by creating an account on GitHub. github.com 설치
https://github.com/devttys0/sasquatch devttys0/sasquatch Contribute to devttys0/sasquatch development by creating an account on GitHub. github.com 설치 아래의 내용에서 위 클론이 아닌 다른 클론으로 다운받아서 설치하면된다. https://github.com/devttys0/sasquatch/issues/48 ‘if’ clause does not guard... [-Werror=misleading-indentation] · Issue #48 · devttys0/sasquatch Error: Hunk #1 succeeded at 32 with fuzz 1. cc -g -O2 -I. -I./LZ..
kalilinux에서 #apt-get update을 하시에 GPG error이 발생하면서 update가 되지를 않는다. 이 오류로 인하여 몇일을 찾아 헤매였었는데.. 드디어 알아냈다. 이오류는 GPG키값이 만료가 되어서 임으로 GPG키값을 갱신을 시켜주면 다시 가능하다 #wget https://http.kali.org/kali/pool/main/k/kali-archive-keyring/kali-archive-keyring_2018.1_all.deb 으로 키값을 받아오고 #apt install ./kali-archive-keyring_2018.1_all.deb 으로 설치를 진행하면 해결이 되어진다. #apt-get update을 하게 되면 이제는 잘되는 걸 확인할 수 가있다.