https://github.com/ultraflame4/onlyhumansredirects
https://github.com/ultraflame4/onlyhumansredirects
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ultraflame4/onlyhumansredirects
- Owner: ultraflame4
- Created: 2023-06-23T05:50:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-11-09T05:20:43.000Z (8 months ago)
- Last Synced: 2025-11-09T07:08:19.860Z (8 months ago)
- Language: TypeScript
- Homepage: https://links.ultr42.dev/
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OnlyHumansRedirects
This is a very bad human captcha that redirects to your website.

## Usage
This website accepts a `q` query parameter which contains information about the redirect encoded in base64 + json
**Example**
Redirect information:
```json
{
"to" : "www.google.com"
}
```
Encoded in base 64:
`ewoidG8iOiJ3d3cuZ29vZ2xlLmNvbSIKfQ`
Final url:
`ultraflame4.github.io/OnlyHumansRedirect?q=ewoidG8iOiJ3d3cuZ29vZ2xlLmNvbSIKfQ`
This url will redirect to www.google.com
## redirect information json data stuff
Typings for the json
```typescript
interface dataJsonFormat {
to: string,
easter?: boolean
}
```