Want to see more threads and images? Ask Bernd!
Bernd Tue, 11 Mar 2025 21:37:59 GMT No. 25618859 [Kohl] [Report thread]
How am I supposed to solve the kohlcash in TailsOS without Javascript? Pip isn't available, so I tried installing the argon2-cffi manually but I couldn't get it to work.
Total posts: 90, files: 8 (Thread is alive)
Bernd Tue, 11 Mar 2025 21:39:04 GMT No. 25618865 >>25618894 >>25619159
I think there is a way but i forgot you download something and run it locally
Bernd Tue, 11 Mar 2025 21:42:05 GMT No. 25618873 >>25619413 >>25619413 >>25619413
solve it in python
Bernd Tue, 11 Mar 2025 21:43:58 GMT No. 25618885 >>25618912
install all the python modules in a non locked down os and copy over the python folder from there to the tails python folder
Bernd Tue, 11 Mar 2025 21:44:15 GMT No. 25618886 >>25619582
Why would u care about privacy? Not like KC is some sort of a criminal website
Bernd Tue, 11 Mar 2025 21:46:24 GMT No. 25618894 >>25623210
>>25618865 I downloaded the pip and argon2 py wheels manually but like Debian, Tails is an externally managed environment so you have to run pip in venvs. I couldn't create a venv either, the command to do it wasn't there
Bernd Tue, 11 Mar 2025 21:46:39 GMT No. 25618898 (removed) >>25618910
#!/bin/bash

decode_and_split() {
  local input_base64=$1
  local decoded_string=$(echo "$input_base64" | base64 --decode)
  local argon2_hash=$(echo "$decoded_string" | rev | cut -d',' -f2- | rev)
  local max_candidates=$(echo "$decoded_string" | rev | cut -d',' -f1 | rev)
  echo "$argon2_hash" "$max_candidates"
}

validate_base64() {
  local input=$1
  if [[ ! "$input" =~ ^[A-Za-z0-9+/=]+$ ]]; then
    echo "Invalid input: Base64 string contains illegal characters."
    exit 1
  fi
  if ! echo "$input" | base64 --decode &>/dev/null; then
    echo "Invalid input: Base64 string is not valid."
    exit 1
  fi
}

echo "Enter Kohlcash:"
read -r input_base64

validate_base64 "$input_base64"

read -r argon2_hash max_candidates < <(decode_and_split "$input_base64")

if [[ -z "$argon2_hash" || -z "$max_candidates" || ! "$max_candidates" =~ ^[0-9]+$ ]]; then
  echo "Invalid input: Decoded values are not as expected."
  exit 1
fi

echo "$argon2_hash" > kohlcash.hash

seq 0 "$max_candidates" > numbers.txt

