Welcome to SECApedia! Please check out our rules, manual of style aswell as some info on the site.
The site is currently in a "grace period" where only users can edit articles so that we can set things up in peace. This should end within a few days or so. Soyoyuki (talk) 14:22, 21 June 2026 (UTC)
CURRENT MISSION: Update, uncensor and (if needed) rewrite all the imported pages from SNCApedia.
Additionally, please remove all unnecessary discussion pages, for example those with outdated info.
'P
| The Holy Spirit wouldn't approve of 'P... Repent for forgiveness, lest you be excluded from God's kingdom. "For all have sinned and fall short of the glory of God." — Romans 3:23 |
'P (soyspeak of child pornography; also known as child sexual abuse material) is highly illegal[lower-alpha 1] content depicting a minor in any sexual conduct (putting the child's safety at danger there.), which used to be spammed on soyjak.party by hostile communities. 'P is obviously produced by pedophiles.
soyjak.party used to have a bad 'P problem in its earlier years. Later in 2024, automated image and word filters, and the Media Pending Approval system would effectively kill all 'P spam completely on the Sharty. Most Sharty splinters also have some kind of manual image or post approval system which stops most 'P spam. The spam is obvious or embedded (usually as a link).
What to do if you see 'P on an imageboard?
While the Sharty and most splinters took steps to prevent 'P from being seen, it is still important to know what you need to do if you see 'P on any website.
First, don't panic, obviously you must report the post. Urgent report/emergency report in this case. If there's a link or if the site deliberately hosts 'P, report it to the hosting provider/registrar or the National Center For Missing and Exploited Children. Do not visit any links.
Next, clear your browser cache to erase ALL the data from when this happened, if you somehow don’t know how to clear your browser cache, here's a tutorial for each browser.
Chrome
- Click the three dots (⋮) in the top-right corner.
- Select Delete browsing data (or More tools > Clear browsing data).
- Choose a time range (e.g., All time).
- Check Cached images and files and click Delete data.
Firefox
- Click the menu button (☰) and select Settings.
- Select Privacy & Security.
- In the "Cookies and Site Data" section, click Clear Data....
- Check Cached Web Content and click Clear.
Edge
- Click the three dots (...) and select Settings.
- Go to Privacy, search, and services on the left.
- Under "Clear browsing data," click Choose what to clear.
- Select Cached images and files and click Clear now.
For best measure, you should also wipe all traces of it from your hard drive or whatever storage medium you use (e.g. solid state drives).
If the site does not have active moderation, avoid using the website for a few hours.
Sources of 'P spam
When there's an aggressive amount of 'P spam, it is usually done by those who think the existence of the site is against their beliefs or will, where they would usually attack sites with little to no moderation. Do NOT EVER interact with or bring it up during a active event (e.g. raid). Especially do NOT yell "Doctos"; it gives the spammer what they want.
Advertisement spam

