added r2
This commit is contained in:
parent
601d2edb2e
commit
b60677dd14
|
@ -0,0 +1,31 @@
|
||||||
|
# Radare2
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
### Dynamic
|
||||||
|
```sh
|
||||||
|
r2 -d <binary>
|
||||||
|
```
|
||||||
|
* Analyze
|
||||||
|
```sh
|
||||||
|
aaa
|
||||||
|
```
|
||||||
|
* Show main
|
||||||
|
```sh
|
||||||
|
pdf @main
|
||||||
|
```
|
||||||
|
* Breakpoint
|
||||||
|
```sh
|
||||||
|
db 0xdeadbeef
|
||||||
|
```
|
||||||
|
* Show rbp-0x4
|
||||||
|
```sh
|
||||||
|
px @rbp-0x4
|
||||||
|
```
|
||||||
|
* Continue
|
||||||
|
```sh
|
||||||
|
dc
|
||||||
|
```
|
||||||
|
* Show registers
|
||||||
|
```sh
|
||||||
|
dr
|
||||||
|
```
|
|
@ -1,6 +1,8 @@
|
||||||
# PHP Command Injection
|
# PHP Command Injection
|
||||||
Injecting commands to execute code on the server side via php.
|
Injecting commands to execute code on the server side via php.
|
||||||
|
|
||||||
|
* [Hacktricks](https://book.hackstricks.xyz/pentesting-web/file-upload)
|
||||||
|
|
||||||
## Blind Command Injection
|
## Blind Command Injection
|
||||||
Attacker does not register a direct response.
|
Attacker does not register a direct response.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue