[ home / overboard ] [ soy / qa / mtv / dem ] [ int / pol ] [ a / asp / biz / fit / k / r9k / sude / tech / tv / v / x ] [ q / news / chive / rules / pass / bans ] [ wiki / booru / irc ]

A banner for soyjak.party

/tech/ - Soyence and Technology

Download more RAM for your Mac here
Catalog
Email
Subject
Comment
File
Password (For file deletion.)

File: feraljak yotsuba.png πŸ“₯︎ (686.97 KB, 1400x1630) ImgOps

 β„–4613loop[Last 50 Posts][Quote]

>FUCK SOIJAK POSTERS
Here we talk about the source code leak of 4chan's proprietary software Yotsuba and try to "fix" it in order to make a proper open-source version of 4chan's (sh!tty) software, for example by fixing bugs such as the colored border on GIF thumbnails and making it work on modern, traditional server setups.
<REDDIT SPACE
Get the source code here:
https://files.catbox.moe/d56ws8.7z

 β„–6072[Quote]

>>6066
i have already released this, made with PHP 8.4 but might work on 8.2. the login and delete things in admin.php have been reenabled as well
>>5894

 β„–6079[Quote]

>>6072
something tells me not to try downloading that to a machine i care about, and right now i have none
how does setup work with your "release"? are there scripts (bash? something else?)? (by setup, i mean directory structuring, are you using apache2 or nginx, how are you setting that up (it's been a pain in my ass so far)?, mysql setup, etc.)
are there detailed instructions (some readme)?
if not, setting this up would be impossible for 99.99999% of people
if so, why not post the instructions here instead of locking them in a zip? (rereading, i see you do have installation instructions, but not posting them here when much more has been posted is a bit strange)

 β„–6083[Quote]

>>6079
setup.php automatically creates required tables

 β„–6085[Quote]

>>6083
directory structuring?
nginx vs apache? how is the nginx/apache config set up?
what did you do with the email workflow?
what will you do about the twister captcha?
is the "release" for just local toying around, with all the captchas, timers, emails (and then pass), etc., disabled and/or bypassed? (i'm trying to get as close to a 'production' version as i can)

more general point: with things like later leaks (twister), are you going to just routinely and randomly dump zip files on catbox here (seems retarded) or are you setting up something where git can be used?

 β„–6087[Quote]

>>6085
i have changed the default config so that it works on stock servers without needing to set mod_rewrite rules
i haven't done anything related to emails and captchas, i just disabled them because i was not able to test them
twister captcha will likely be implemented, right now i'm trying to integrate the homepage files
a git repo will be created eventually

 β„–6091[Quote]

>>6087
"it works on stock servers"?
that's extremely vague
especially since with debian12, php8.4 isn't on a stable build, only testing and unstable, so your setup script can't work with at least the "stock servers" i'm using (unless your isntructions say to build PHP8.4 from source, but now you're really stretching the "release" claim thin)
apache2 vs nginx
all the different OS' and their different setup incantations
probably some crazy bastards using windows or openbsd
which OS? which version? apache, nginx, or something else?
(i'm hoping if your .zip contains something unpleasant i can prevent a few ano- "chuds" from getting rekt, if anyone can bravely post the instructions/readme.txt from the dump, then that'd do a lot for making this not seem remarkably sketchy)

 β„–6093[Quote]

>>6091
he probably means it works without having to configure custom rewrite paths on nginx or whatever you're using, you are just an autistic retard

 β„–6094[Quote]

>>6093
yes this is what i was talking about, for example the default post form URL is /board/imgboard.php instead of /board/post so you don't need to mess with mod_rewrite

 β„–6097[Quote]

>>6087
>>6094
post the instructions

 β„–6105[Quote]

>>4613 (OP)
So these was the line of code that permanently ACK'd 'cuck

```
if( ENABLE_PDF 1 && $ext '.pdf' ) {
// create jpeg for the thumbnailer
$pdfjpeg = IMG_DIR . $tim . '.pdf.tmp';
@exec( "/usr/local/bin/gs -q -dSAFER -dNOPAUSE -dBATCH -sDEVICE=jpeg -sOutputFile=$pdfjpeg $fname" );
if( !file_exists( $pdfjpeg ) ) unlink( $fname );
$fname = $pdfjpeg;
}
```

 β„–6106[Quote]

>>6105
these were the lines* had a stroke

 β„–6125[Quote]

Bring back /mlpol/
Will keep normies out

 β„–6126[Quote]

hope someone releases a pack that uses the OG files mostly untouched, with rewrite etc working

would be useful for pentesting, there's already 1 exploit that was posted on xitter (not linking here, do your job desuwa)

 β„–6134[Quote]

>>6126
The ubuntu php5.6 guide lets you run it close to vanilla, only big edits you need to make are changing domains in the files & fucking with is_local_auth to bypass captcha

if you setup hosts on the actual 4chan.org domain & got twister_captcha working (or the 4chan_auser cookie raisin) maybe wouldn't even need those changes

That does use apache2 instead of nginx THOUGH so not completely 1:1, nginx files were released in new leak so maybe those could be adapted

 β„–6136[Quote]

>>6126
planning to do this soon, i'm not liking the openyotsuba changes so far

 β„–6137[Quote]

File: ClipboardImage.png πŸ“₯︎ (26.51 KB, 862x374) ImgOps

>>6126
when you say mostly untouched, would porting to PHP8.x break that?
so far i have a nice setup with an actual domain, https, remote server, their home brewed "twister" captcha nightmare, mod rewrite, etc. i'm accessing the page in pic rel with just https://<foo>.com/b/admin
i just got the admin sign in page myself
i'm a lot more suspicious of that other anon because getting this to show up involved commenting out three things in a function that seemed to intend to stop me from finding this, AND i had to create a database table that wasn't in the leaked schemas list and whose name hasn't been mentioned in this thread once, which is real weird:
`user_actions` (so far):
- `ip` int(10) unsigned NOT NULL
- `board` varchar(10) DEFAULT NULL
- `action` varchar(50) DEFAULT NULL
- `time` TIMESTAMP
- PRIMARY KEY (`id`)

 β„–6138[Quote]

>>6137
user_actions was in the >>5602 sql

 β„–6139[Quote]

>>6137
Nice. I'll be watching this thread, who knows, maybe I'll create a new chan called rUSAcan-chan allowing posting only from USa, Vanada and Russia as each country shares borders with the other 2.

 β„–6142[Quote]

>>6137
i forgot to emphasize how much of a bitch it was to figure out those three things needed to be commented out, since they seemed critical, and without them it makes the comment about what the function is supposed to do seem incorrect
in admin.php, line 1411-ish:
> commented as "password validation" but is required to get a login form, seems disjoint
> chicken and egg functions here and somewhere else that require cookies to be set in order to access admin things, fail if we don't have cookies set, but cookies are only set after this step, so logically how the fuck are cookies first set?
> there's a function that if passed one truthy param will allow us to login with POST parameters, but no call of this function has a truthy param, all falsy
> in adminvalid:
> if we aren't already authorized: error( 'You do not have permission to access this page.' );. have to comment that out
> if we aren't already authorized: admin_login_fail(); causes a different error. also causes user_access table to be interacted with. have to comment that out, since a login fail before we see the login form makes no sense (and can't use POST because we need a value to be truthy that logically never is)
> if ($title !== 'Ban Request' && !has_level('mod')) { die() } # again, if not already a mod, this just halts the function before we get the login form, so comment this out
after doing that, i have the login form. finding this was a fucking labryinth

 β„–6147[Quote]

>>6126
I'm waiting for the db schema to be leaked in order to try and run this raisin as intactly as possible with PHP5.6 + apache. Also desuwa if you're reading this just quit your job, there's no replacement for you

 β„–6151[Quote]

>>6142
seemed like /admin was probably phased out in favor of the mod.js / janitor.js extensions, and the new team.4chan.org stuff

there's an extra_path cookie you can set to the JS name which makes it load extension when you open the board, afaik extension makes a couple XHR requests to /admin which is probably why it's still around

didn't find where extra_path gets setup though, maybe team.4chan sets it, haven't really looked at that yet

 β„–6158[Quote]

>ssl_certificate_key /usr/local/www/ssl/4chan.org-nopw.key
wew, leaklad has the private key without any password

 β„–6159[Quote]

>>6139
D-6 Metro 2. They’re all countries that can share subway tunnels

 β„–6183[Quote]

i sincerely do not believe the other anon setup the admin page honestly (and working).
after ripping apart the `adminvalid` function, setting up the new database table, you then realize that there are two `auth_user` functions, one new and one old. the old one is commented out. the new one only uses new cookies, which come out of thin air (no logic puts them in place), except…
they come from the old login, which has a boolean parameter switch (true uses POST parameters (from the login form), false uses the new cookies, sort of (mangled)). again, there is nothing that calls the function with the truthy parameter (using login form), so you have to mangle `adminvalid` even more (i checked for POST parameters (had to rewrite csrf tracking here) to set that boolean).
now there's some json error, but i'm making great progress, and i can see in the error logs and with debugging my user and pass are pulling an admin level from the database (before hitting that weird json error and getting `Database Error (1-0)`). i got to change moot's name to my own, which is exciting.

TL:DR
uncomment old auth and (re?)write a lot of code to use login form to maybe get new cookies, a huge amount of work and the other chud is way too vague about all this. weird case, other chud did do all of this and is just being a niggerlicious faggot about it and won't say anything

 β„–6187[Quote]

File: ClipboardImage.png πŸ“₯︎ (45.49 KB, 1027x472) ImgOps

>>6183
as i said /admin is old and busted, setup team.4chan already, the do_login func in there sets up the new cookies you're messing around with

 β„–6188[Quote]

>>6187
actually that was reports.4chan not team

 β„–6190[Quote]

File: ClipboardImage.png πŸ“₯︎ (5.13 KB, 319x98) ImgOps

getting rebuildall to work finally (not really, it crashed here, but again, more "good errors" where the next steps are obvious)
json error required us to populate the ips json array in mod_users with an array of at least one ip
>>6187
>grep -nr do_login
<Ξ΅ (did you write this function yourself? i don't see it in the leaked code)
i'd say /admin is not "old and busted", and me with my <48 hours of PHP experience was able to find out what happened in the codebase and why (they wanted to upgrade login, did so to something not in the codebase, buried it a bit; in order to use 4chan's code, we just unbury it a bit)
if it was really "old and busted", i wouldn't be looking at a successful rebuildall message using exactly that code

 β„–6191[Quote]

File: vivaldi_2025-04-17_00-47-5….png πŸ“₯︎ (280.45 KB, 1862x1451) ImgOps

>>6190
did you not read >>6151 ? their JS extension still makes use of /admin, but it's obvious from the work needed to fix it they aren't using that page anymore to login or anything
there's remnants you can fix up to get pic rel (thanks to their raisinty dev for commenting things instead of removing them), but the new leak includes the newer team.4chan / reports.4chan code anyway >>5917 >>5932

 β„–6195[Quote]

File: ClipboardImage.png πŸ“₯︎ (15.04 KB, 408x251) ImgOps

an actually successful (maybe) rebuildall
>>6191
well, call whatever i'm doing the oldschool version
both sql schema dumps have the table `blotter_messages` missing the required sql_cache field? has nobody got this far?
desu you talk like a retarded faggot gen x or boomer so i really don't read much into what you post
>it works on "stock servers"
>as i said /admin is old and busted
>can set all of this up but can't post his instructions.txt
>probably just some hindoo using inspect element

 β„–6219[Quote]

>>6195
>sql_cache
it's not a field, it's a reserved mysql keyword that tells the db whether or not to use the cache when executing this request

 β„–6261[Quote]

File: image-16.png πŸ“₯︎ (178.36 KB, 1600x900) ImgOps

>>6066
Quite the opposite, I'm backporting >>5894 's raisin to PHP 5.2 and IIS 3.0 (On NT 4.0) cuz I'm feeling particularly evil today >:)

 β„–6263[Quote]

>>5160
trvth nvke. You can literally make a 1:1 4chan clone using js framework much easier

 β„–6271[Quote]

File: Anonymous.png πŸ“₯︎ (48.25 KB, 500x400) ImgOps

File: Anonymous.png πŸ“₯︎ (135.92 KB, 2804x1771) ImgOps

>>6261
cool site

 β„–6272[Quote]

File: Anonymous.png πŸ“₯︎ (406.56 KB, 721x1419) ImgOps

File: Anonymous.png πŸ“₯︎ (829.53 KB, 2804x1771) ImgOps

left a few gemmies on the 'log btw

 β„–6273[Quote]

>>6271
>>6272
Surprised it didn't crash

 β„–6304[Quote]

File: README.txt πŸ“₯︎ (1.61 KB)

ok because someone asked for the OpenYotsuba installation instructions

 β„–6323[Quote]

>>6304
The subdomains are still required, no?
Oh, and out of the box, accessing catalog or imgboard still tries to redirect to 4chan.org. Admin.php doesn't.

 β„–6359[Quote]

File: write_mod_secret.php.txt πŸ“₯︎ (4.73 KB)

>>5932
Oh nice, I setup 2FA the other day so I could try the mod option to embed HTML tags in posts.
I haven't properly setup the new team/report stuff yet so I can login and get a valid token, but I'm assuming they use the same mod_users table as the main site?
I've included my PHP CLI script to encrypt and store a TOTP secret in the database for 2FA, there are more in-depth instructions at the top of the file but basically:

Set the auth_secret column in the mod_users table to BLOB or BINARY (length 64)
Generate server encryption key: mkdir /www/keys && head -c 32 /dev/urandom > /www/keys/2015_enc.key
Set permissions (if needed): chown -R www-data:www-data /www/keys && chmod 700 /www/keys && chmod 600 /www/keys/2015_enc.key
Run: apt-get install php5.6-mcrypt php5.6-mysqli
Remove .txt from the attachment file name, put it anywhere on your server.
Run: php5.6 ./write_mod_secret.php username secret
If you leave the secret blank it will generate one for you to use, put this into your 2FA client, time-based (TOTP), code/digit length 6, interval 30 seconds.
You can use https://totp.danhersam.com if you don't have a 2FA client installed.

This will only really be useful for a fresh setup, I'm guessing that the moderators (and janitors?) will get a secret/QR code via email or on first login.

 β„–6361[Quote]

File: ClipboardImage.png πŸ“₯︎ (49.75 KB, 931x200) ImgOps

>>6304
…my "notes" (not instructions) are maybe 50x longer so far and i don't think i'm even a tenth of the way there
did chud modify the files and then not say what they did? is there a .git in there so people can see?
for instance, you have to fix a lot of curly brace array access syntax as the first thing
setup.php doesn't exist in the leak, so right out the gate that's odd and the instructions are omitting a lot (i had thought these would be instructions to get it working in modern PHP from the leak files)
there's a huge amount of old mysql_… functions that need to be updated as well, and those changes are only scratching the surface
>>6323
the redirecting is one of the first problems i found, still actually haven't really solved that and for now my test board just loop redirects into itself with the page that says "Updating index…" (but i still have stuff i need to do, so maybe that gets fixed). i would be very surprised to see how this works without using subdomains (i have mine set up with a web host), or the work to go through and make sure no subdomains are used would be monumental
>>6219
see pic related, the exception i got seems to pretty explicitly expect "column 'sql_cache' in 'field list'", and adding a column with that name that matched the types of 'sql_cache' as it was used for other tables in the existing schemas (check `boardlist`) made it work, and there it is defined as type varchar(100). i don't know much, but it sounds like you are full of dried and aged grapes.

 β„–6362[Quote]


 β„–6368[Quote]

>>6361
>i don't know much, but it sounds like you are full of dried and aged grapes.
https://dev.mysql.com/doc/refman/5.7/en/query-cache-configuration.html

 β„–6385[Quote]

https://gitgud.io/GapeNewell/OpenYotsuba
If you have problems make an issue and I'll try to fix it.

 β„–6388[Quote]

>>6385
Hey chud due to recent spam posts aren't visible to non-moderators in the first hour. Only posters who have verified their email can post immediately.

 β„–6394[Quote]

>>6368
we're two different kind of developers then
if it looks like a field/column in a table and without adding it we get errors like we're missing a field/column in a table, and we can only get past it by adding it as if it was a field/column in a table,
then it's a field/column in a table and you can ram your documentation up your ass
i hate people who cite authority and documentation when it is simpler to describe it how it is and behaves in reality

 β„–6495[Quote]

>>5570
is that poop he's drinking

 β„–6503[Quote]

File: ClipboardImage.png πŸ“₯︎ (54.74 KB, 938x492) ImgOps

we got the catalog html to show!
although we've broke a lot of other stuff and now have a lot more work to do
>previously we had the server config append .php when it could, but now we want to append .html, and it seems we might want to do the former in some cases (captcha?) and the latter in others (catalog? sometimes? since there is also a catalog.php)
the whole gzip thing even with the hints so far seems very much like nobody knows how it works exactly, even claude was just throwing raisin at the wall until it worked (so now we get to go figure out what exactly worked)

 β„–6710[Quote]

File: ClipboardImage.png πŸ“₯︎ (66.06 KB, 950x933) ImgOps

figuring out how mod rewrite and apache configs work (it sucks)
gzipped html should now be handled properly, and it should now be smart enough to know when and how to <handle the 'knowing' a gzip html is somewhere, then conditionally sending it correctly>
large amounts of css and js files are being "freed" (and danbo presumed trackers disabled)
it looks fucking beautiful
<we have an addiction and this is like looking at a big pile of crack through a thin window

 β„–6738[Quote]

File: ClipboardImage.png πŸ“₯︎ (190.52 KB, 910x984) ImgOps

new checkpoint: b/catalog, no php errors, no console errors, no missing network files

 β„–6756[Quote]

File: 2025-04-18-221818_sway-scr….png πŸ“₯︎ (279.74 KB, 667x605) ImgOps

Any lawyers ITT, should websites using OpenYotsuba hide the fact they're using this? Is this project underground forever?

 β„–6757[Quote]

>>6756
i know from the nvida GPU driver source leak, the opensource community couldn't use any of it because that would be a copywrite violation, i assume the same would apply here

 β„–6776[Quote]

>>6738
holy keyed, keep up the good work +1 upvoted

 β„–6780[Quote]

Is /f/ okay ? Any ideas about the code in that ?
I remember they apparently kept it up during the crappy april fools since it's apparently too much of a clusterfuck to clog and unclog, no current mod has any idea how it works

 β„–6789[Quote]

>>6780
iirc it looked like /news/'s catalogue, never really went there though

 β„–6791[Quote]

>>6789
It had more features, i havent opened it in what 2-3 years but i remember you could play swf animation directly
At least the board is slow enough to where the entirety of it has been archived but im worried itll be purged once all of this is over
I wonder if 4chanx will be broken for a few weeks too

 β„–6793[Quote]

>>6738
Fine work, lad. You planning to publish your codebase at some point? I'd like to try my hand at creating an automated deployment with squashfs and VMs potentially.

 β„–6797[Quote]

File: ClipboardImage.png πŸ“₯︎ (206.13 KB, 945x836) ImgOps

>>6738
new checkpoint: b/thread/1, no php errors (or warnings), no console errors, no missing network files (except for one pesky one for mobile)
anyone know where to find buttonfade.png? (button styling for mobile device layout i think)
had to comment out a line of code or else rebuildall was not building the board's thread.json.gz (in `function updatelog_real`; `if( !$resno && $noidx ) { return; }`, maybe i fucked up since my $resno was 0?)
also had to fix a bunch of old PHP each usages, fix cors, update gzip handler to process json as well as HTML (with the gzip handler rewrite, that was simple)
next i think is posting
>>6780
it's in the list of valid boards (even /news/ is), and from the way the code looks, if you were able to open it 2-3 years ago i would be shocked if it wasn't in here somewhere.
>>6793
i'm feeling greedy that everyone so far was too focused on old PHP and/or no auth/captcha and/or local-only and/or etc., and that i might be close to a dream of mine (delusion of grandeur): if i can get <?>chan running just about the way 4chan ran with few changes (besides the new PHP, backend, debian 12, etc.), and if i can capture people wanting 4chan, and if i can de facto be the next runner of 4chan, i can finally cleanse it of trannies and blacked posters (maybe apartheid them into their own place like /mlp/)
i could be retarded and slow and everyone already has this running, but it's hard to tell from this thread where everyone is at

TL:DR
where would you like the codebase deployed?
(maybe i can run my own local git hosting site if things like github will nuke me for sharing leaked code)

 β„–6803[Quote]

>>6797
>and if i can capture people wanting 4chan, and if i can de facto be the next runner of 4chan, i can finally cleanse it of trannies and blacked posters (maybe apartheid them into their own place like /mlp/)
desu I wouldn't trust 99% of people to run the next 4chan, better the devil you know

 β„–6808[Quote]

>>4627
>Just start again at this point
In .NET, as Satania intended.

 β„–6809[Quote]

>>6797
Anywhere is fine for starters, I can pull a few strings to have it mirrored on some other repos for redundancy if need be.
I wouldn't say your dream of reproducing the real environment is infeasible, but for that to be less painful the first real step would be to de-hardcode references to the 4chan domains as much as possible. That has proven to be one of the most annoying parts so far.

 β„–6810[Quote]

>>6803
that was maybe one of the easiest parts, maybe top 5 easiest
> grep -rl '4cdn' ./ | xargs sed -i 's/4cdn/FOO/g'
> grep -rl '4channel' ./ | xargs sed -i 's/4channel/FOO/g'
> grep -rl '4chan' ./ | xargs sed -i 's/4chan/FOO/g'
<congrats, you did it
getting the gzip stuff to work in a way i understand and am happy with was probably 100x more difficult, same with my autistic fixation on unburying the old admin login page and making it work

 β„–6823[Quote]

>>6810
Sure, if all you want is to replace one hardcoded domain with another, but actually making them configurable is something I haven't had the time to explore while fighting various errors (and lack of their displays) across different web servers and PHP combinations. At least the OpenYotsuba guy reduced the number of non-relative paths if anything. Speaking of which, that's something I personally want to get done at some point: making this goddamn mess actually portable. How the hell 4chan managed to baloon as a fork of the *single-file* Futaba to… well, this.. is beyond me.

 β„–6824[Quote]

<what's up with this shit?
<why do all altchans let you do reverse greentexts?

 β„–6827[Quote]

>>6823
i'd file that under "problems that are only problems if we win already"
you're not going to have issues pointing everything at one spot unless you're getting so much traffic that that causes issues, and anything beyond 1 post a day to me is a personal victory
even then, once it becomes a problem, chances are one of the hardcoded domain subgroups is the biggest problem, and you can just fight them one at a time instead of fighting the whole hydra at once
even THEN, if i'm not retarded, i saw i could point subdomains at different IPs from the web host's DNS config, so if it's a traffic issue we have even more tools to fight that
and so it won't really be a problem until you've already got a huge amount of momentum, so it's not worth worrying about.
if the problem is that others can't configure it, then just refer them to my 3-grep solution, which can probably be made into just one grep/command, and that's very easy configuration
>>6824
altchans are like altgirls and they have to be quirky because they want attention much more than they want to just be a better version of something
>shiggy
<diggy
>roody
<poo

 β„–6832[Quote]

>>6797
The problem with jannies was lack of accountability and hidden nature of it.

There should be an open board with all bans (obviously obfuscation for 'p), ban reason & which jannie was involved.
Some sort of jannie watchdog board. If there's enough evidence of abuse of jannie power, they get the boot.

 β„–6846[Quote]

>>6832
Jannies have nothing to do with "website culture" they couldn't care less if there were anti powertrip measures because they're literally designated to powertrip over muh anarchy imageboard

 β„–6862[Quote]

File: ClipboardImage.png πŸ“₯︎ (19.43 KB, 368x331) ImgOps

>>6827
>tfw your first successful post send on your own machine with your own backend with your own updated codebase calls your post spam
(β•―Β°β–‘Β°)β•―οΈ΅ ┻━┻

 β„–6863[Quote]

File: scrot.png πŸ“₯︎ (151.78 KB, 1151x712) ImgOps


 β„–6865[Quote]

>>4613 (OP)
>work for free
<no

 β„–6881[Quote]

>>6846
Great idea in theory however it will be abused by bad actors spamming and harassing to get rid of/punish their well-deserved bans. All of these community report projects end up going to hell

 β„–6892[Quote]

>>6881
i've always wondered about the more decentralized option, but that just offsets the problem to "who will store inhuman garbage": you have "curators", people subscribe to a "curator" (jannies get paid probably breaks a lot of the cycle there). Your own personal paid janny. People pay subscriptions for all sorts of doodoo-feces, some for things like news and (((journalist))) articles.
then the matter could be something like uploading posts to some cheap blockchain like BASE or using IPFS or some other decentralized storage thing. i think the problem that would come first from that is that if you started, say, storing posts on the EVM (insane, unreasonable, but pretend it's cheap), if people start puttin' 'p on the EVM, then ISPs and states will start just blocking the EVM, won't they? (or could that apply to BTC (even more expensive that the EVM?))

 β„–6895[Quote]

>>6863
cute Miku

 β„–6896[Quote]

File: Screenshot_20250419_123421.png πŸ“₯︎ (49.25 KB, 604x446) ImgOps

File: Screenshot_20250419_125233.png πŸ“₯︎ (46.21 KB, 877x609) ImgOps

>>5932
If you have auth setup you can just go to https://reports.whatever/login?action=tfa and it will setup 2FA for you.
QR Codes don't work because chart.googleapis.com can't create qrcodes anymore, it can be changed to another qr gen service like https://api.qrserver.com/v1/create-qr-code/?size=250x250&data=

 β„–6907[Quote]

and the github repository!!??

 β„–6910[Quote]

these are the things that make me schizo about people showing themselves posting, but code being hard to find (devtools?)
with mysql 8.4.5, the [board_name] table schemas that are in this thread right now will not work unless you make a serious change somewhere.
`root` is a tricky little value, and in the schemas the comments are unsure about their purpose. this is odd, because there is a comment in the codebase that explicitly says
>"root" is used for archive pruning
claude guesses it's to determine pruning eligibility
in the schemas, it's listed as a timestamp type. in the codebase, i've found 3 particularly interesting values it's being set to:
>0
>now()
>"202701010000"
mysql hasn't allowed 0 as a timestamp value for about 10 years, and i'm guessing it's being used elsewhere in the codebase to check against that potential 0 value as a falsy/nullish value in conditional expressions and statements. this means you can't just change it from 0 to 1, that would break those, so it has to stay as 0
you can't really change the type to an int unsigned, as every now() would then cause a crash unless changed to unix_timestamp()
you'd also not be able to compare against 202701010000 since that's a fucking huge number for a mysql unix timestamp and on top of that, it's too big to be an unsigned int.
so you have to do one of four things:
1. keep 0, change now() to unix_timestamp(), change "202701010000" to the string of the unix_timestamp of the equivalent date, change the db type from a timestamp to an int unsigned (this is what i'm doing)
2. hamstring the security on your db to allow a 0 for a timestamp, which mysql considered to be a bad idea 10 years ago enough to default ban doing that for everyone all the time
3. use a version of mysql that's 10 years old (probably "just werks")
4. potentially set up a bomb to blow up in the codebase logic
i haven't seen anyone bring this up and it was a large enough amount of work to solve that i'm surprised about that. what options are people taking here, if they got to here?

 β„–6926[Quote]

File: Screenshot from 2025-04-18….png πŸ“₯︎ (6.14 KB, 213x90) ImgOps

guys, the domain 4chan.net might be for sale

 β„–6941[Quote]

>>6926
it would be a good strategy to buy that domain because sometimes people put .net instead of .org.

 β„–6945[Quote]

>>4737
>literal textbook example of an exploit
>"nu uh, it wasn't an exploit!"

 β„–6987[Quote]

File: ClipboardImage.png πŸ“₯︎ (151.27 KB, 952x887) ImgOps

we can now make and delete threads, sort of, although we need to fix quite a few things:
1. still a bunch of each() old PHP functions to be replaced with probably foreach, depending on how they're used (blocking posting i think)
2. a lot of warnings need to be patched (probably all missing null checks that don't need to be there once there's posts, so not really necessary)
3. need a funkier apache config to handle boards vs thumbs vs images
4. still haven't figured out the redirection thing, but maybe i've learned enough now to figure it out and get the usual board view up (have been relying on catalog which seems to behave much more nicely)

 β„–6991[Quote]

Can you guys please stop saying raisin? You're killing me.

 β„–6993[Quote]

>>6941
4chan.net was the original domain IIRC

 β„–7005[Quote]

>>6987
you are a god. revive it before their admin team can, that would be funny

 β„–7010[Quote]

File: ClipboardImage.png πŸ“₯︎ (32.25 KB, 812x497) ImgOps

>>6926
Some offshore corporation owns the domain name, the company seems to be inactive since approximately 2022, o algo.
https://offshoreleaks.icij.org/nodes/20171546

 β„–7012[Quote]

>>6926
Owner email of 4chan.net: OWNER@4chan.net.customers.whoisprivacycorp.com
whoisprivacycorp.com information:
Created2014-08-05
Updated2022-08-06
Expires2022-08-05
OwnerWhois Privacy Corp.
RegistrarInternet Domain Service BS Corp.

 β„–7022[Quote]

File: ClipboardImage.png πŸ“₯︎ (24.09 KB, 593x440) ImgOps

>>7012
>>7010
The name server 151.ns1.abovedomains.com was, however was acquired by tldregistrarsolutions, which is also the director of Whois Privacy Corp, according to the offshore leaks.
Here is their website, anyone daring to talk to them: https://www.tldregistrarsolutions.com/

 β„–7031[Quote]

File: File 1.png πŸ“₯︎ (50.09 KB, 775x849) ImgOps

>>7010
>Alan Adı Sahibi İlgili Kişisi
i am going to milk you

 β„–7082[Quote]

>>>4613 (OP)
>I am not doing the work of 4chan devs for free
thats retarded, the site is pretty much run by the community

 β„–7110[Quote]

>>6846
It's like laissez-faire capitalism it really doesn't work without a government, it's a necessary evil that needs to be put on a short leash.

 β„–7146[Quote]

>>4731
>This. If they couldn't update it in 9 years, why should users here be the good goy that fixes it for them?
To make a suitable replacement

 β„–7149[Quote]

File: Screenshot 2025-04-19 at 6….png πŸ“₯︎ (8.63 KB, 421x80) ImgOps

ok how about 4chan.inc

 β„–7152[Quote]

File: 1745054065706s.png πŸ“₯︎ (240.9 KB, 1300x2234) ImgOps

>>7149
Unnecessarily expensive and implies 4chan is a corporation. .me sounds better and is dirt cheap. .moe would be better though.

 β„–7155[Quote]

File: lucky channel.jpg πŸ“₯︎ (240.96 KB, 1920x1080) ImgOps

>>7152
Go with .moe or a whole new name.

 β„–7156[Quote]

>>7152
DO IT, 4CHAN.ME

 β„–7157[Quote]

>>7149
>>7152
DON'T USE NAMECHEAP YOU STUPID NIGGER unless you want to get taken down or doxxed
I thought this was common sense

 β„–7168[Quote]

>>5500
vichan seems better, with Yotsuba I remember having like 10 tabs and my ram is maxed out after few hours, with vichan, it doesn't go beyond 10gb after three days now.
throw that trash to the garbage

 β„–7193[Quote]

>>5500
>we clean up and patch holes in OpenYotsuba and give it to Hiro
>give it to Hiro
why would we give that gook waste our hard work after 900 second timers and trannyjannies and allowing niggerlovers to plague all boards?
also that other guy's garbage is OpenYotsuba, and you can tell putting a codebase with massive changes up on a git host with one commit "big upload" is going to be a disaster
he can have OpenYotsuba, so far i've heard of no progress of anyone actually doing a rewrite and there's 0% chance 4chan proper can accomplish that
i'll call my take on this OpenChan; logo will be goatse
also this trash website now makes you mine crypto for them, jesus christ

 β„–7195[Quote]

just write your own image board software, I could do it in 3 days guaranteed and have something identical to yotsuba, this raisin is EASY, there are no good open source image boards because niggers would prefer to waste time repairing moot's dogcaca php 5 for some reason

 β„–7224[Quote]

>>5305
>All you need to moderate are the uploaded images/files.
That was tried, too many false positives

 β„–7237[Quote]


the limewire source code link is broken. Does anyone have the files the hacker uploaded on Wednesday?

 β„–7245[Quote]

>>7195
You know what, that's exactly what I'm gonna do now. The one I wrote as a grad project is showing it's faults, and it's due time I start a new attempt and learn from past mistakes.

 β„–7268[Quote]




[Return][Catalog][Go to top][Post a Reply]
Delete Post [ ]
[ home / overboard ] [ soy / qa / mtv / dem ] [ int / pol ] [ a / asp / biz / fit / k / r9k / sude / tech / tv / v / x ] [ q / news / chive / rules / pass / bans ] [ wiki / booru / irc ]