Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
load-generator
Advanced tools
Generates http(s) load.
Continously calls the URL, with 2 workers.
npx load-generator http://www.example.com/
With 4 workers and with cache buster, {__random__}
is replaced by a random number.
npx load-generator --workers 4 http://www.example.com/?random={__random__}
Multiple URLs with randomized language value.
npx load-generator --values lang=de,en,it,fr http://www.example.com/{lang}/ http://www.example.com/{lang}/category/2/?random={__random__}
--url
string[]
URLs containing optional placeholders. A placeholder must be in curly braces and will be filled with the corresponding values in the named values option.
Default option This is the default option, the option --url
may be ommitted for simplicity.
--values
string[]
Named value lists for placeholders in the URLs. Must follow the following name and comma-separated pattern.
Example, add values for lang
: --values "lang=en,de,it,fr"
--header
string[]
HTTP header added to every request.
Example to add cookies: --header "Cookie=name1:value1; name2:value2"
Example JSON Content-Type: --header "Content-Type=application/json"
-p
, --porcelain
boolean
false
Output in machine friendly format, no UI.
--pause
int
0
Pause between each request per worker in millisecons.
--timeout
int
3000
Request timeout in milliseconds, set to 0 to use system default.
-w
, --workersint
2
Amount of parallell requesting workers.
-h
, --help
Displays help text.
-v
, --version
Displays version.
1.) Create a configuration file, and save it as load-generator.json
In this example, each of the 8 worker picks one URL at the time, fills in placeholders randomly within it's list of values and calls it, one at the time and pauses 100ms in between calls.
{
"pause": 100,
"workers": 8,
"timeout": 1000,
"urls": [
"http://www.example.com/{lang}/",
"http://www.example.com/{lang}/?sort={sort}&page={page}&cachebust={__random__}"
],
"values": {
"lang": ["de", "fr", "it", "en"],
"sort": ["1", "2", "3", "4", "5", "7", "8", "10"],
"page": ["1", "2", "3", "4", "5", "7", "8", "10"]
},
"headers": {
"cookie": "accessToken=1234abc; userId=1234"
}
}
2.) Run npx load-generator
in the same directory.
Hint: Config file and CLI options can be combined, where CLI options always have higher priority over eqivalent config file options.
FAQs
Generates http(s) load.
We found that load-generator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.