[a / b / c / d / e / f / g / gif / h / hr / k / m / o / p / r / s / t / u / v / vg / vm / vmg / vr / vrpg / vst / w / wg] [i / ic] [r9k / s4s / vip] [cm / hm / lgbt / y] [3 / aco / adv / an / bant / biz / cgl / ck / co / diy / fa / fit / gd / hc / his / int / jp / lit / mlp / mu / n / news / out / po / pol / pw / qst / sci / soc / sp / tg / toy / trv / tv / vp / vt / wsg / wsr / x / xs] [Settings] [Search] [Mobile] [Home]
Board
Settings Mobile Home
/g/ - Technology

Name
Options
Comment
Verification
4chan Pass users can bypass this verification. [Learn More] [Login]
File
  • Please read the Rules and FAQ before posting.
  • You may highlight syntax and preserve whitespace by using [code] tags.

08/21/20New boards added: /vrpg/, /vmg/, /vst/ and /vm/
05/04/17New trial board added: /bant/ - International/Random
10/04/16New board for 4chan Pass users: /vip/ - Very Important Posts
[Hide] [Show All]


[Advertise on 4chan]


i'm tired boss
>>
>not the first one
>clearly the second one
>dont need to check the others
is it all americans complaining about these or is it some other bunch of third world room temperature iq retards?
>>
At least you don't have to scroll through it and see only one image at a time.
>>
Just dont get banned and yu will get easier captchas as your score increases
>>
>all this to call someone a faggot
did they decide to nuke the 4chan app or something by make it more annonying for the remaining 3.5 anons that still visit this shithole for some reason
>>
>>108007786
yes, it's to push pass sales but they also are warring with proxies. the problem is they power trip too much and so people literally need proxies just to be able to post. but it keeps killing the activity on the site lol.

like this is also why it constantly rejects 100% correct captchas now, it's to annoy potential proxies and to try to make you buy a pass. but i would never give these power tripping faggots a dime with how they operate the site.
>>
>>108007772
This is the worst part of the CAPTCHA. Got a user script from pastebin that shows all at once from a thread a few days go, but Ican't find the link.

// ==UserScript==
// @name 4chan Captcha Formatter
// @namespace 4chan-captcha-formatter
// @match https://boards.4chan.org/*
// @match https://sys.4chan.org/*
// @match https://4chan.org/banned
// @grant none
// @version 1.2.4
// @author -
// @description Shows the new 4chan captcha as a grid of images.
// ==/UserScript==

//improvements: auto-dismiss 4chan-X/XT warnings / fixes textbox focus loss / easier styling / slightly faster
//shift+space: cycle through selections or Get Captcha
//enter: confirm selection

