![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
http-post-headers-faker
Advanced tools
Generates browser-like POST HTTP headers respecting their order
Get browser-like HTTP headers for POST requests
Most libraries use GET header order for POST requests and the request get detected as a bot
e.g. Akamai
const faker = require("http-post-headers-faker");
const headers = faker.generateChromeHttpPostHeaders();
Result:
{
Host: 'example.com',
Connection: 'keep-alive',
'Content-Length': 0,
Pragma: 'no-cache',
'Cache-Control': 'no-cache',
'sec-ch-ua': '"Not/A)Brand";v="8", "Chromium";v="115", "Google Chrome";v="115"',
'sec-ch-ua-platform': '"Windows"',
'Accept-Language': 'en-US',
'sec-ch-ua-mobile': '?0',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36',
'Content-Type': 'application/json',
Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
Origin: 'https://example.com',
'Sec-Fetch-Site': 'same-origin',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
Referer: 'https://example.com/',
'Accept-Encoding': 'gzip, deflate, br'
}
const faker = require("http-post-headers-faker");
const headers = faker.generateFirefoxHttpPostHeaders({
majorVersion: 115,
});
Result:
{
Host: 'example.com',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0',
Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8',
'Accept-Language': 'en-US,en;q=0.5',
'Accept-Encoding': 'gzip, deflate, br',
'Content-Type': 'application/json',
'Content-Length': 0,
Origin: 'https://example.com',
Connection: 'keep-alive',
Referer: 'https://example.com/',
'Upgrade-Insecure-Requests': '1',
'Sec-Fetch-Dest': 'document',
'Sec-Fetch-Mode': 'navigate',
'Sec-Fetch-Site': 'same-site',
'Sec-Fetch-User': '?1'
}
generateChromeHttpPostHeaders(options)
Returns chromium-like headers
{
host = "example.com",
scheme = "https",
majorVersion = 115,
secChUaPlatform = "Windows",
isMobile = false,
acceptLanguage = "en-US",
keepConnectionAlive = true,
userAgentPlatform = "Windows NT 10.0; Win64; x64",
accept = "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
secFetchSite = "same-origin",
contentLength = 0,
contentType = "application/json",
}
generateFirefoxHttpPostHeaders(options)
Retuns gecko-like headers
{
host = "example.com",
scheme = "https",
majorVersion = 115,
acceptLanguage = "en-US,en;q=0.5",
keepConnectionAlive = true,
userAgentPlatform = "Windows NT 10.0; Win64; x64; rv:109.0",
accept = "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8",
secFetchSite = "same-site",
contentType = "application/json",
contentLength = 0,
}
If options are overridden, they will merge with the default ones.
Thus, changing majorVersion
merges with the default options of their respective browser.
Content-Length
's and other data-specific header values should be changed, e.g.
const buffer = getBufferSomehow();
headers['Content-Length'] = buffer.length
npm test
FAQs
Generates browser-like POST HTTP headers respecting their order
The npm package http-post-headers-faker receives a total of 0 weekly downloads. As such, http-post-headers-faker popularity was classified as not popular.
We found that http-post-headers-faker 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.