Skip to content

Releases: ignis-sec/puff

Enhancement - stdin mode

05 Jul 16:38
Compare
Choose a tag to compare

PLEASE USE NPM INSTALL OR GIT CLONE FOR RELEASE

Added stdin mode.

Running with stdin fuzzing mode:

cat urls.txt | node puff.js -w .\wordlist-examples\events.txt


cat urls.txt | puff -w .\wordlist-examples\events.txt

Where urls.txt is

http://example.com?query=FUZZ
https://another.com/page/#FUZZ

Running with stdin single payload mode:

cat urls.txt | node puff.js -w .\wordlist-examples\events.txt


cat urls.txt | puff -w .\wordlist-examples\events.txt

Where urls.txt is

http://example.com?query=<script>alert()</script>
http://example.com?query=javascript:alert()
https://another.com/page/#<script>alert()</script>

PLEASE USE NPM INSTALL OR GIT CLONE FOR RELEASE

Bugfix for npm package installation on windows

29 Jun 18:56
Compare
Choose a tag to compare

Bugfixes

Fixed an issue where npm package installation on windows tries to run js file instead of the cmd wrapper.

Thanks to @enjloezz for the heads up and the solution!

0.0.1

27 Jun 15:50
Compare
Choose a tag to compare
0.0.1 Pre-release
Pre-release

First release!

0.0.2 - Bugfixes about chromium path

28 Jun 09:25
Compare
Choose a tag to compare

Added features

  • Can set chromium path via -c or --chromePath command line parameter.
  • Can resolve chromium paths with wildcards.

Bugfixes

  • Fixed static chromium path i forgot in the hasty first release, shipping config.json with releases now.