Added https://github.com/g0tmi1k to the project leaders list.

This commit is contained in:
Daniel Miessler 2018-12-31 11:53:56 -08:00
parent f9c1ec678c
commit 778b16115f
61 changed files with 1 additions and 18630793 deletions

View file

@ -1 +0,0 @@
The GrepStrings directory will hold various lists that can be passed to grep when looking for interesting content within filesystems or source code.

View file

@ -1,46 +0,0 @@
# Auditing php source code with grep
## XSS
`grep -Ri "echo" *`
`grep -Ri "\$_" * | grep "echo"`
`grep -Ri "\$_GET" * | grep "echo"`
`grep -Ri "\$_POST" * | grep "echo"`
`grep -Ri "\$_REQUEST" * | grep "echo"`
- - -
## SQL Injection
`grep -Ri "$sql" *`
`grep -RI "mysqli(" *`
`grep -Ri "pdo(" * `
- - -
## File inclusion
`grep -Ri "file_include(" * `
`grep -Ri "file_get_contents(" * `
`grep -Ri "include(" *`
- - -
## Command execution
`grep -Ri "shell_exec(" *`
`grep -RIt "system(" *`
`grep -Ri "exec(" * `