├── .bookignore ├── .gitignore ├── .travis.yml ├── Bonus.md ├── LANGS.md ├── Makefile ├── README.md ├── book.json ├── dev ├── bin │ └── ebook-convert └── docs │ └── serve.png └── en ├── .spelling ├── Appendix.md ├── Conclusion_and_Future.md ├── Introduction.md ├── README.md ├── SUMMARY.md ├── assets └── logo.svg ├── ch1 ├── HelloWorld.md ├── Installation.md ├── README.md └── Troubleshooting.md ├── ch2 ├── Libraries_and_Frameworks.md ├── README.md ├── Symbols_classes_and_methods.md ├── Target_Info.md └── opening.md ├── ch3 ├── README.md ├── Scripts.md ├── Scripts │ └── scripts.md └── scripts.md ├── ch4 └── README.md ├── ch5 └── README.md └── styles ├── pdf.css └── website.css /.bookignore: -------------------------------------------------------------------------------- 1 | /dev 2 | .travis.yml 3 | .gitignore 4 | Makefile 5 | README 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/.travis.yml -------------------------------------------------------------------------------- /Bonus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/Bonus.md -------------------------------------------------------------------------------- /LANGS.md: -------------------------------------------------------------------------------- 1 | * [English](en) 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/README.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/book.json -------------------------------------------------------------------------------- /dev/bin/ebook-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/dev/bin/ebook-convert -------------------------------------------------------------------------------- /dev/docs/serve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/dev/docs/serve.png -------------------------------------------------------------------------------- /en/.spelling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/.spelling -------------------------------------------------------------------------------- /en/Appendix.md: -------------------------------------------------------------------------------- 1 | # Appendix 2 | 3 | -------------------------------------------------------------------------------- /en/Conclusion_and_Future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/Conclusion_and_Future.md -------------------------------------------------------------------------------- /en/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/Introduction.md -------------------------------------------------------------------------------- /en/README.md: -------------------------------------------------------------------------------- 1 | # r2frida - A love story 2 | 3 | Written by NowSecure's Research Team. 4 | 5 | -------------------------------------------------------------------------------- /en/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/SUMMARY.md -------------------------------------------------------------------------------- /en/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/assets/logo.svg -------------------------------------------------------------------------------- /en/ch1/HelloWorld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch1/HelloWorld.md -------------------------------------------------------------------------------- /en/ch1/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch1/Installation.md -------------------------------------------------------------------------------- /en/ch1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch1/README.md -------------------------------------------------------------------------------- /en/ch1/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch1/Troubleshooting.md -------------------------------------------------------------------------------- /en/ch2/Libraries_and_Frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch2/Libraries_and_Frameworks.md -------------------------------------------------------------------------------- /en/ch2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch2/README.md -------------------------------------------------------------------------------- /en/ch2/Symbols_classes_and_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch2/Symbols_classes_and_methods.md -------------------------------------------------------------------------------- /en/ch2/Target_Info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch2/Target_Info.md -------------------------------------------------------------------------------- /en/ch2/opening.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/ch2/opening.md -------------------------------------------------------------------------------- /en/ch3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/ch3/Scripts.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/ch3/Scripts/scripts.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/ch3/scripts.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/ch4/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/ch5/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/styles/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/styles/pdf.css -------------------------------------------------------------------------------- /en/styles/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida-book/HEAD/en/styles/website.css --------------------------------------------------------------------------------