There have been multiple 'P spammers who target any imageboard they can possibly find at random times; for instance, the time zone of a 'P spammer who has targeted many altchans including Endchan, the Sharty and its splinters advertising "cp files" or similar (known as "Captain 'P") is traced back to Samara.[1][2][3] Other 'P spammers also target the aforementioned imageboards as well.
Most of the posts are from Central Asia/Russia based off the timezone fingerprint, and use many VPNs and residential proxies. The images and text are rotated and are always modified to bypass wordfilters and image hashbans, and the spam is manually posted, so a fingerprint ban is typically the most effective as the spammers post with the exact same fingerprint.
To block the spammers
Fingerprint ban. Specifically block Asia/Vladivostok, Asia/Tashkent, Europe/Samara, Asia/Bangkok, and other chink country timezones.
Consider blocking or flagging the following imageboard aggregator sites:
- AllChans: allchans.org
- chan.city
- imageboards.net
The following sites (forums) listing the imageboards are used exclusively by spammers:
- ████████████ "Chatango"
- avtodinozavr.xobor.de "DINOZAVR" (probably mostly generic forum spam; most links are dnb though)
Here's a shitty (but functional[4]) system made for the chaddy to prevent this bot, feel free to use it.'
The fingerprint of the "bot" is 100% real and it solves captchas, might not even be a bot and just an obsessed faggot. Also it seems to target every altchan regardless if it is listed on that site or not
checkPostShorteners: async (options) => {
const { proxy } = config.get;
const blacklistedKeywords = config.get.blacklistedKeywords || [
"small previews:",
"updated url.",
"6-14 years old",
"zoo and scat",
"real rape",
"CP porn",
"💖💖💖",
"little girls porn",
"Text with active links",
"list links",
"CP studios."
];
const allowedDomains = config.get.allowedDomains || [
"voca.ro",
"vocaroo.com",
"jumpshare.com"
"mozilla.org",
"google.com",
"microsoft.com",
"duckduckgo.com",
"x.com",
"twitter.com",
"nitter.net",
"xcancel.com",
"youtube.com",
"m.youtube.com",
"music.youtube.com",
"youtu.be",
"instagram.com",
"garticphone.com",
"skribbl.io",
"clickclickclick.click",
"arras.io",
"strawpoll.com",
"catbox.moe",
"archive.ph",
"archive.org",
"web.archive.org",
"megalodon.jp"
"4chan.org",
"boards.4chan.org",
"wikipedia.org",
"wiktionary.org",
"soyjak.st",
"soyjakwiki.org",
"gigacha.de",
"gigacha.de",
"thatsnuts.online".
"intculture.party",
"nusoicaca.party",
"soyjak.club",
"nationalsoziali.st",
"memedroid.com",
"memingos.com",
"github.com",
"gitlab.com",
"bitbucket.org",
"proton.me",
"visualstudio.com",
"sncapedia.org",
"swedishwin.com",
"convert.to.it",
"desmos.com",
"wolframalpha.com",
"steamcommunity.com",
"cs.rin.ru",
"vidlii.com",
"justice.gov",
"ruwix.co",
];
const post = await Posts.getPost(
options.board._id || options.board,
options.postId,
true
);
const siteLinks = post.nomarkup.match(
/\b(?:https?:\/\/|www\.)[^\s<>"']+/gi
);
if (!siteLinks?.length) return;
const filteredLinks = siteLinks.filter((url) => {
try {
const parsed = new URL(
url.startsWith("http") ? url : `http://${url}`
);
const host = parsed.hostname
.replace(/^www\./, "")
.toLowerCase();
return !allowedDomains.some(
(d) => host === d || host.endsWith(`.${d}`)
);
} catch {
return false;
}
});
const uniqueLinks = [...new Set(filteredLinks)].slice(0, 10);
console.log("Found links:", uniqueLinks);
const agent = proxy.enabled
? new SocksProxyAgent(require("url").parse(proxy.address))
: null;
const resolveSite = async (url, signal) => {
let currentUrl = url;
for (let i = 0; i <= maxRedirects; i++) {
const res = await fetch(currentUrl, {
timeout: 10000,
agent,
redirect: "manual",
signal,
headers: {
"User-Agent":
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0) Gecko/20100101 Firefox/146.0",
},
});
if (res.status >= 300 && res.status < 400) {
const location = res.headers.get("location");
currentUrl = new URL(location, currentUrl).toString();
continue;
}
if (i === 0) { // site wasn't a redirect
return null;
}
return res;
}
return null;
};
const scanShortener = async (url) => {
try {
const controller = new AbortController();
setTimeout(() => controller.abort(), 10000);
const res = await resolveSite(url, controller.signal);
if (!res) return false;
const text = await res.text();
return blacklistedKeywords.some((k) => text.includes(k))
? url
: false;
} catch (e) {
console.warn(`Error fetching ${url}:`, e.message);
return false;
}
};
const badSiteFound = await Promise.any(uniqueLinks.map(scanShortener));
if (!badSiteFound) return;
// you'd have your ban and delete implementation hereSee also
- sharty:'P - Soyjak Wiki's page about how 'P was spammed and how you can report it.
Notes
- ↑ e.g. 18 U.S.C. § 2252 and 18 U.S.C.§ 2252a for laws of the United States
- ↑ https://trashchan.xyz/meta/thread/374.html (Archives: https://archive.ph/Whbvh https://megalodon.jp/2026-0409-0616-21/https://trashchan.xyz:443/meta/thread/374.html) You can read this for more information about these advertisements!
- ↑ https://www.dropbox.com/scl/fi/onqjr7qd9zc4uh4bszw0s/_g_-urgent-attention.pdf?rlkey=qoo9dlhmbiz2fq0y3sbkmwvfd&st=zaciszlt&dl=0 (dead link)
- ↑ https://www.dropbox.com/scl/fi/3cx12oaj8gtcl76xkpae8/_g_-warning-to-small-altchan-owners.pdf?rlkey=lr71tn8d5f8va5j1pxf6f3qb7&st=4fzjl9jn&dl=0 (dead link)
- ↑ File:Bansp.png