mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-01-16 20:43:58 -08:00
Added https://github.com/g0tmi1k to the project leaders list.
This commit is contained in:
parent
f9c1ec678c
commit
778b16115f
61 changed files with 1 additions and 18630793 deletions
|
|
@ -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.
|
||||
|
|
@ -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(" * `
|
||||
Loading…
Add table
Add a link
Reference in a new issue