Plagued Skibidi Farms / NoLimitsPedia / NoLimitsBlox / Gnarpedia / Totencord / Hutucord / Goyswats / DiscordAlways.Win / Thugchan / Zukencord - you will NEVER GUESS what the "IRONIC" PEDOPHILE RING openly admitted to distributing!!!!! 😱😱😱

  • 🐕 I am attempting to get the site runnning as fast as possible. If you are experiencing slow page load times, please report it.
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
1743032456335.png
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.
1743032731840.png
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.1743032823475.png
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:
1743032853776.png
1743032925961.png

(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
1743033631625.jpeg1743033671392.jpeg
1743032456335.png
(Look who he's DMing, btw)
1743033008812.png
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

https://files.catbox.moe/4tiq65.7z

EDIT: Private messages with Nudev: https://files.catbox.moe/cjbnol.txt
 
Last edited:
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."
Sharty try not to hire groomer pedophiles challenge BOSS LEVEL

Also, what is redacted in the screenshot?
 
Last edited:
(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."
The timeline of my involvement with this is:
  • Goldberg messaged me about something unrelated (over KF DMs).
  • In our convo, I asked about a rumor I'd heard that Nudev used to go by the name "Don Karma" and that he was associated with JFK (who you can read more about here).
    • I didn't yet name JFK (referring to him as "Person X" in my messages to Goldberg), as my question was mainly about whether Nudev was Don Karma, but I did mention I had an interest in Person X eventually receiving his own thread. The amount of shit he's been involved in outside of the stuff covered in the Torswats thread is crazy.
  • Goldberg went to the rest of the sharty staff to inquire about the rumor.
  • Whatever inquiring he did got back to JFK, which somehow led to all this.
  • (It should also be noted that JFK and SF hate each other, as evidenced by SF's pre-existing thread on him)


From my own prior experience with JFK, I can easily attest that he is a chronic liar, and that the claims of a) him giving his friends his login, and b) him committing suicide, are almost definitely lies unless outside evidence can be found to corrborate them. I am also very skeptical of the claim that he himself was Nudev, instead of just an old associate of Nudev.

I imagine sharty staff will be putting out their own statement about this sometime in the near future (and if not, I'd heavily recommend they do), but that's pretty much the gist of my own involvement in this incident. If anybody has questions for me about this, ask away!
 
There are over 200 images so I have downloaded them all and sorted them into categories and put them into this zip file. There is genuinely a lot of stuff here (incriminating screenshots of kara/ronald admitting to shit, alongside some rather disgusting videos of him soiling himself. Yes, you hear that right.)
 

Attachments

There are over 200 images so I have downloaded them all and sorted them into categories and put them into this zip file. There is genuinely a lot of stuff here (incriminating screenshots of kara/ronald admitting to shit, alongside some rather disgusting videos of him soiling himself. Yes, you hear that right.)
Does this also include the .txt file or no?
 
  • Like
Reactions: Wright
Okay, now could someone unzip the images and upload them on their own?
AEcgrTFq.png
AKDPgWGM.png
bbjmjCDM.png
bqWVwzpk.png
cMzVbhLc.png
cnKynbQA.png
CRtIExrq.png
CTlKWGTk.png
dozAZqzS.png
DTeycThz.png
EkbrCPah.png
eYuUparT.png
fafNAAPW.png
fKroAYVO.png
fWrayHzT.png
gHykLnfe.png
gZaPsyYJ.png
HddvkWGr.png
HsqvQyAO.png
HwQgBAIl.png
iUnjWKkZ.png
iXeZFNHV.png
IYOZJHle.png
JDHfPkNq.png
JiaFCzWn.png
JrNiuXeX.png
JUoPcarS.png
KdvfPvlC.png
KlJBvKNp.png
lGBnemhu.png
LQAqarvd.png
MLNfvVKx.png
NKlSTKCh.png
nyeCMpnI.png
OZZPxSch.png
PAxaduCZ.pngqelRtPIr.pngRRimeIpU.pngRuWoLqoZ.png
RyKRiEpO.png
saOxsQVq.png
sbuMCDTi.png
sjPPHaTZ.png
syHTnNpS.png
TbzZXSus.png
tJoWRIVB.png
TWRMMeMy.png
UgoonJFo.png
vJxZAZwq.png
vmrdxTcd.png
VXsnphiS.png
WgJBePUh.png
xdKldpDG.png
xImacyki.png
XKteyoPF.png
xPtbbvel.png
ynokoTqp.png
yxECTDMu.png
yYBLsBxH.png
ZtBmnTzV.png
fmMuOGmK.png
hdNLNbLS.png
KVXKBqzZ.png
LEfUOZLL.png
OAYunLqK.png
oDAfHuFA.png
OEQBQrdq.png
PJmKwfky.png
pkKExOJy.png
qduiAbbZ.png
qjiqGepK.png
rQmbrYhN.png
sFRTdVDe.png
stYXsUGi.png
sZcEzgeL.pngUvRCzoVj.png
winGBGpG.png
xqMrkzyL.png
XyFOnfzs.png
atSStzWK.png
BDROjCIr.png
BjKSoVEw.png
BRLqdNrM.png
BwLinfed.png
bzHXdsvC.png
eKcZsAir.png
eNpqvCTT.png
GcYVyrKq.png
hDQSqxOd.png
HIzwlegS.jpg
hVtfZShR.png
JsXACFoH.png
KHlBzxwb.png
kzJaYGuz.png
lgQxTAFW.png
nAYCbdaS.png
nJMAasfV.png
oWbaFHMk.png
ReRDOZfq.png
smehsmMQ.png
TltGeOed.png
uhtenQcH.png
voZempoM.png
vwVDABzI.png
YdqVQxHc.png
YhsDtEbg.png
Admission.png
SuiAttempt.png
Suicide Note.png
Suicide1.png
Suicide2.png
XeyKnow1.png
XeyKnow2.png
XeyKnow3.png
XeyKnow4.png
AdCYoBux.png
AMOsyLBY.png
ArwHxJuX.png
ayaPaVTb.png
AZUjdPGV.png
BEmJlOfa.png
BFnOhqnG.jpg
bGUjxaKY.png
BVxobsEl.png
bYGOywyb.gif
bZyQuhKd.jpg
cbnpoHeu.png
CYVvppkI.png
dBFkfYuN.png
DbUDyXlU.png

DhnKfGeS.png
DIzTtTKD.jpg
eFFTkYiA.png
EGqHnLAV.png
ehiAPxJF.png
EyeGorZC.gif
eyZacZCf.jpg

fjVjvAZg.png
GEMQildg.png
GiNlhRxO.png
GIQuympb.jpg
gKgNwXRz.png
gnNWTstZ.png
GrZuOyLm.jpg
guVQTtUo.png
gxLIrNfE.png
hhHNbVJv.png
hKjNNvDc.jpg
IfwZxlOh.png
IixKZLgG.png
ipyUBOsg.png
IZtAlEXu.png
JdWEyCCH.png
JJFmtYRm.jpg
jQlllSPy.png
KjyWYADg.png
kwGMrDSp.png
lDYquFRt.png
LHQZAVdy.jpg

LvKsnTaW.png
lXnTLqjk.png
mGTkrTps.jpg
MHlBmyLY.png
MjJuOufq.png

MXAhowis.png
MYHGQUmU.png
NFHTzKbU.png
NYTNQQYe.png
OAsCxCTu.png
oEUOKEJs.png
oVuerMjN.png
oYDxLIxn.png
PbTIIHIP.png
pHRnuqrs.png
PMtKbume.png
QaxvkyRM.png
QbkRYLqw.png
QVaQcQBI.jpgQYcjEpuf.png
qyTFStFW.png
rfTloFFo.png
RNoyTAxR.png
RRDLhCrG.png
RyNgNJIf.png
sdOomGwj.png
TLhOvpSL.jpg
TNrrtrOm.jpg
TnVBqDzr.jpg
tWVLGuko.png
UdVCHpfo.png
UiBoYXHd.png
unfLciKP.png
UWwhDnxY.png
VoBQWbVF.png
vQDeygcR.png
VSSpEEIo.png
vUnyEktn.jpg
VxForVhN.png
wKTcuVYl.png
WmQcWcJf.png
WOCNcxcT.png
wzpWgWfO.png
XnfCsaZW.png
XTBCwKtK.png

YtNEXjAM.png
YvmHsPRe.png
yxzucpbQ.png

zAwtJiBB.png
ZRpqqIrP.png
zThjCElE.png
ZvOPbBFY.jpg
ZwpzgaXI.png

here's everything, sorry for the wait, it took minutes to upload it all.
 
Last edited:
Back