Skip to content

Releases: projectdiscovery/nuclei

v3.1.2

17 Dec 20:41
Compare
Choose a tag to compare

What's Changed

Other Changes

Full Changelog: v3.1.1...v3.1.2

v3.1.1

09 Dec 13:25
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.1.0...v3.1.1

v3.1.0

30 Nov 17:34
Compare
Choose a tag to compare

What's Changed

🎉 New Features

tcp:
  - host:
      - "{{Hostname}}"
    port: 22,2222
  • Added port, scheme and url field in json(l) output by @tarunKoyalwar in #4417
  • Added support to execute commands via ssh client in javascript protocol by @5amu in #4407
javascript:
  - args:
      Host: "{{Host}}"
      Port: "22"
    code: |
      var m = require("nuclei/ssh");
      var c = m.SSHClient();
      c.Connect(Host, Port, template.Username, template.Password)
      c.Run("echo lolz > /tmp/lolz");
      var response = c.Run("cat /tmp/lolz");
      c.Close()
      to_json(response);
  • Added support to set dialer timeout by @wk8 in #4441
 -dt, -dialer-timeout value            timeout for network requests.
 -dka, -dialer-keep-alive value        keep-alive duration for network requests.
  • Added connection reset by peer to include error used for host exclusion by @XTeam-Wing in #4265
  • Added support to include failed matches for errored hosts with -ms option by @dogancanbakir in #4373

Other Changes

Issues closed in this release - https://github.com/projectdiscovery/nuclei/milestone/44?closed=1

New Contributors

Full Changelog: v3.0.4...v3.1.0

v3.0.4

18 Nov 09:21
Compare
Choose a tag to compare

What's Changed

🎉 New Features

  • Added base64 encoded template into json(l) result for custom templates with option to exclude by @dogancanbakir in #4315
   -ot, -omit-template  omit encoded template in the JSON, JSONL output
    tls_version_enum: true
    tls_cipher_enum: true
    tls_cipher_types: 
      - insecure 
      - weak

🐞 Bug Fixes

🔨 Maintenance

Other Changes

  • Enabled cookie-reuse as default with ability to disable optionally by @dogancanbakir in #4292
    disable-cookie: true
PPROF=1 ./nuclei -u https://scanme.sh

Full Changelog: v3.0.3...v3.0.4

v3.0.3

02 Nov 14:46
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.0.2...v3.0.3

v3.0.2

26 Oct 16:00
Compare
Choose a tag to compare

What's Changed

Other Changes

Full Changelog: v3.0.1...v3.0.2

v3.0.1

20 Oct 12:38
Compare
Choose a tag to compare

What's Changed

🐞 Bug Fixes

  • Fixed issues with template preprocessor + multi request variables indexing by @tarunKoyalwar in #4262

Note:

This release includes fixes for bugs introduced in v3.0; upgrade to the latest version if you are using v3.

Full Changelog: v3.0.0...v3.0.1

v3.0.0

19 Oct 15:11
Compare
Choose a tag to compare

Nuclei v3 is now live and kicking!

We're excited to announce a variety of new features, enhancements, and bug fixes for seamless vulnerability identification!

  • For an in-depth understanding and details of the new elements, visit our v3 release blog.
  • To get a detailed overview of all the closed issues linked with this release, please explore the Nuclei v3 release milestone on GitHub.
  • Looking to get started with these features? Our Nuclei Docs will guide you through everything you need to know.

What's Changed

🎉 New Features

🐞 Bug Fixes

  • Fixed issue with -fh2 option to make http2 connection request by @Mzack9999 in #4237
  • Added support to avoid duplicate issue creation in GitHub reporting by @mionskowski-form3 in #4201
  • Added support to avoid duplicate issue creation in GitLab reporting by @skahn007gl in #4152

🔨 Maintenance

Other Changes

New Contributors

Full Changelog: v2.9.15...v3.0.0

v2.9.15

16 Sep 16:01
Compare
Choose a tag to compare

What's Changed

🐞 Bug Fixes

  • Fixed issue with request using TE instead of CL header in certain case by @tarunKoyalwar in #4154
  • Fixed issue with matcher status option for cluster template execution by @ShubhamRasal in #4132
  • Fixed issue with loader for deterministic clustering by @Mzack9999 in #4124

🔨 Maintenance

Other Changes

Full Changelog: v2.9.14...v2.9.15

v2.9.14

04 Sep 10:30
Compare
Choose a tag to compare

What's Changed

🎉 New Features

  • Added impact field under template information block by @ehsandeep in #4121
  impact: |
    Successful exploitation of this vulnerability could allow an attacker to send arbitrary requests from the server, potentially leading to unauthorized access or data leakage.

🔨 Maintenance

Other Changes

Full Changelog: v2.9.13...v2.9.14