- Joined
- Jun 25, 2024
Goodnight 'teenI'll probably be heading to bed, I hope by the time I wake up I don't miss 1488.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Goodnight 'teenI'll probably be heading to bed, I hope by the time I wake up I don't miss 1488.
Oh don't worry, we've been paying attention. But thanks for putting all this info in one post.Posted this on the 4chan thread but just crossposting it here in case anyone isn't paying attention to the other one. Basically downloaded all shared leaks on the sharty thread.
The entire source code: https://files.catbox.moe/d56ws8.7z
Full list of all jannies/mods/admins (in username:email:role format): https://files.catbox.moe/vqkxwf.txt
Dump of the jannies private IRC channel that they all use to communicate on: https://files.catbox.moe/93d0r8.rar
Dump of the entire /j/ board (a board private only to board jannies): https://files.catbox.moe/czivhs.7z
Also autodoxxed all of the jannies/mods/admins, all files in JSON: https://files.catbox.moe/42w6h3.zip
File tree: https://files.catbox.moe/f75ypv.txt
site DB got dumped after hours of edging, look upBesides /j/, did any other boards get dumped? What about the site database?
Also, /qa/, sharty... I KNEEL
Ohnononomo 4sissies not like this....The 'teen who hacked 4cuck had shell access btw GEEEEEG
Are you talking about the admin hashes? Nothing else interesting on the db?site DB got dumped after hours of edging, look up
Don't worry, I don't plan to piss off Null anytime soon. I hope that last ban wave was the last of it.Now that the Shiwicaust has been undone, please lil' Shiwis, be well behaved to avoid getting banned again, this is some of the funniest internet threads that I have ever seen and laughed at, and I want all of the retards in here to continue producing gemmies, half of the users in this thread get banned, but then the great 4cuck hack occurs and then they all get unbanned as a form of token gratitude from the Kiwis?, it's a miracle, so don't waste it.
i bought shiwi.party (registered with Cloudflare) because of the shiwicaust but there's no point so i might just use 4cuck's source code to create our better version of the shartyWho needs the Sharty when we have ze 4cucks source code now. We can make own sharty now. With black jacks and hookers.
That's serverside code, so it literally only has access to what your browser deliberately sends to the server (user agent string). Looks like custom spam filters using very basic information (board and country code).View attachment 7221411
this code excerpt someone posted shows a lot of fingerprinting stuff. 4chan aggressively fingerprints your browser.
undoubtedly the browser_id is some sort of hash involving font checks and other shit.Aggressive fingerprinting would traditionally involve clientside code checking the installed fonts etc.
Hey Null, I was wondering if you'll be doing a stream reviewing the source code. I'm interested in what you have to say about it.undoubtedly the browser_id is some sort of hash involving font checks and other shit.
4chan is a 10,403 line php file called imageboard.phpHey Null, I was wondering if you'll be doing a stream reviewing the source code. I'm interested in what you have to say about it.
SOMEONE NEEDS TO DOX HIM NOOOOW!>No ABIB phonebook
>No result from the email lookup
They'd have to be smart to do that, It's just a hash of the user agentundoubtedly the browser_id is some sort of hash involving font checks and other shit.
// User Agent ID
$browser_id = spam_filter_get_browser_id();
/**
* Generates the ID of the device from browser's user agent
*/
function spam_filter_get_browser_id() {
static $cache = null;
if ($cache !== null) {
return $cache;
}
$ua = $_SERVER['HTTP_USER_AGENT'];
if (!$ua) {
return '0deadbeef';
}
if (preg_match('/Android|iPhone|iPad|Dalvik|Clover|Kuroba|ChanOS/', $ua)) {
$is_mobile = 1;
}
else if (isset($_SERVER['HTTP_SEC_CH_UA_MOBILE']) && $_SERVER['HTTP_SEC_CH_UA_MOBILE'] === '?1') {
$is_mobile = 1;
}
else {
$is_mobile = 0;
}
$clean_ua = preg_replace('/(\/|[.0-9]+/', '', $ua);
if (isset($_SERVER['HTTP_SEC_CH_UA_MODEL']) && $_SERVER['HTTP_SEC_CH_UA_MODEL'] && $_SERVER['HTTP_SEC_CH_UA_MODEL'] != '""') {
$fmn = isset($_SERVER['HTTP_SEC_FETCH_MODE']) && $_SERVER['HTTP_SEC_FETCH_MODE'] === 'navigate';
if (strpos($ua, '(Linux; Android 10; K)') !== false && !$fmn) {
$clean_ua .= $_SERVER['HTTP_SEC_CH_UA_MODEL'];
}
}
$hmac_secret = 'd8d9616bce7b0a8fc83b422a7001b0492e17b4c16debeb43b77cf0060d9bdae3';
$sig = hash_hmac('sha1', $clean_ua, $hmac_secret, true);
if (!$sig) {
return '';
}
$cache = $is_mobile . bin2hex(substr($sig, 0, 4));
return $cache;
}