> For the complete documentation index, see [llms.txt](https://wiki.smhuda.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.smhuda.com/pentesting/application-security/mobile-security/code-security.md).

# Code Security

## Find All Files Containing a Specific String (Linux)

Use `grep -ilR`:

```
grep -Ril "text-to-find-here" /
```

* `i` stands for ignore case (optional in your case).
* `R` stands for recursive.
* `l` stands for "show the file name, not the result itself".
* `/` stands for starting at the root of your machine.
