Skip to content

Commit

Permalink
add deps
Browse files Browse the repository at this point in the history
  • Loading branch information
leetcore committed Jul 3, 2023
1 parent 39e0d47 commit 56ccc82
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,11 @@ Erweiterungen und Änderungsvorschläge sind erwünscht!
## Direkter Download in Bash
``` bash
wget https://raw.githubusercontent.com/Leetcore/1337-observer/main/1337_file.txt
```

## Projekt Downloads
Download.sh hält beliebte PoC-Scripte (Log4Shell, PrintNightmare, PwnKit) auf dem Laufenden.

``` bash
bash download.sh
```
36 changes: 36 additions & 0 deletions download.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# /bin/bash

giturls=(
"https://github.com/carlospolop/PEASS-ng.git"
"https://github.com/PowerShellMafia/PowerSploit.git"
"https://github.com/ly4k/PwnKit.git"
"https://github.com/mbechler/marshalsec.git"
"https://github.com/calebstewart/CVE-2021-1675.git"
"https://github.com/AonCyberLabs/Windows-Exploit-Suggester.git"
"https://github.com/ropnop/kerbrute.git"
"https://github.com/SecureAuthCorp/impacket.git"
"https://github.com/openwall/john.git"
"https://github.com/djhohnstein/SharpChromium.git"
"https://github.com/DrorDvash/CVE-2022-22954_VMware_PoC.git"
)

if [[ -d "git" ]]
then
cd git
else
mkdir git
cd git
fi

for url in ${giturls[@]}; do
filename=$(echo ${url##*/})
folder=$(echo ${filename%%.git})
if [[ -d "${folder}" ]]
then
cd ${folder}
git fetch --all
cd ..
else
git clone ${url}
fi
done

0 comments on commit 56ccc82

Please sign in to comment.