github projectdiscovery/nuclei v3.1.0

latest releases: v3.3.2, v3.3.1, v3.3.0...
9 months ago

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

Don't miss a new nuclei release

NewReleases is sending notifications on new releases.