npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

retweak

v1.5.0

Published

A CLI that tweaks and resends HTTP/S requests

Downloads

21

Readme

retweak

A CLI that tweaks and resends HTTP/S requests!

retweak can modify request URLs, methods, headers, or data and report changes in responses.

But why?

A common process in pentesting/bug bounties is web path enumeration. There are many tools to do this (e.g. dirb, dirsearch, gobuster). Note: retweak can do this but I wouldn't recommend it solely for this purpose since the aforementioned tools are better/faster.

retweak comes in handy when you want to change another part of the request (e.g. URL query parameter, request body JSON) to see if/how the response changes. Rather than manually editing and resending the request in Firefox developer tools or replaying the request with a proxy, you can programmatically tweak and resend requests with retweak.

The way it works is you define a "base request" (URL, method, headers, data), tell retweak what part of the request to "tweak", and pass a list of values. Then retweak fires off a bunch of requests. Each request is derived from the "base request" and includes one of the values in the list. Each value is injected into the request at a location you specify.

Burp Repeater has a likeminded goal of modifying and resending HTTP/S requests (and it has a UI :)). My motivation for writing retweak was to create a CLI you could easily pull off the shelf to automate this process. It's especially useful if you have tens (or hundreds) of predefined modifications you'd like to test against an endpoint. If there are other tools you think I should know about or mention here, please bring them up!

Install

$ npm i retweak

Usage

$ retweak -h

Usage: retweak [options] [command] <url>

Options:
  -V, --version                       output the version number
  -d, --data <data/@file>             request data to send
  -H, --headers <headers/@file>       request headers to send
  -i, --ignore-headers <names/@file>  don't report changes in these headers
  -j, --json                          write JSON responses to file (only if -o)
  -k, --insecure                      allow insecure TLS connection
  -l, --list <values/@file>           list of values to try
  -m, --max-data <size>B/KB           don't report data when it's over this size
  -o, --output <file>                 write all responses to file
  -p, --parallel                      send requests in parallel
  -q, --quiet                         don't show banner and debugging info
  -t, --tweak <part>                  part of the request to tweak ["url","method","header","data"]
  -X, --method <method>               request method
  -h, --help                          output usage information

Commands:
  hosts <url>                         test a bunch of values for the Host header
  methods <url>                       test all HTTP methods
  origins <url>                       test a bunch of values for the Origin header
  urlencodings <url>                  test different URL encodings

retweak searches for an asterisk ("*") in the part of the request you'd like to tweak (unless you're tweaking the request method). Then it injects each value in -l, --list at that location and sends a request for each "injection".

If you'd like to review all responses in their entirety, you can write them to a file with the -o, --output option. The responses are plaintext by default, but you can specify -j, --json if you'd like the responses in JSON format.

The CLI adopts some options from curl that take a literal value or filename as an argument. If you'd like to pass a filename, make sure to prepend it with "@" so the CLI knows you meant to pass a filename! Note: for output the argument can only be a filename so there's no need to prepend with a "@".

retweak tries to assume sensible defaults when options aren't specified. If you provide -d, --data but don't specify -m, --method, the latter defaults to POST. Otherwise, method defaults to GET. If the method's POST, PUT, or PATCH, -t, --tweak defaults to "data", otherwise it defaults to "url".

Examples

URL query param

The following sends 3 requests with different values for the query parameter, "id".

$ retweak -l "1,2,3" -t url "https://<domain>/a/b/c?id=*"

retweak has a subcommand for testing different URL encodings.

$ retweak urlencodings "https://<domain>/a/b/c?id=*"

HTTP method

The following sends 3 requests with different HTTP methods.

$ retweak -l "POST,PUT,PATCH" -t method <url>

retweak has a subcommand for testing all HTTP methods.

$ retweak methods <url>

Header

The following sends 3 requests with different Host headers.

$ retweak -H "Host: *" -l "foo.com,bar.foo.com,baz.foo.com" <url>

retweak has a subcommand for injecting a bunch of values in the Host header.

$ retweak hosts <url>

Note: you can use -l, --list if you have a list of hosts, otherwise retweak will use its own.

Cookie

The following sends 3 requests with different values for the "a" cookie.

$ retweak -H "Cookie: a=*;expires=sometime" -l "1,2,3" <url>

Request data

The following sends 3 requests with different values for the "foo" key in the JSON payload.

$ retweak -d '{"foo": "*"}' -l "bar,baz,bam" <url>

Test

$ npm test

Contributing

Please do!

If you find a bug, want to add a feature, or have a question, feel free to open an issue.

You're also welcome to create a pull request addressing an issue. You should push your changes to a feature branch and request merge to develop.