forked from juice-shop/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
246ee84
commit 50ebe42
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#!/usr/bin/env python3 | ||
import os | ||
import sys | ||
import requests | ||
|
||
def main(): | ||
# Desteklenen dosya isimleri ve DefectDojo'da kullanılacak scan_type değerleri | ||
valid_files = { | ||
"gitleaks.sarif": "Gitleaks SARIF Scan", | ||
"gitleaks.json": "Gitleaks Scan", | ||
"semgrep.sarif": "Semgrep SARIF Scan", | ||
"semgrep.json": "Semgrep JSON Report" | ||
} | ||
|
||
# Eğer komut satırı argümanları verilmişse, onları kullan; aksi halde çalışma dizininde bulunan dosyalar üzerinden devam et. | ||
if len(sys.argv) > 1: | ||
files_to_import = sys.argv[1:] | ||
else: | ||
files_to_import = [f for f in valid_files if os.path.exists(f)] | ||
|
||
if not files_to_import: | ||
print("İşlenecek uygun tarama çıktısı dosyası bulunamadı. Çıkılıyor.") | ||
sys.exit(1) | ||
|
||
# DefectDojo URL ve kimlik doğrulama bilgileri | ||
url = "http://34.28.243.152:8080/api/v2/import-scan/" | ||
|
||
# GitHub Actions'dan gelecek token bilgisini ortam değişkeninden okuyun | ||
token = os.environ.get("DEFECTDOJO_API_TOKEN") | ||
if not token: | ||
print("DEFECTDOJO_API_TOKEN ortam değişkeni ayarlanmamış. Çıkılıyor.") | ||
sys.exit(1) | ||
|
||
headers = { | ||
"Authorization": f"Token {token}" | ||
} | ||
|
||
# Ortak data bilgileri: aktif, doğrulanmış, minimum seviye ve engagement id (1) | ||
base_data = { | ||
"active": True, | ||
"verified": True, | ||
"minimum_severity": "Low", | ||
"engagement": 1 | ||
} | ||
|
||
for file_name in files_to_import: | ||
if file_name not in valid_files: | ||
print(f"Bilinmeyen dosya, atlanıyor: {file_name}") | ||
continue | ||
|
||
scan_type = valid_files[file_name] | ||
data = base_data.copy() | ||
data["scan_type"] = scan_type | ||
|
||
print(f"{file_name} dosyası '{scan_type}' tipi ile DefectDojo'ya gönderiliyor...") | ||
try: | ||
with open(file_name, "rb") as f: | ||
files_payload = {"file": f} | ||
# allow_redirects=False ekleyerek yönlendirmelerden kaynaklanan hataların önüne geçiyoruz | ||
response = requests.post(url, headers=headers, data=data, files=files_payload, allow_redirects=False) | ||
|
||
if response.status_code == 201: | ||
print(f"Başarıyla içe aktarıldı: {file_name}") | ||
else: | ||
print(f"{file_name} içe aktarılırken hata oluştu (Status Code: {response.status_code}): {response.content}") | ||
except Exception as e: | ||
print(f"{file_name} dosyası işlenirken hata: {e}") | ||
|
||
if __name__ == "__main__": | ||
main() |