//TCaptcha module is defined in https://s.4cdn.org/js/tcaptcha.min.4.js
(function () {
"use strict";

// Selectors
const SELECTORS = {
image: '.tcaptcha-image',
container: '#t-task',
closeNotify: '#notifications .notification.warning a.close'
};

// State
let currentHighlightIndex = -1;
let cachedButtons = [];
>>
>>108007838
  // Styles
const style = document.createElement('style');
style.textContent = `
.tcaptcha-image { /*Buttons*/
padding: 0;
margin: 4px;
border: none;
background: none;
}
.tcaptcha-image img { /*Images*/
height: 100%;
width: 100%;
}
.tcaptcha-image.active { /*Selector*/
outline: 3px solid #00c06f;
}
#t-desc { /*Instructions*/
white-space: pre-line;
text-align: center;
font-size: 14px;
user-select: none;
width: 100%;
}
#t-task { /*Container*/
display: flex;
flex-wrap: wrap;
gap: 4px;
width: 100%;
justify-content: center;
margin: 0 auto;
overflow: auto;
max-height: 60vh;
padding: 0 !important;
height: auto !important;
white-space: normal !important;
align-items: normal !important;
}
.captcha-root > div { /*Captcha box*/
background-color: #1e1e1e !important;
color: #d0d0d0 !important;
height: auto !important;
}
`;
document.head.appendChild(style);

function updateHighlight() {
cachedButtons.forEach((btn, index) => {
const isActive = index === currentHighlightIndex;
btn.classList.toggle('active', isActive);
if (isActive) btn.scrollIntoView({ block: 'nearest' });
});
}

function formatDescription(str) {
return str
.replace(/^Use the scroll bar below to\s*|,\s*then click next\.?/gi, '')
.replace(/^./, c => c.toUpperCase()) + '.';
}

>>
>>108007786
Lmao, exactly.

>>108007819
>to push pass sales
I don't even understand this at this point. 4chan now in 2026 has so little traffic compared to the past we shouldn't even need the pass at this point. The site probably costs nothing to run because only 5 people post here now.
>>
>>108007844
function initializeEventHandler(container) { // This handles button clicks
if (!container || container.dataset.hasListener) return;
container.addEventListener('click', (e) => {
const button = e.target.closest(SELECTORS.image);
if (button && cachedButtons.length > 0) {
const index = cachedButtons.indexOf(button);
if (index !== -1) submitCaptchaAnswer(index);
}
});
container.dataset.hasListener = "true";
}
>>
>>108007857
  function createImageGrid() {
const container = document.querySelector(SELECTORS.container);
const task = TCaptcha.getCurrentTask();
if (!TCaptcha.node || !container || !task) return;

const description = formatDescription(task.str); // Get the instructions
const imageHTMLs = task.items.map((bitmap) => // Get the images and make the buttons
`<button class="tcaptcha-image">
<img src="data:image/png;base64,${bitmap}"/>
</button>`
).join('');

container.innerHTML = `<div id="t-desc">${description}</div>${imageHTMLs}`; // Create grid w/ instructions

cachedButtons = Array.from(container.querySelectorAll(SELECTORS.image));
initializeEventHandler(container);
TCaptcha.taskNode = container;
currentHighlightIndex = -1; // Reset the index
}

window.submitCaptchaAnswer = function (imageNumber) { // Submit the answer
const e = TCaptcha;
const totalTasks = e.tasks.length - 1;
e.respNode.value += imageNumber;
const nextId = e.taskId + 1;
if (totalTasks < 0 || imageNumber < 0 || !e.respNode || !e.tasks) return;

if (nextId <= totalTasks) { // Move to the next challenge
e.setTaskId(nextId);
createImageGrid();
} else { // Ready to post
e.nextNode.disabled = true;
e.setTaskNodeContent("Done.");
e.toggleSlider(false);
cachedButtons = [];
}
};



this was cut midfunction.
>>
THERE ARE FOUR SPIKES
>>
>>108007868
continuing from mid function above
    TCaptcha.setChallenge = function (e) {  // Intercept the original setChallenge, create grid, ignore slider
this.challengeIdNode.value = e.challenge;
this.respNode.value = "";

if (!e.tasks) return this.setNoop();

this.tasks = e.tasks;
this.setTaskId(0);
createImageGrid();
};

TCaptcha.buildSliderNode = function() { // Intercept the slider and don't render it
const dummy = document.createElement('span'); // Make an empty element to prevent errors
dummy.id = "t-slider";
dummy.style.display = "none"; // Ensure it takes up no space
return dummy;
};

TCaptcha.setTaskItem = function(index) { this.sliderNode.value = index; }; // Bloat

window.addEventListener('keydown', (e) => { // Keyboard event handler
if (e.shiftKey && e.code === 'Space') { // Shift + Space to activate
e.preventDefault();
e.stopImmediatePropagation();

document.querySelector(SELECTORS.closeNotify)?.closest('.notification')?.remove(); // Clear warnings
cachedButtons = cachedButtons.filter(btn => document.body.contains(btn)); // Important cleanup

if (cachedButtons.length > 0) { // Move the selector
currentHighlightIndex = (currentHighlightIndex + 1) % cachedButtons.length;
updateHighlight();
} else { // Get Captcha
TCaptcha.onReloadClick();
}
return;
}

// Enter to submit answer only while highlighted
if ( e.key === 'Enter' && cachedButtons.length > 0 && currentHighlightIndex >= 0) {
e.preventDefault();
e.stopImmediatePropagation();
submitCaptchaAnswer(currentHighlightIndex);
}
}, true);
})();

