Feedback Technical Grievances

  • 🐕 I am attempting to get the site runnning as fast as possible. If you are experiencing slow page load times, please report it.
I'm having issues with .st as well. When I login it says I need to accept cookies, but my browser is already set to accept cookies. Refreshing, clearing cache, and restarting my phone didn't solve the problem. Plz help Dear Feeder :(

Tor seems fine at least.
 
I'm having issues with .st as well. When I login it says I need to accept cookies, but my browser is already set to accept cookies. Refreshing, clearing cache, and restarting my phone didn't solve the problem. Plz help Dear Feeder :(

Tor seems fine at least.

Tor worked for me as well. It took a few attempts from kiwifarms.st but eventually it stopped saying my PW was wrong (it wasn't).


Not sure if this is a bug/something that can be easily fixed Null, uploaded pics to a post appear to still resolve with the .pl in some instances.

1692831452366.png

1692831517595.png
 
.st is not allowing me to access the login tab on brave mobile with shields down, and site white listed in cookie settings.
View attachment 5291530
It's odd you're getting an insecure warning to the left of kiwifarms.st.
try typing in the full thing manually: https://kiwifarms.st
You might also click the little triangle and exclamation point and see what that says is wrong.
 
Okay so this problem only appears to happen on the main page the first time you load it on a new window or tab

If I go to a thread or a forum or DMs or whatever I am logged in and good to go

And going back to the main page the same
 
How is it legal for these disgusting perverts to just size domains.?
I try to have a live ans let live policy on life, but THESE people should be rounded up and publicly tortured; not just because of this site, but how they are as people. Faggots who can't accept themselves but want to tell others what to say or what to think.

I think Vlad III needs to make a comeback. Or maybe señor Adolfus
 
I try to have a live ans let live policy on life, but THESE people should be rounded up and publicly tortured; not just because of this site, but how they are as people. Faggots who can't accept themselves but want to tell others what to say or what to think.

I think Vlad III needs to make a comeback. Or maybe señor Adolfus
They should all take up mountain climbing.
I suggest Annapurna.
 
Think there's an issue with file attachments?
I posted an image in the MATI thread, the thumbnail gave me an error when I clicked so I tried opening it in a different tab but it was trying to redirect me to the .pl TLD. Worked fine once I changed it to .St
 
  • Agree
Reactions: GenociderSyo
It's odd you're getting an insecure warning to the left of kiwifarms.st.
try typing in the full thing manually: https://kiwifarms.st
You might also click the little triangle and exclamation point and see what that says is wrong.
It has the full hyperlink, brave mobile cuts off the prefix of a hyperlink from view in the address bar.
Polish_20230823_231531301.png

I'm not that stupid dood. The issue seems to have been resolved on my end though so either way, moot point for me now.
 
Last edited:
Tampermonkey/Greasemonkey user script that automatically changes links to match the Tor domain, but it can be edited to work on clearnet domains too.
Code:
// ==UserScript==
// @name     Replace Kiwi Farms links to TOR
// @grant    none
// @match    https://kiwifarmsaaf4t2h7gc3dfc5ojhmqruw2nit3uejrpiagrxeuxiyxcyd.onion/*
// ==/UserScript==

const kf_domains = [
  'kiwifarms.net', 'kiwifarms.is', 'kiwifarms.pl', 'kiwifarms.ru', 'sneed.today', 'kiwifarms.ru', 'kiwifarms.st'
]

window.addEventListener("DOMContentLoaded", ()=>{
  var kf_links = document.querySelectorAll(".link");
  for (let l = 0; l < kf_links.length; l++) {
    var domain = kf_links[l].href.match(/^(?:https?:\/\/)?(?:[^@\n]+@)?(?:www\.)?([^:\/\n\?\=]+)/im)[1];
      if (kf_domains.indexOf(domain) > -1) {
           kf_links[l].href = kf_links[l].href.replace(/^(?:https?:\/\/)?(?:[^@\n]+@)?(?:www\.)?([^:\/\n\?\=]+)\/(.*)$/, "https://kiwifarmsaaf4t2h7gc3dfc5ojhmqruw2nit3uejrpiagrxeuxiyxcyd.onion/$2");
      }
  }
})
Made this a bit ago (older version is somewhere in this thread) and have been using it since with no issues. Could probably be optimized but it does the job so I figured I'd share.
 
Tampermonkey/Greasemonkey user script that automatically changes links to match the Tor domain, but it can be edited to work on clearnet domains too.
Links have built-in properties that will completely eliminate the need for those regexps. I'd replace var domain = kf_links[l].host; and then, inside the if where you update the link, this:
JavaScript:
kf_links[l].protocol = location.protocol;
kf_links[l].host = location.host;
Also I'd add the onion address to your const array and I'd add a @match for .st, so it'll work regardless of where, and it'll update the links to match the current location.

edit: in fact, the special link properties are so handy to have that I'll create a new A element if I need to mangle a URL from an element that doesn't have those special link properties (e.g. img.src).
 
Some attachments still have the old .pl domain. So while the thumbnails show up, the full images don't.
I'm finding its happening to thumbnails if you open image in new tab it works, but clicking a thumbnail to open full image in gallery does not.
1692883119481.png

As for attachments they seem to pretty speedy to attach right now, but I haven't done a full update on any threads yet.
 
Are attachments behaving better?
Attachments are totally broken for me.

The thumbnails load but not the full images, and non-image attachments are not downloading at all.

Whatever the issue is must be new as it was working fine yesterday.
 
  • Agree
Reactions: JustSomeDong
Back