Skip to content

Releases: projectdiscovery/nuclei

v3.1.8

30 Jan 22:47
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.1.7...v3.1.8

v3.1.7

22 Jan 21:53
Compare
Choose a tag to compare

What's Changed

  • Added support to upload result to existing pdpc scan using -scan-id option by @tarunKoyalwar in #4662
  $ nuclei -u example.com -cloud-upload -scan-id XXXXXX

Full Changelog: v3.1.6...v3.1.7

v3.1.6

18 Jan 19:50
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.1.5...v3.1.6

v3.1.5

10 Jan 13:27
Compare
Choose a tag to compare

What's Changed

Other Changes

Full Changelog: v3.1.4...v3.1.5

v3.1.4

08 Jan 09:49
Compare
Choose a tag to compare

What's Changed

🎉 New Features

🐞 Bug Fixes

Other Changes

New Contributors

Full Changelog: v3.1.3...v3.1.4

v3.1.3

21 Dec 12:45
Compare
Choose a tag to compare

What's Changed

Other Changes

New Contributors

Full Changelog: v3.1.2...v3.1.3

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