FIN.

>>108007870
KEK
>>
>>108007712
This shit is so sadistic
>>
>>108007838
Found a version of it in the archives.
https://desuarchive.org/g/thread/107987632/#q107989010
https://pastebin.com/sQJfRF5q
>>
File: file.png (229 KB, 1478x415)
229 KB
229 KB PNG
pecker bear wonned
>>
>>108007915
What reporting category do these guys fit under? Advertising?
>>
>>108007900
SCRIPT TO FIX CAPTCHA SLIDE IQ TEST BULLSHIT
Thanks. Just adding some searchable terms for me to find it easier on the archives next time I need it.
>https://desuarchive.org/g/thread/107987632/#q107989010
>https://pastebin.com/sQJfRF5q
>>
>>108007819
The powertripping is real. Mods basically ignore raids on /pol/ but then will delete threads that are nominally outside the discussion topic, or for just no reason at all. It has been happening more and more lately.
>>108007849
Do you actually have any evidence to suggest that traffic has fallen off or is it just vibes?
>>
File: 1769736769916410.jpg (626 KB, 2502x1900)
626 KB
626 KB JPG
>>108007915
You were groomed.
>>
>Select the one that is not like the others:
>circle
>star
>square
Fuck.

It wasn't the star, waiting for new captcha.
>>
>>108007712


Star CAPTCHA is the most cancerous capcha out there. It needed concentration or guaranteed fail
>>
>>108007945
>Do you actually have any evidence to suggest that traffic has fallen off or is it just vibes?
I've been on 4chan since 2005. You can tell traffic is down (extremely down) because threads last forever and replies are slow. Like, on certain posts I can say something, go to bed, and wake up and still see no reply from someone sometimes. Back in the day that same thread would have hit the post/bump limit and be gone. Heck, even a few years ago it wasn't this bad.
>>
>>108008031
ye i could fly through the other ones easily but this is just too bothersome
>>
>>108007712
It's long
It's bad
It's tedious
I miss the fucking numbers
Unironically this captcha shit might kill the site for good
>>
>>108007786
It's just me and the glowniggers on Pol
Kid you not
>>
>>108008041
Someone has to subsidize hosting the waves of botspam, I guess...
>>
File: g.png (45 KB, 1108x384)
45 KB
45 KB PNG
>>108007945
>Do you actually have any evidence to suggest that traffic has fallen off or is it just vibes?
It's not as bad as some anons suggest but yes
>>
>>108008123
>LLMs hit mainstream and botspam makes big advances around the time of dropoff
Unsurprising. Something needs to be done about this shit.
>>
File: won't that be nice ns.webm (1.03 MB, 1280x720)
1.03 MB
1.03 MB WEBM
>>108007849
>less assholes and idiots will posting here.
>>
>>108008059
>It's long
>It's bad
>It's tedious
I only have to solve one set of "one of these things is not like the others" probably because I'm not a filthy phone poster.
>>
File: 4shats.png (30 KB, 760x376)
30 KB
30 KB PNG
>>108008123
What website is that? 4stats.io only has this now.
>>
>there are people who cant solve these captchas in under 5 seconds
lmao I love how it filters all the jeets
>>
>>108008166
>Only get 1 set on phone
>Get 3, 4, even more on desktop no matter how many I solve, never get banned
What's the deal? How the fuck do I escape this hell?
>>
File: 1761081008736720.jpg (32 KB, 297x405)
32 KB
32 KB JPG
>>108008175
You got 5 seconds
>>
File: file.png (198 KB, 640x480)
198 KB
198 KB PNG
>>108007712
>>
>>108008174
https://dev.4stats.io/
>>
>>108008161
Unfortunately that hasn't been the case.
>>
File: a-v-g-vg-int.png (124 KB, 1108x384)
124 KB
124 KB PNG
>>108008131
It's hard to generalize as some boards see different peaks or are still increasing in activity like /vg/

