>OFCOM: "Advisory Letter: illegal content risk assessments - your duties under the Online Safety Act 2023"
even doe its the heckin real worlderino or whatever null masturbates to
Froot's timer ended on the Sharty (26th, 12:00 PM EST). There has been massive spam leading up to it and since. I think Froot is maybe taking a step back from things o algo. Whatever the case is, it's funny. If it keeps up it might kill the site but maybe it will get rid of some of the faggots.
The Oreo Review Show guy did an AMA on /soy/ a couple years back, so if you're counting YouTubers who've posted on the sharty as namefags, I'd throw him on there.
His name is Logan cooper if I remember correctly.
Also he’s literally from ohio.
You can read back in this thread for his full dox, he got doxed in early to mid 2024.
His name is Logan cooper if I remember correctly.
Also he’s literally from ohio.
You can read back in this thread for his full dox, he got doxed in early to mid 2024.
His name is Logan cooper if I remember correctly.
Also he’s literally from ohio.
You can read back in this thread for his full dox, he got doxed in early to mid 2024.
I see the post but its some random ahh 50 year old and I doubt its him. How do you even know he’s from Ohio and not some other state, let alone that specific address?
I see the post but its some random ahh 50 year old and I doubt its him. How do you even know he’s from Ohio and not some other state, let alone that specific address?
>You have been banned for the following reason: Plans to shit up the website. Your ban will be lifted on March 24th, 3:00 PM
It was for making 2 threads on Q&A where one of them suggested raiding Beauty Parlor and the Man Hate Thread to get the board and this thread shuttered BTW
Rip to Azure and Coberald
I see the post but its some random ahh 50 year old and I doubt its him. How do you even know he’s from Ohio and not some other state, let alone that specific address?
His paypal, linked in, etc all has his real name on it. His phone number is also linked to that name. He hosted a donation drive with his real paypal linked like a dumbass and was doxxed on that day. Its been surpressed ever since and faildoxes have been put forward to cover it up (like Thomas Albin) you’d literally get a rule three ban for even mentioning the dox before.
CROSSPOST FROM SKIBIDIFARMS THREAD ABOUT RONALD, MAY BE THE TRVTH, NOT SNOPES FACT CHECKED.
Apparently, there's been a new expose document on Ronald, the ex-developer of Soyjak.Party. This claims that he was @john fortnite kennedy and that he was an ABDL tranny. Also that he isn't Taiwanese, but Chilean. (with a dox included) I'd recommend you read it here, also from the synopsis saying (i highly doubt the Sprate and Joshua Goldberg part is true)
"TLDR: Sprate and Joshua Ryne Goldberg made someone commit suicide, Nudev/Ronald is a diaper fetishist and degenerate. Skibidi Farms won. Nudev is burning in hell. Froot is the worst Soyjak.party admin ever."
Including in the post is a DM to @Citizen Kane (Easton) from @big nigga biggie cheese
Included in the post contains two .7z files that "include" DMs with NuDev exposing him. I will not download them because I do not trust the contents of a zip file from Skibidi Farms but if one of you could do it, I'd greatly appreciate it. Link to the post/A/
TLDR: Sprate and Joshua Ryne Goldberg made someone commit suicide, Nudev/Ronald is a diaper fetishist and degenerate. Skibidi Farms won. Nudev is burning in hell. Froot is the worst Soyjak.party admin ever.
Name: RICARDO A, AMALIA M.
Country: CHILE (Not Taiwan)
Address: EL BOSQUE 305 DALCAHUE LOS LAGOS
Birthdate: 12/10/2003
Email: failarmy6gaming@gmail.com
The Sharty
JFK was a prominent member of the sharty, going by "Ronald". He was known for his coding capabilities in WebAssembly and Javascript and launching his own splinter during the "soypocalypse" known as soyjak.in which had anti-CSAM capabilities, which was not seen elsewhere.
He's mostly famous for babybot, a bot that can ravage imageboards in seconds. He used this in early 2023 and the summer of 2023 to spam every thread with a babyjak image, thus getting the nickname "babybot". Froot recognized his exploits and when Angeleno left, he was replaced with Ronald who would go by the alias "Nudev".
integrity.wasm is an invasive code that directly communicates with LAN to see if you are using Tuxler or Discord. This was implemented on the Sharty and was controversal among its userbase due to its privacy concerns (it is also notable that Ronald/JFK casually leaked IPs of users on Discord). I've commented the code out here, be warned that the source code is outdated and the current iteration is probably much, much more invasive:
Code:
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#include <emscripten.h>
#include <emscripten/fetch.h>
#include <emscripten/websocket.h>
enum {
COMMUNICATION_INVALID,
COMMUNICATION_PING,
COMMUNICATION_TIME,
COMMUNICATION_FINISH,
COMMUNICATION_DISCORD,
COMMUNICATION_NO_DISCORD
};
bool cordcheck = false;
bool isntcord = false;
bool success = false;
bool reconnect = false;
uint64_t cordchecktime = 0;
uint64_t corderrortime = 0;
// timezone check
double get_timezone_offset() { return EM_ASM_DOUBLE({ return (new Date).getTimezoneOffset(); }); }
// get that ass banned
void tuxler_fetch_cleanup(emscripten_fetch_t *fetch) {
if(fetch->data) { free((void *)fetch->data); }
emscripten_fetch_close(fetch);
}
EM_BOOL tuxlerniggerdetected(int eventType, const EmscriptenWebSocketOpenEvent *e, void *userData) {
const char *httpHeader[] = {"Content-Type", "application/x-www-form-urlencoded", NULL};
char *banHeader = malloc(4); // Allocates 4 bytes into the heap
strcpy(banHeader, "i=1"); // Copies the string "i=1" to banHeader
emscripten_fetch_attr_t brap; emscripten_fetch_attr_init(&brap); strcpy(brap.requestMethod, "POST");
brap.attributes = EMSCRIPTEN_FETCH_LOAD_TO_MEMORY;
brap.onsuccess = tuxler_fetch_cleanup;
brap.onerror = tuxler_fetch_cleanup;
brap.requestData = banHeader; // Sets POST data to banHeader (i=1)
brap.requestDataSize = strlen(banHeader); // Sets data size to 4
brap.requestHeaders = httpHeader; // Sets the HTTP headers
emscripten_fetch(&brap, "/b4.php"); // Finally request to /b4.php (which I assume automatically bans you)
return EM_FALSE;
}
// protocol
EM_BOOL tgMessage(int eventType, const EmscriptenWebSocketMessageEvent *e, void *userData) {
char reply[16];
switch(e->data[0]) {
case COMMUNICATION_PING: {
reply[0] = COMMUNICATION_PING;
int data; memcpy(&data, e->data + 1, 4);
data ^= 0x1a0bbafc; // Masks data with the magic bytes of 0x1a0bbafc
memcpy(reply + 1, &data, 4);
emscripten_websocket_send_binary(e->socket, &reply, 5);
if(cordcheck) {
unsigned char shit = COMMUNICATION_DISCORD;
emscripten_websocket_send_binary(e->socket, &shit, 1);
cordcheck = false;
}
if(isntcord) {
if(emscripten_run_script_int("['ApplePayError', 'CSSPrimitiveValue', 'Counter', 'WebKitMediaKeys'].filter(key => key in window).length + (navigator.vendor.indexOf('Apple') === 0) + ('getStorageUpdates' in navigator)") < 4) { // Checks for Apple Pay/WebKit (which Safari uses), what the fuck?
unsigned char shit = COMMUNICATION_NO_DISCORD;
emscripten_websocket_send_binary(e->socket, &shit, 1);
isntcord = false;
}
}
break;
}
case COMMUNICATION_TIME: {
reply[0] = COMMUNICATION_TIME;
float timezoneFloat = get_timezone_offset();
int data; memcpy(&data, &timezoneFloat, 4);
data ^= 0x78a0cf5b; // Masks the data with the magic bytes 0x78a0cf5b
memcpy(reply + 1, &data, 4);
emscripten_websocket_send_binary(e->socket, &reply, 5);
break;
}
case COMMUNICATION_FINISH: {
success = true;
emscripten_websocket_close(e->socket, 1000, "close");
break;
}
}
return EM_FALSE;
}
void attemptreconnect(void *userData);
EM_BOOL tgClose(int eventType, const EmscriptenWebSocketCloseEvent *e, void *userData) {
if(!success) { emscripten_set_timeout(attemptreconnect, 30000, userData); }
return EM_FALSE;
}
EM_BOOL tgError(int eventType, const EmscriptenWebSocketErrorEvent *e, void *userData) {
if(!success) { emscripten_set_timeout(attemptreconnect, 30000, userData); }
return EM_FALSE;
}
void attemptreconnect(void *userData) {
if(!reconnect) {
reconnect = true;
EmscriptenWebSocketCreateAttributes integrityAttr;
emscripten_websocket_init_create_attributes(&integrityAttr);
integrityAttr.url = "wss://soyjak.party/ws";
EMSCRIPTEN_WEBSOCKET_T socket4 = emscripten_websocket_new(&integrityAttr);
emscripten_websocket_set_onmessage_callback(socket4, NULL, tgMessage);
emscripten_websocket_set_onclose_callback(socket4, NULL, tgClose);
emscripten_websocket_set_onerror_callback(socket4, NULL, tgError);
reconnect = false;
}
}
EM_BOOL setCord(int eventType, const EmscriptenWebSocketOpenEvent *e, void *userData) {
cordcheck = true; // Set cordcheck to true, since a websocket connection has been opened
return EM_FALSE;
}
EM_BOOL notCord(int eventType, const EmscriptenWebSocketErrorEvent *e, void *userData) {
uint64_t now = (uint64_t)emscripten_get_now(); // Gets current time
corderrortime = now; // Sets corderrortime to current time
if(now - cordchecktime <= 99) { isntcord = true; } // Checks the current time against cordchecktime, if there's a 99 second difference then there is no Discord
return EM_FALSE;
}
int main() {
EmscriptenWebSocketCreateAttributes brap;
emscripten_websocket_init_create_attributes(&brap); // Initializes the struct
brap.url = "ws://127.0.0.1:6463/?v=1"; // Sets websocket URL to localhost on port 6463, port used for Discord RPC
cordchecktime = (uint64_t)emscripten_get_now(); // Gets the current time
EMSCRIPTEN_WEBSOCKET_T socket1 = emscripten_websocket_new(&brap); // Creates a websocket for Discord detection
emscripten_websocket_set_onopen_callback(socket1, NULL, setCord); // Sets a callback to setCord for when the websocket is connected
emscripten_websocket_set_onerror_callback(socket1, NULL, notCord); // Sets a callback to notCord for when the websocket errors out
emscripten_websocket_init_create_attributes(&brap); // Reinitializes the scruct
brap.url = "ws://127.0.0.1:1701/tuxler"; // Sets websocket URL to localhost on 1701, port used by Tuxler
EMSCRIPTEN_WEBSOCKET_T socket2 = emscripten_websocket_new(&brap); // Creates a websocket for Tuxler detection
emscripten_websocket_set_onopen_callback(socket2, NULL, tuxlerniggerdetected); // Sets a callback to the function tuxlerniggerdetected for when the websocket is opened
emscripten_websocket_init_create_attributes(&brap); // Reinitializes the scruct
brap.url = "ws://127.0.0.1:1700/tuxler"; // Sets websocket URL to localhost on 1700, port used by Tuxler
EMSCRIPTEN_WEBSOCKET_T socket3 = emscripten_websocket_new(&brap); // Creates a websocket for Tuxler detection
emscripten_websocket_set_onopen_callback(socket3, NULL, tuxlerniggerdetected); // Sets a callback to the function tuxlerniggerdetected for when the websocket is opened
emscripten_websocket_init_create_attributes(&brap); // Reinitializes the scruct
brap.url = "wss://soyjak.party/ws"; // Sets the URL to wss://soyjak.party/ws
EMSCRIPTEN_WEBSOCKET_T socket4 = emscripten_websocket_new(&brap); // Creates a websocket for it's own site
emscripten_websocket_set_onmessage_callback(socket4, NULL, tgMessage); // Sets a callback to the function tgMessage for when the websocket recieves a message
emscripten_websocket_set_onclose_callback(socket4, NULL, tgClose); // Sets a callback to the function tgClose for when the websocket closes
emscripten_websocket_set_onerror_callback(socket4, NULL, tgError); // Sets a callback to the function tgError for when the websocket errors out
}
He also engaged in a relationship with a troon from the afterparty in September of 2024. There's proof about his involvement in distributing and forcing EPI material such as various fetish-related art of soytan and femjanny, most being ABDL, latex, and transformation fetish art, keeping it up to intentionally generate rage from 'teens before banning it. All of which was of unknown source until now.
But what was JFK known for before the Sharty? Torswats
Angmar (A.K.A Torswats) was a swatter who was involved with the TriHard and Foodist community (hey that's us). Angmar would soon be arrested for his crimes, which would cause JFK to randomly turn against foodists, whilist still using their jokes. This includes even Skibidi Farms jokes:
(by the way, the rest of the other persons messages was deleted using an auto cleaner script, which will explain why he looks like he's talking to a brick wall)
The very quick downfall of Ronald/Nudev began when a Kiwi Farms user known as Sprate Header discovered his real identity and started compiling a thread on him. Sprate Header reached out to another user, MoonMetropolis, asking him to probe others about his identity on Soyjak.blog. However, this backfired because Ronald's friend, who is an admin, had access to user private messages on Soyjak.blog and could see this interaction, and warned him about it. Ronald contacted MoonMetropolis after and found out that Sprate Header was writing a thread on him and his friend group. This caused him to freak out, admitting to most of his crimes in someone's Discord messages, and overcome with fear and paranoia, Ronald ultimately decided to kill himself after sperging out on Kiwi Farms and a Discord group DM, while cutting himself and crying on VC. No recording exists of this, and the group DM has since been deleted, but some Twitter posts have been made about the death. https://x.com/FoofyTheWolf/status/1903850975690961369 Archived Twitter Link
(Look who he's DMing, btw)
Yes you heard that right, Sprate and Joshua Ryne Goldberg are involved in a suicide. This is easily provable since JFK had given his friends all his accounts and requested them to delete them all before suicide, all known accounts of his are deleted, except for his Discord. JFK also tried to commit suicide in 2024, failing, getting sent to the hospital.
Here is a compressed file that contains every leak and proves everything above further. Here's an overview of the folders:
"Sharty" - Images that Ronald sent others on Discord on his personal account "Kara", including proof of being an admin, some ban logs, specific messages about dramas he was forcing. Ronald kept most of his admin activity private, but this is what another person was able to give me.
"Ronald Love Quest" (NSFW) - Images of Ronald dating a troon, porn that ronald made (or others provided for him). Contains actual videos of Ronald wearing diapers.
"Incriminating and weird messages" - Weird messages from Ronald
>visits the sharty to see how it is since the shiwi would rather spew nonsense than document happenings
>only 5 boards left, check hours later and barely notice any new posts
>try to comment on that peppino post
>muh ”You cannot post from incognito mode whilst using a VPN.”
How the fuck do they expect to save this dying shithole if they can’t even let us go into incognito to avoid getting mass datamined?