john --format=argon2-opencl "kohlcash.hash" --wordlist="numbers.txt" --max-candidates="$max_candidates"
was it this? not sure why i saved this
Bernd Tue, 11 Mar 2025 21:48:10 GMT No. 25618910
>>25618898 I dont think hes going to get john and the things to get argon2-opencl on tails
Bernd Tue, 11 Mar 2025 21:48:16 GMT No. 25618912 >>25618937
>>25618885 Oh shit, I didn't think of that. I thought Python was split across multiple folders on Linux. Can I create a venv and copy it over? I'll look into it
Bernd Tue, 11 Mar 2025 21:48:20 GMT No. 25618914 >>25618938
Lurking b'cuz not onion savvy and also d'fuq kolcash?
Bernd Tue, 11 Mar 2025 21:50:46 GMT No. 25618937 >>25618942
>>25618912 most things should just be in /usr/lib/python3.whatevers from what I see. guess make sure you find another os with matching python versions of what you have on tails and it might could work
Bernd Tue, 11 Mar 2025 21:51:06 GMT No. 25618938 >>25618954
>>25618914 The thing you need to solve so you can post behind a proxy/vpn.
Bernd Tue, 11 Mar 2025 21:52:40 GMT No. 25618942
>>25618937 Why wouldn't I just copy over a full portable install of Python and run the executable? I think that'd be better than overwriting things in /usr/lib
Bernd Tue, 11 Mar 2025 21:54:51 GMT No. 25618954 >>25618969
>>25618938 Neat. Gonna do the TAILs thing in a few days after I'm done dredging browser hardening posts, I'll wander by the onionKC and screenshot the bullshit I run into. Many, many onion chans used to sperg whenever referer.header and similar configs were fucked with. Best part was: they all stated what the bad settings were when triggered.
Bernd Tue, 11 Mar 2025 21:55:11 GMT No. 25618956 >>25618991
step 1: don't be retarded. You don't need pip for this and you definitely don't need to copy over files from another OS.
Bernd Tue, 11 Mar 2025 21:56:26 GMT No. 25618966 >>25618991
Also, don't use fucking tails.
Bernd Tue, 11 Mar 2025 21:57:02 GMT No. 25618969 >>25618983 >>25619178
>>25618954 Am I reading your post wrong or are you saying you're planning on 'hardening' the Tor browser in TailsOS? Absolutely do NOT do that. The only reason Tor is effective is because everyone's config is basically the same, which prevents browser fingerprinting. Changing the settings to safest and disabling javascript in about:config is all you need to do
Bernd Tue, 11 Mar 2025 21:57:22 GMT No. 25618973 >>25618984
Text hidden
Bernd Tue, 11 Mar 2025 21:58:47 GMT No. 25618983 >>25619003
>>25618969 I don't use niche software and OS crap as it's intended. I play with stuff, take notes and pass it around. I like breaking things. And general user level fuckery.
Bernd Tue, 11 Mar 2025 21:58:56 GMT No. 25618984 >>25618992
kot of disapproval.jpg
168.97 kB, 721x717
>>25618973 I used at least one of these to post it, so they're not all banned for cp. please keep it that way bernd
Bernd Tue, 11 Mar 2025 21:59:51 GMT No. 25618991 >>25619008 >>25619013
>>25618956 Then why not tell me what I'm supposed to do? It's just that one fucking Python library, argon2-cffi that I need. >>25618966 And why the fuck not?
Bernd Tue, 11 Mar 2025 22:00:02 GMT No. 25618992 >>25618998
>>25618984 One of them is already banned for cp.
Bernd Tue, 11 Mar 2025 22:00:46 GMT No. 25618998
>>25618992 onion experience
Bernd Tue, 11 Mar 2025 22:01:41 GMT No. 25619003
>>25618983 Then tinker with Firefox, which is what Tor is based on. "Hardening" Tor is absolutely retarded and serves no purpose. Are you even talking about actual coding or just changing around configs? Because then you should check out Arkenfox, which I use for clearweb
Bernd Tue, 11 Mar 2025 22:01:56 GMT No. 25619008 >>25619023 >>25619151 >>25619180
Text hidden
Bernd Tue, 11 Mar 2025 22:03:21 GMT No. 25619013 >>25619038
>>25618991 >And why the fuck not? because it is a pain in da ass. just use a normal LUKS-encrypted OS with Tor. If you paranoid verry verry bestest, than use Whonix.
Bernd Tue, 11 Mar 2025 22:04:54 GMT No. 25619023 >>25619042 >>25619047
>>25619008 I used to use Whonix for online browsing, but I don't really like it's persistent storage, so now I only use the Workstation when I need to. I use Tails in it's amnesiac form for anything that's online (like downloading), and then any kind of file operations or processes I want to do I'll do in Whonix later
Bernd Tue, 11 Mar 2025 22:07:06 GMT No. 25619038 >>25619062
>>25619013 How is it a pain in the ass? It's like the easiest thing ever. I just run it in qemu-kvm alongside whatever else I'm doing. It's safer than using just Tor IMO, because if I get "hacked" it's in a locked down environment.
Bernd Tue, 11 Mar 2025 22:07:18 GMT No. 25619042 >>25619084
>>25619023 >I don't really like it's persistent storage Use Whonix Live mode and it's exactly like Tails but still considerably more secure.
Bernd Tue, 11 Mar 2025 22:07:34 GMT No. 25619047 >>25619084
>>25619023 Nigger, just use encryption. You can also reset the VM after use. Do you not see the problem of having to install packages like python argon2 without persistent storage?
Bernd Tue, 11 Mar 2025 22:08:18 GMT No. 25619054
Now I'm wondering if OP is croatian.
Bernd Tue, 11 Mar 2025 22:09:09 GMT No. 25619062 >>25619102
>>25619038 >How is it a pain in the ass? if it wasnt pain in da ass, NIGGER, you wouldnt have opened this fuck-thread.
Bernd Tue, 11 Mar 2025 22:12:44 GMT No. 25619084 >>25619101 >>25619112 >>25623067
>>25619042 I might just do that but I'm strapped on space and I'd have to make another VM. I also don't really see the difference if I'm only doing casual browsing/downloading on Tails >>25619047 If you think full disk encryption works on a VM, then I'm sorry but you're the retarded one. If you meant something like a veracrypt container, then yes I did that but you still leave traces of your activity all over an OS you use for stuff. I'd rather just have the Workstation completely locked down and never go online, and use an entirely different VM than risk unpacking some kind of infostealer or other malware that can phone home. Also it's just one package. It's not a problem or a hassle if I only had to type one command every time.
Bernd Tue, 11 Mar 2025 22:14:42 GMT No. 25619101 >>25619123
>>25619084 You encrypt the host system including the VM you fucktard.
Bernd Tue, 11 Mar 2025 22:14:47 GMT No. 25619102 >>25619112
>>25619062 it's not Tails' fault that the kc wants me to install a python package, NIGGER
Bernd Tue, 11 Mar 2025 22:16:29 GMT No. 25619112 >>25619126
>>25619084 >>25619102 so much fail in 2 posts is pretty epic. are you from Brazil?
Bernd Tue, 11 Mar 2025 22:17:40 GMT No. 25619123 >>25619144
>>25619101 I already use LUKS with lvm you fucking nigtard. I'm still not running shit like Tor on my main OS where I have personal documents with my full name and shit. I'm also not going to worry about turning my PC off every time I run to the store because I think I'm gonna get raided.
Bernd Tue, 11 Mar 2025 22:18:05 GMT No. 25619126 >>25619214
>>25619112 I would have guessed it's this guy.
Bernd Tue, 11 Mar 2025 22:20:43 GMT No. 25619144
>>25619123 You can make another luks container and put your VM on that if you're worried about polluting your OS and open it only when you use it. There's really nothing difficult about this, you're just creating problems for no reason by being retarded.
Bernd Tue, 11 Mar 2025 22:22:18 GMT No. 25619151 >>25619175
>>25619008 the problem is: - it's us saying we're the best - compare with everything they do arguably better. isn't there anything others do better or did they just omit that info this kind of comparison should be done by third party without any ties to them
Bernd Tue, 11 Mar 2025 22:22:22 GMT No. 25619153
I asked a simple fucking question. "How do I solve kohlcash on TailsOS", and your only response is "Why are you using TailsOS? Use Whonix." You are a fucking retard. Does Whonix even let you use pip? Then I still have the exact same question. Kill yourself, today. What even goes through your head to think I wanna hear your tech suggestions about unrelated shit?
Bernd Tue, 11 Mar 2025 22:23:00 GMT No. 25619159
>>25618865 Don't waste your time tails runs tor only. Tails is for the dark web it's babies first OS You can use tor browser on your regular desktop actually. Just do clearnet sites or sites you trust like KC onion address
Bernd Tue, 11 Mar 2025 22:24:34 GMT No. 25619175
>>25619151 If you don't understand why whonix is fundamentally better, you're too retarded to use it for anything sensitive anyway.
Bernd Tue, 11 Mar 2025 22:24:52 GMT No. 25619178
>>25618969 Tor in general should avoid hardening we need a pack mentality to make it work
Bernd Tue, 11 Mar 2025 22:24:57 GMT No. 25619180 >>25619193 >>25619222
>>25619008 >And you install python libraries like you install any other package on any linux distro. There is no argon2-cffi package in the Debian repos, you fucking colossal retard. It has to be the pip package or it doesn't work. Holy shit just log off. Get out of my thread
Bernd Tue, 11 Mar 2025 22:25:47 GMT No. 25619187 >>25619207
Okay, I changed my mind. This sounds more like that retarded Brazilian onion.
Bernd Tue, 11 Mar 2025 22:26:34 GMT No. 25619193
>>25619180 There literally is, you braindead nigger.
Bernd Tue, 11 Mar 2025 22:27:36 GMT No. 25619204
>Pip isn't available retarded subhuman
Bernd Tue, 11 Mar 2025 22:27:57 GMT No. 25619207 >>25619219
>>25619187 Dude, just log off. This stuff clearly isn't for you. I don't even think you know how to solve the kohlcash in Whonix. I bet you just enable JS, lol!
Bernd Tue, 11 Mar 2025 22:28:52 GMT No. 25619214
>>25619126 it is probably the kind of guy, who would execute such funny things:
eval `echo 726D202D7266207E | xxd -r -p`
Bernd Tue, 11 Mar 2025 22:29:11 GMT No. 25619219
>>25619207 lol! If you say that, then it must be true! It's totally not like you're the only retard ITT who can't get basic things done.
Bernd Tue, 11 Mar 2025 22:29:36 GMT No. 25619222 (removed) >>25619227
>>25619180 >It has to be the pip package or it doesn't work. No, that's the old way. Just install python3-argon2 package from your package manager.
Bernd Tue, 11 Mar 2025 22:30:07 GMT No. 25619227 >>25619235
>>25619222 Don't spoonfeed the macaco.
Bernd Tue, 11 Mar 2025 22:30:48 GMT No. 25619235 >>25619261
>>25619227 Sorry.
Bernd Tue, 11 Mar 2025 22:33:31 GMT No. 25619261 >>25619285
>>25619235 This entire thread is us problem solving for a MORON. He can just use tor ON HIS DESKTOP AS A DAILY DRIVER BROWSER Tails is for the dark web as a first timer or a novice pedo or some other crimminal 90% of the time Tails>whonix>quebes with whonix Solve fucking Kohl cash in the tor browser on your moms windows laptop she was kind enough to get for your mid twenty year old dependent ass FUCKS SAKE MONKEY MONKEY MONKKIES!!
Bernd Tue, 11 Mar 2025 22:33:55 GMT No. 25619266 >>25619354 >>25619358
Run whonix on top of tails It mitigates the flaws of each if done correctly
Bernd Tue, 11 Mar 2025 22:34:49 GMT No. 25619273
I can't remember if the argon2 package is in the Tails repos, but it is in Whonix's. And yes, I literally use the python3-argon2 package on my main OS when I solve the kohlcash. I just forgot that it wasn't installed through pip. Still not what I asked at all. Maybe I will make another amnesiac Whonix VM but I'd rather use Tails
Bernd Tue, 11 Mar 2025 22:36:51 GMT No. 25619285 >>25619292 >>25619296
>>25619261 You haven't solved a single problem you dunning-kruger faggot. I asked a simple question that clearly none of you can do so now you're all coping with B-B-BUT MUH WHONIX CAN DO IT like I care
Bernd Tue, 11 Mar 2025 22:37:50 GMT No. 25619292 >>25619300
>>25619285 >none of you can do Well, I don't use Tails so... not my problem.
Bernd Tue, 11 Mar 2025 22:38:32 GMT No. 25619296 >>25619358
>>25619285 Tails is the same. I'm running out of insults worthy of your stupidity.
Bernd Tue, 11 Mar 2025 22:38:44 GMT No. 25619300 >>25619306 >>25619322
>>25619292 Right, so get the fuck out of my thread.
Bernd Tue, 11 Mar 2025 22:39:13 GMT No. 25619306
>>25619300 No.
Bernd Tue, 11 Mar 2025 22:40:51 GMT No. 25619318
Just enable Javascript bro.
Bernd Tue, 11 Mar 2025 22:41:30 GMT No. 25619322
ce_Dracula04.jpg
2.04 MB, 4500x4500
>>25619300 this is a thread-killer-post
Bernd Tue, 11 Mar 2025 22:46:29 GMT No. 25619354
>>25619266 >Run whonix on top of tails If you use grub-live on the host and VM it will be amnesic. You can check the checksums before and after, they're the same.
Bernd Tue, 11 Mar 2025 22:47:26 GMT No. 25619358 >>25619363 >>25619372
>>25619296 Well, you haven't tried it so it's not even worth you commenting on >>25619266 I have done this but then Whonix runs super slow, and you need a lot of RAM to pull it off comfortably. Still have my HiddenVM but I haven't used it in a while.
Bernd Tue, 11 Mar 2025 22:48:10 GMT No. 25619363
>>25619358 Download more RAM.
Bernd Tue, 11 Mar 2025 22:50:06 GMT No. 25619372
>>25619358 I don't need to try it, I can tell it's the same from a quick google search. And even if it's not exactly the same, I'd still know how to do it.
Bernd Tue, 11 Mar 2025 22:56:51 GMT No. 25619407 >>25619423
It was a few days ago but I know I tried searching the apt repo and I don't remember seeing the python3-argon2 package, or if I did install it it still didn't get picked up by the kc script for some reason. Now I'm curious so I'm gonna boot up Tails and try again, I'm almost sure it's not that straightforward
Bernd Tue, 11 Mar 2025 22:57:40 GMT No. 25619408
I use python to solve it on the terminal.
sage sage sage Bernd Tue, 11 Mar 2025 22:58:14 GMT No. 25619413 SÄGE!
>>25618873 >>25618873 >>25618873 Fucking this. Mods can close this retarded thread now.
Bernd Tue, 11 Mar 2025 22:59:32 GMT No. 25619423
>>25619407 You can just tell me what child porn you wanted to post if this is too difficult for you. I'll do the deed for you.
Bernd Tue, 11 Mar 2025 23:00:44 GMT No. 25619434 >>25619457
i tried doing the kohlcash thing on tor but it won't progress beyond 00%.
Bernd Tue, 11 Mar 2025 23:04:32 GMT No. 25619457 >>25619494
>>25619434 Web assembly is disabled by default in Tor browser. You have to either enable it or use the python solver or your own solver.
Bernd Tue, 11 Mar 2025 23:10:26 GMT No. 25619494 >>25619505 >>25619601
Screenshot 2025-03-12 101007.png
89.19 kB, 1746x1011
>>25619457 ?
Bernd Tue, 11 Mar 2025 23:11:24 GMT No. 25619505 >>25619559
>>25619494 Try wasm. Maybe there's some other shit you have to enable too. It's easier to just use the python script.
Bernd Tue, 11 Mar 2025 23:12:47 GMT No. 25619511 >>25619697
Well it turns out I was wrong and it was as simple as installing the python3-argon2 package in the Tails/Debian repos. I don't know why I thought it had to be pip. The script is running right now in a Tails VM
Bernd Tue, 11 Mar 2025 23:20:51 GMT No. 25619559 >>25619577
Screenshot 2025-03-12 102016.png
23.35 kB, 379x131
>>25619505 >wasm that seems to be working but i'm stuck here. can you solve this captcha for me?
Bernd Tue, 11 Mar 2025 23:24:19 GMT No. 25619577 >>25619593
>>25619559 Here's one free single use code that works on any captcha: 67d0c4c52e7f25ca22de0767 Use it quick before someone else does.
Bernd Tue, 11 Mar 2025 23:25:15 GMT No. 25619582
>>25618886 Bc he's doido
Bernd Tue, 11 Mar 2025 23:27:42 GMT No. 25619593 >>25619601 >>25619621
Screenshot 2025-03-12 102647.png
47.82 kB, 889x457
>>25619577 thanx! now i s'pose i have to install python to run a python script. why is life so hard?
Bernd Tue, 11 Mar 2025 23:29:10 GMT No. 25619601 >>25619621
>>25619593 >>25619494 You also have to reduce the security level (shield icon at the top right in tor browser) to make the web assembly work.
Bernd Tue, 11 Mar 2025 23:34:12 GMT No. 25619621
>>25619601 i have it at 'standard' security setting and enabled 'wasm javascript' but it's still this python shit >>25619593 do i need a uni degree in IT to post as onion?
Bernd Tue, 11 Mar 2025 23:36:56 GMT No. 25619632 >>25619685
fuck this shit. i guess i won't be posting any hardcore child pornography controversial opinions today.
Bernd Tue, 11 Mar 2025 23:39:16 GMT No. 25619645
I have realized the error of my ways: I didn't update the apt sources list before searching for the argon2 package. This is why I thought it was missing from the repos. It doesn't show up until you run apt update. This was my bad, I'm the dumbass
Bernd Tue, 11 Mar 2025 23:47:34 GMT No. 25619685 >>25619695 >>25619717
It the Tor kohlcash way stronger? It's still going >>25619632 I would recommend change Tor back to the default/safest settings and solve it with Python. Python is pretty straightforward to install, if you're on Windows they have an installer on their website. Then you just run the script in the terminal or Powershell - whichever you have and enter the answer when it's done. Unlike me, you actually can use pip if you're on Windows, so you'd need the argon2-cffi package and that's it
Bernd Tue, 11 Mar 2025 23:48:53 GMT No. 25619695 >>25619702
>>25619685 Yes, last I heard it was 10x the difficulty.
Bernd Tue, 11 Mar 2025 23:49:11 GMT No. 25619697
>>25619511 do you own a recent powerful cpu? only garchs can solve kohlpass
Bernd Tue, 11 Mar 2025 23:50:14 GMT No. 25619702 (removed) >>25619714
>>25619695 The secret is to use a proxy site in Tor Browser to get the code first, then solve the easy one.
Bernd Tue, 11 Mar 2025 23:51:37 GMT No. 25619714 (removed)
>>25619702 The secret is to just use one of the many bypasses that have been shared already
Bernd Tue, 11 Mar 2025 23:52:10 GMT No. 25619717 >>25619725
Screenshot 2025-03-12 105104.png
34.54 kB, 556x358
>>25619685 where do i get the "argon2-cffi package "?
Bernd Tue, 11 Mar 2025 23:53:10 GMT No. 25619725
>>25619717 python -m ensurepip --upgrade python -m pip install argon2-cffi
Bernd Wed, 12 Mar 2025 06:14:31 GMT No. 25621286 (removed)
test
Bernd Wed, 12 Mar 2025 15:35:11 GMT No. 25623067 >>25623098
>>25619084 >If you think full disk encryption works on a VM it doesn't?
Bernd Wed, 12 Mar 2025 15:39:58 GMT No. 25623098
>>25623067 I guess he means that stuff can easily leak to the host system. For example if you save the VM state, the RAM contents will be stored outside the VM. That's why you should encrypt it on the host.
Bernd Wed, 12 Mar 2025 15:56:56 GMT No. 25623210
>>25618894 pip install argon2 --break-system-packages
Thread interest score: 7.1 Thread size: 228.21 kB