
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
react-geetest-captcha
Advanced tools
a react.js component for GEETEST
Table of Contents generated with DocToc
<RGCaptcha />
name: string
data: () => Promise<dataObject, any> | dataObject
width?: string | number
product?: 'popup' | 'float' | 'custom' | 'bind'
lang?: 'zh-cn'|'zh-hk'|'zh-tw'|'en'|'ja'|'ko'|'ru'|'ar'|'es'|'pt-pt'|'fr'|'de'
protocol?: 'http://' | 'https://'
area?: string
nextWidth?: string
bgColor?: string
timeout?: number
onReady?: () => any
onSuccess?: (result: resultObject) => any
onClose?: () => any
onError?: () => any
loadingComponent?: React.Component<{loading: boolean}>
loadingText?: string
appendTo: (name: string) => any
bindForm: (name: string, position: string) => any
getValidate: (name: string) => any
reset: (name: string) => any
verify: (name: string) => any
npm install react-geetest-captcha
import React from 'react';
import { RGCaptcha, reset } from 'react-geetest-captcha';
const CAPTCHA_NAME = 'demoCaptcha';
class Demo extends React.Component {
constructor(props) {
super(props);
this.state = {
username: '',
password: '',
captcha: false,
geetestChallenge: '',
geetestValidate: '',
geetestSeccode: '',
};
}
resetForm() {
reset(CAPTCHA_NAME);
this.setState({
username: '',
password: '',
captcha: false,
geetestChallenge: '',
geetestValidate: '',
geetestSeccode: '',
});
}
handleFieldChange(e) {
this.setState({
[e.target.name]: [e.target.value]
});
}
handleSuccess(data) {
this.setState({
captcha: true,
geetestChallenge: data.geetest_challenge,
geetestValidate: data.geetest_validate,
geetestSeccode: data.geetest_seccode,
});
}
handleSubmit(e) {
e.preventDefault();
const {
username,
password,
captcha,
geetestChallenge,
geetestValidate,
geetestSeccode,
} = this.state;
if(captcha) {
ajaxLogin({
username,
password,
geetestChallenge,
geetestValidate,
geetestSeccode,
})
.then(data => {
if(data.success) {
//
}else {
this.resetForm();
}
})
.catch(() => {
this.resetForm();
});
}
}
render() {
const { username, password } = this.state;
return (
<form onSubmit={this.handleSubmit} onChange={this.handleFieldChange}>
<label>
Username:
<input name="username" value={username} type="text" />
</label>
<label>
Password:
<input name="password" value={password} type="password" />
</label>
<RGCaptcha
name={CAPTCHA_NAME}
width="100%"
onSuccess={this.handleSuccess}
data={() =>
ajax
.then(resp => {
const { captcha } = (resp && resp.data) || {};
// console.log(captcha);
// {
// "gt": "e385d274eeedb650fa008875ff7b14a2",
// "challenge": "f4873d2af972a38811814f644920b8ab",
// "success": 1,
// }
return captcha;
})
}
/>
<button type="submit">Submit</button>
</form>
);
}
}
<RGCaptcha />
name: string
data: () => Promise<dataObject, any> | dataObject
gt: string
challenge: string
success: number
new_captcha?: boolean
width?: string | number
product?: 'popup' | 'float' | 'custom' | 'bind'
lang?: 'zh-cn' | 'zh-hk' | 'zh-tw' | 'en' | 'ja' | 'ko' | 'ru' | 'ar' | 'es' | 'pt-pt' | 'fr' | 'de'
protocol?: 'http://' | 'https://'
area?: string
nextWidth?: string
bgColor?: string
timeout?: number
onReady?: () => any
onSuccess?: (result: resultObject) => any
resultObject = instance.getValidate();
// console.log(resultObject);
// {
// geetest_challenge: "1ef13c67010acf6c282756145def60faag",
// geetest_validate: "2ea11528e5d96c06e4a14d9a1dfc5916",
// geetest_seccode: "2ea11528e5d96c06e4a14d9a1dfc5916|jordan",
// }
onClose?: () => any
onError?: () => any
loadingComponent?: React.Component<{loading: boolean}>
loadingText?: string
appendTo: (name: string) => any
a proxy method for GEETEST instance.appendTo method
bindForm: (name: string, position: string) => any
a proxy method for GEETEST instance.bindForm method
getValidate: (name: string) => any
a proxy method for GEETEST instance.getValidate method
reset: (name: string) => any
a proxy method for GEETEST instance.reset method
verify: (name: string) => any
a proxy method for GEETEST instance.verify method
FAQs
A react.js CAPTCHA for GEETEST.com
The npm package react-geetest-captcha receives a total of 150 weekly downloads. As such, react-geetest-captcha popularity was classified as not popular.
We found that react-geetest-captcha 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.