Projects STRLCPY Hunt3r Commits 5727482a
🤬
  • ■ ■ ■ ■ ■ ■
    backend/app/controllers/scans_controller.rb
    skipped 83 lines
    84 84   scan_cmd[:cmd] += " --scan-id #{scan.id} --type-scan #{scan.type_scan} -d #{scan.domain}"
    85 85   
    86 86   slack_webhook = Tool.find_by(name: 'slack')&.infos
    87  - scan_cmd[:cmd] += " --slack #{slack_webhook['webhook']}"
    88  - scan_cmd[:errors] = 'missing_webhook' if scan.notifs && slack_webhook.nil?
     87 + if scan.notifs && slack_webhook.nil?
     88 + scan_cmd[:errors] = 'missing_webhook'
     89 + else
     90 + scan_cmd[:cmd] += " --slack #{slack_webhook['webhook']}"
     91 + end
    89 92   
    90 93   scan_cmd = build_recon_scan_cmd(scan, scan_cmd) if scan.type_scan == 'recon'
    91 94   scan_cmd = build_nuclei_scan_cmd(scan, scan_cmd) if scan.nuclei || scan.type_scan == 'nuclei'
    skipped 240 lines
  • ■ ■ ■ ■
    backend/storage/configs/cloud-init.yml
    skipped 44 lines
    45 45   - mv gau /usr/local/bin/
    46 46   - rm LICENSE README.md gau_2.1.2_linux_amd64.tar.gz
    47 47   # WappaGo
    48  - - wget https://github.com/EasyRecon/wappaGo/releases/download/release-0.0.7/wappaGo_linux_x64
     48 + - wget https://github.com/EasyRecon/wappaGo/releases/download/release-0.0.8/wappaGo_linux_x64
    49 49   - mv wappaGo_linux_x64 /usr/local/bin/wappago
    50 50   - chmod +x /usr/local/bin/wappago
    51 51   - wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    skipped 9 lines
  • ■ ■ ■ ■ ■ ■
    docs/changelog.md
    skipped 5 lines
    6 6   
    7 7  - Fix namespace confusion when calling methods
    8 8   
     9 +**Scan Improvements :**
     10 + 
     11 +- Update WappaGo
     12 + 
     13 +**Backend Improvements :**
     14 + 
     15 +- Fix error when webhook is missing
     16 + 
    9 17  ## Version 1.6.2
    10 18   
    11 19  **Scan Improvements :**
    skipped 107 lines
Please wait...
Page is in error, reload to recover