mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
veil-evasion: v2.28.2 bump
This commit is contained in:
parent
2bf6f06a99
commit
8961160628
5 changed files with 6 additions and 99 deletions
|
|
@ -1,2 +1 @@
|
|||
DIST veil-evasion-2.26.5.tar.gz 46529329 SHA256 801d284429bc89c87953e344958c7c8e6a1b5a3af2ad6e11635345629d82e606 SHA512 811830134f98a7e39c382fecc230665498b13e4bb09ed2d5538fed829d0dff8fc99fb086029d393897ef77c3863de2f39591e673bf96dc872c00d7d65be465b8 WHIRLPOOL 3790deae654f5909829b07afafd165781d33024c5093557af622f25388754428772ba5a33b205fabf8f8625fe5c968812d130d6564b17116efe5512a9bc1a243
|
||||
DIST veil-evasion-2.28.1.tar.gz 46501403 SHA256 9ca126a317e8e0d31cc37cbc8224cae02ed0d0a6f48b2439eee7dd7608195a88 SHA512 1851f2069ac351db1e2ef280df43f305fefac2751a84c2ba83bb07f15b3caa7b74690a4cf4394911cc624ff0cd6ef076724010ec1d8fb1d8349e910828595783 WHIRLPOOL 764f3693cc0b533f29b7923065c7cf2638df55d0ad1ad838d6b33e2e566eb7cf67a9a65b4df73c5e82db77f3dc7f67ed223d1b3004878334cacbf8ecdf38f1c2
|
||||
DIST veil-evasion-2.28.2.tar.gz 195208132 SHA256 6836f79ae72f9fdab9a1ba63f3b94efa9ff0f9b496983ad0fe33a7689149c46e SHA512 0daa5c05ef552aa5fad6b0913c9517de78ea5107abcefce4321060e7554eec41a1c5a505743c8aa6eee5674f29c83117f01f1e97fe754f2e63404f8d77749c52 WHIRLPOOL 7ca3a10e33af60e5b4eace2490f75d90ca7abc4fd0920d4a648e02e1d48d75fc2705d618ae776765ee15d6a3c38f6055a1d73cdd13f61f13c09886d3d55f3efb
|
||||
|
|
|
|||
|
|
@ -1,96 +0,0 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import errno
|
||||
import os
|
||||
from os.path import expanduser
|
||||
|
||||
def mkdir_p(path):
|
||||
try:
|
||||
os.makedirs(path)
|
||||
except OSError as exc: # Python >2.5
|
||||
if exc.errno == errno.EEXIST and os.path.isdir(path):
|
||||
pass
|
||||
else:
|
||||
raise
|
||||
|
||||
HOME_PATH = expanduser("~")
|
||||
|
||||
##################################################################################################
|
||||
#
|
||||
# Veil-Framework configuration file
|
||||
#
|
||||
# Run update.py to automatically set all these options to their defaults.
|
||||
#
|
||||
##################################################################################################
|
||||
|
||||
|
||||
|
||||
#################################################
|
||||
#
|
||||
# General system options
|
||||
#
|
||||
#################################################
|
||||
|
||||
# OS to use (Kali/Backtrack/Debian/Windows)
|
||||
OPERATING_SYSTEM="Linux"
|
||||
|
||||
# Terminal clearing method to use (use "false" to disable it)
|
||||
TERMINAL_CLEAR="clear"
|
||||
|
||||
# Path to temporary directory
|
||||
TEMP_DIR="/tmp/"
|
||||
|
||||
# Default options to pass to msfvenom for shellcode creation
|
||||
MSFVENOM_OPTIONS=""
|
||||
|
||||
# The path to the metasploit framework, for example: /usr/share/metasploit-framework/
|
||||
METASPLOIT_PATH="/usr/lib/metasploit"
|
||||
|
||||
# The path to msfvenom for shellcode generation purposes
|
||||
MSFVENOM_PATH="/usr/bin/"
|
||||
|
||||
# The path to pyinstaller, for example: /opt/pyinstaller-2.0/
|
||||
PYINSTALLER_PATH="/opt/pyinstaller-2.0/"
|
||||
|
||||
|
||||
#################################################
|
||||
#
|
||||
# Veil-Evasion specific options
|
||||
#
|
||||
#################################################
|
||||
|
||||
VEIL_RESULTS_PATH=HOME_PATH+"/.veil-evasion"
|
||||
|
||||
# Veil-Evasion install path
|
||||
VEIL_EVASION_PATH="/usr/lib/veil-evasion"
|
||||
|
||||
# Path to output the source of payloads
|
||||
PAYLOAD_SOURCE_PATH=VEIL_RESULTS_PATH+"/source/"
|
||||
|
||||
# Path to output compiled payloads
|
||||
PAYLOAD_COMPILED_PATH=VEIL_RESULTS_PATH+"/compiled/"
|
||||
|
||||
# Whether to generate a msf handler script and where to place it
|
||||
GENERATE_HANDLER_SCRIPT="True"
|
||||
HANDLER_PATH=VEIL_RESULTS_PATH+"/handlers/"
|
||||
|
||||
# Running hash list of all payloads generated
|
||||
HASH_LIST=VEIL_RESULTS_PATH+"/hashes.txt"
|
||||
|
||||
|
||||
#################################################
|
||||
#
|
||||
# Veil-Catapult specific options
|
||||
#
|
||||
#################################################
|
||||
|
||||
# Veil-Catapult install path
|
||||
VEIL_CATAPULT_PATH=VEIL_EVASION_PATH+"/veil-catapult/"
|
||||
|
||||
# Path to output Veil-Catapult resource/cleanup files
|
||||
CATAPULT_RESOURCE_PATH=VEIL_RESULTS_PATH+"/catapult/"
|
||||
|
||||
mkdir_p(PAYLOAD_SOURCE_PATH)
|
||||
mkdir_p(PAYLOAD_COMPILED_PATH)
|
||||
mkdir_p(HANDLER_PATH)
|
||||
mkdir_p(CATAPULT_RESOURCE_PATH)
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
~app-antivirus/malheur-0.5.3 ~arm
|
||||
~app-antivirus/veil-evasion-2.26.5
|
||||
=app-antivirus/veil-evasion-2.28*
|
||||
|
||||
~dev-dotnet/wxnet-0.7.2
|
||||
~net-firewall/sanewall-1.1.6
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
dev-libs/capstone python
|
||||
|
||||
dev-libs/libpcre pcre16
|
||||
|
||||
dev-libs/boost mpi
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
dev-python/capstone-python cython
|
||||
|
||||
#required by fern-wifi-cracker and kde
|
||||
dev-python/PyQt4 compat webkit declarative sql script
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue