Security News
RubyGems.org Adds New Maintainer Role
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.
@aacn.eu/use-friendly-captcha
Advanced tools
The library has functions for both frontend and backend. Both of them work independent of each other.
Include the useCaptchaHook()
in your selected file. From there you can then query the widget
and state from the hook, for you to manage and use in your form.
The hook expects the following properties:
siteKey: string;
endpoint?: FC_PUZZLE_EP; enum for the currently available endpoints (EU & global)
language?: keyof typeof localizations | Localization;
startMode?: "auto" | "focus" | "none";
showAttribution: boolean
The hook provides the following parameters:
CaptchaWidget
returns the HTML authentification widget.captchaStatus.solution
is used to determine if the puzzle was already solved (string
) or not (null
)captchaStatus.error
is used to determine if an error occured while solving (string
) or not (null
)backend wise this library provides a function that uses the FriendlyCaptcha verification API to check if the submitted puzzle solution is valid or not. It returns a boolean for further handling in your own code.
The function expects the following properties:
endpoint?: FC_VERIFICATION_EP; enum for the currently available endpoints (EU & global)
solution: string;
secret: string;
sitekey?: string;
httpPostFetcher: (see further down)
The backend expects a fetcher function as parameter. This function is provided by the user and is used to send a http post request to the fc verification server. It should match the following design:
function fetcherExample(
endpoint: string,
requestBody: { solution: string; secret: string; siteKey: string },
headers: { 'Content-Type': 'application/json'; 'Accept': 'application/json'; }
) => Promise<{ success: boolean; errors: any; } | null>
v1.0.2
FAQs
FriendlyCaptcha React Implementation
The npm package @aacn.eu/use-friendly-captcha receives a total of 583 weekly downloads. As such, @aacn.eu/use-friendly-captcha popularity was classified as not popular.
We found that @aacn.eu/use-friendly-captcha demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.