Update README

This commit is contained in:
Jordan ERNST 2022-08-02 19:11:57 +02:00
parent 926676eb1b
commit 89450cd2fe
2 changed files with 26 additions and 2 deletions

View File

@ -20,11 +20,20 @@
], ],
"flozz/p0wny-shell": [ "flozz/p0wny-shell": [
"shell.php" "shell.php"
],
"int0x33/nc.exe": [
"nc64.exe"
],
"BloodHoundAD/BloodHound": [
"Collectors/SharpHound.exe"
],
"InitRoot/SweetPotato": [
"SweetPotato.exe"
] ]
}, },
"githubreleasesync": { "githubreleasesync": {
"carlospolop/PEASS-ng": { "carlospolop/PEASS-ng": {
"local_version": "20220605", "local_version": "20220731",
"files": [ "files": [
"linpeas.sh", "linpeas.sh",
"winPEAS.bat", "winPEAS.bat",
@ -41,6 +50,10 @@
{ {
"filename": "chisel_{short_version}_linux_386.gz", "filename": "chisel_{short_version}_linux_386.gz",
"binpath": "chisel" "binpath": "chisel"
},
{
"filename": "chisel_{short_version}_linux_amd64.gz",
"binpath": "chisel64"
} }
] ]
}, },
@ -49,6 +62,13 @@
"files": [ "files": [
"lazagne.exe" "lazagne.exe"
] ]
},
"DominicBreuker/pspy": {
"local_version": "v1.2.0",
"files": [
"pspy32",
"pspy64"
]
} }
}, },
"ncat": { "ncat": {

6
pendora-box.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import argparse import argparse
import json import json
from pathlib import Path from pathlib import Path
@ -5,7 +7,7 @@ import hashlib
import requests import requests
import base64 import base64
import sys import sys
from os import geteuid from os import geteuid, chdir
import subprocess import subprocess
from io import BytesIO from io import BytesIO
import zipfile import zipfile
@ -434,6 +436,8 @@ def menu_choice(menu_options):
if __name__ == '__main__': if __name__ == '__main__':
chdir(Path(__file__).resolve().parent) # Change current dir to source location
parser = argparse.ArgumentParser(description='Sync your files and starts a listener on HTTP, SMB or SMB2.') parser = argparse.ArgumentParser(description='Sync your files and starts a listener on HTTP, SMB or SMB2.')
parser.add_argument('-u', '--update', action='store_true', help='update your files (described in config.json)') parser.add_argument('-u', '--update', action='store_true', help='update your files (described in config.json)')
args = parser.parse_args() args = parser.parse_args()