>>108008174
dev.4stats.io
>>
>>108008123

>It's not as bad
We currently on 2009 numbers. it is BAD. Late 2023 is when they start to do shitty capcha with IP blockers
>>
>>108008161
no all the normal effortposters will just fuck off, the only people left will be the schizos and brown thread shitters and shills.
>>
For real though whats the alternative ?
>>
>>108007746
It's 2016 fags. They were always room temp.
>>
>>108007712
>>
>>108008226
On /g/ it's 10,000-12,000 posts per day instead of 15,000 between 2015-2022, it's only significantly less active relative to the 22,000 post surge in 2022-2024 from aislop
>>
File: smooth brain.png (1.06 MB, 1024x1024)
1.06 MB
1.06 MB PNG
>>108007712
>4chan starts implementing IQ filters as captchas
>post quality goes down
>>
File: 1755181900387394.png (50 KB, 916x753)
50 KB
50 KB PNG
>>108008123
guess the board
>>
>>108007712
it just fucking took me like 5 minutes trying to decipher a motherfucking captcha in another thread to just post a reply to a dumbass, why does it have to be so hard, I miss old times
>>
>>108008290
>why does it have to be so hard
because you're low IQ
>>
>>108008290
>posts on /g/
>can't script a captcha bypass
>too retarded to count stars
everything is working as designed
>>
File: 1730546307383504.jpg (179 KB, 1024x1020)
179 KB
179 KB JPG
>>108008277
The /k/ psyop was visible from space
>>
>>108008290
One of my computers restarted from an update and now it wants me to email verification again lmao. It's so shit.
>>
surely one of you crypto fags has a pool of money laying around.
just buy the website off hiroshimoot and fix it.
>>
>>108007900
this just puts them all in the same section it save a minuscule amount of time at most no?
>>
>>108008294

the only low IQ move I'm making is solving a motherfucking catpcha to come back and reply to your stupid post, wait...
>>
File: 1763957273853419.jpg (133 KB, 680x680)
133 KB
133 KB JPG
>>108008175
it doesn't filter jeets though. it's a white man filter. why? cause it's tedious. think about it you're spending your energy to solve this shitty star captcha replying to some jeet/shill/bot subhuman answering a questioning or explaining why they're wrong. it's a waste of energy to talk with all the jeet/shils/bots to begin with so any extra sort of burden only makes it worse. white men are a minority in the world so there's very few compared to the 2 billion pajeet+bots+shills so spamming everywhere on this website further decreasing the desire to write anything. even if a pajeet gets it wrong their time and life is worthless so they can just grind on it until they get it right. an actual human's time is valuable though so it's a waste.

i haven't posted in like 3 weeks but i just don't feel like writing to the subhumans on this website if it requires anything but the most minimal effort. i'm only posting this since i saw a thread on another board i wanted to reply to.
>>
>>108008298
share or stfu
>>
>>108008352
not sharing shit with you gorilla nigger
you don't belong here.
>>
Nah, I would say Kohlchan's captcha is way worse. Literally unreadable sometimes.
>>
>>108008366
you have 10 seconds to reply to this or you are full of shit and have no such script
>>
it just gets worse and worse.
>>
File: abc lines.png (167 KB, 640x480)
167 KB
167 KB PNG
>>108008191
What did I win?
>>
>>108008366
>not sharing
certified /g/ newfag.
>>
It's definitely worse on PC than when phone posting.
>>
File: lensunglasses.png (824 KB, 902x902)
824 KB
824 KB PNG
the "pick one that isnt like the others" one is easy. same with the block pattern one. i hate the star spikes challenge so fucking much though
>>
>>108008277
>the board for weapons, which have to do with war
>ban all discussion of actual ongoing wars
Gee what a shocker, traffic is down lowest it's ever been
>>
>>108008409
preach it bro



[Advertise on 4chan]

Delete Post: [File Only] Style:
[Disable Mobile View / Use Desktop Site]

[Enable Mobile View / Use Mobile Site]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.