Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
metashield-clean-up-sdk-python | Kitploit
ツール/GitHubGitHub/elevenpaths/metashield-clean-up-sdk-python
スクリプトと自動化データ復旧プライバシーユーティリティとフレームワーク
GitHubelevenpaths/metashield-clean-up-sdk-python

metashield-clean-up-sdk-python

リポジトリを見る

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有
228年前未レビュー

Metashield-clean-up-sdk-python

インストール

metashield_clean_up パッケージを pip でインストールします::

root@kitploit:~
pip install metashield_clean_up

使い方

ファイルをクリーニングする例。

.. code-block:: python

root@kitploit:~
import time
import base64
from metashield_clean_up.api import MetashieldCleanUp

api = MetashieldCleanUp("REPLACE_APP_ID_HERE", "REPLACE_SECRET_KEY_HERE")
with open("file.pdf", "rb") as f:
    response = api.clean_file(f.read(), "file.pdf")

clean_id = response.data["cleanId"]

time.sleep(5)  # wait until file is cleaned

response2 = api.get_clean_result(clean_id)
decoded = base64.b64decode(response2.data[clean_id])

with open("cleanFile.pdf", "w") as f:
    f.write(decoded)

テストの実行

テストを実行する前に、tests/settings_default.py モジュールの一部の設定を置き換えてください。

テストは Python Unittest で作成されています。次のコマンドを実行してください::

root@kitploit:~
python -m unittest discover tests
ツールをダウンロード