Like every bypass, the method of accessing the product page was then patched, however, the queue bypass itself via ATC was still working at this point.
The problem was you needed the product's ID and the product's size IDs which could only be found on Solebox through the product page (Which was now queue-locked)
I dug into the OXID ecommerce Github repo and found a bunch of endpoints that I'd never seen before on Solebox but after researching on other sites that used OXID I found an amazing request that still worked on the backend, there was just no frontend way to use it on Solebox.
Since most php sites routed backend requests through index.php you'd just need to append these parameters
cl=suggest&
fnc=send&
anid=<product-id>
Since the product IDs were incremental we could brute force these numbers, every time it would send me an email with the product name. Once we got an email with the product ID we were looking for, we would then know the IDs for each size but that was just +1 on the original product ID
So if the product ID was 1000, the sizes would be:
1001 = 36
1002 = 36.5
1003 = 37.5
etc
We could estimate the size range by going up to the number that gave us a different product email.
Before the product even went live we had these early ATC links that would bypass the queue that we would post to all our users.
The first bypass I found that got me started in Sneakers and bypass hunting was for off white prestos on Solebox. I was in a free cookgroup ran by
@rycao18.
At the time I was programming in PHP and I saw a bug that affected a website I built. If didn't add the code "die();" after a location redirect it would attach the location header and the browser would redirect, but the code underneath would still execute if you made your browser ignore the redirect (or used something like curl)
So when I tested this on the Solebox product page it worked, I would not get redirected to the queue. I downloaded the source code and then hosted this page on a server and shared the link and watched people absolutely cook these prestos without having to go through the queue.
In hindsight, I could have just done add to cart links since what was really unprotected was the carting endpoint (No queue token was being sent/enforced) but this was my entrance into sneaker twitter and later starting Express Notify and finding many more bypasses