November 2, 2022 at 3:17 PM
Does anyone have a Shell or Python script
To match
+
into
To match
hash:plaintext+
username:hashinto
username:hash:plaintext
November 2, 2022 at 3:17 PM Does anyone have a Shell or Python script To match + into November 2, 2022 at 3:19 PM This would also be neat to have i only know how to do this via potfile and hashcat or some emeditor scripting November 3, 2022 at 3:25 PM let me take a quick look Ok @INTERPOL and @Fukuros I made a quick script that combines what you ask for. You need to give 2 file names (both should be in the same path as were the script is placed, just like in the example I gave you) file 1 should contain: hash:plaintext (with newline) file 2 should contain: username:hash (with newline) the third option is if you want to have the hashes that are not found also in the result. you run the script with: python3 quick_parse.py mega_link PASSWORD: FFOOEKEKE123123!! November 3, 2022 at 8:13 PM (November 3, 2022, 03:25 PM)SpotnikSignal Wrote: let me take a quick look You are a kind person, good work. November 4, 2022 at 12:37 AM (November 3, 2022, 03:25 PM)SpotnikSignal Wrote: let me take a quick look Surprisingly polished But may I ask why you end your lines with a ; in python? Habit? November 4, 2022 at 4:21 AM find a batch script to it November 4, 2022 at 9:27 AM @CuriousKiwi yea haha python is not my main language and I personally think it's cleaner. But indeed it's not necessary here ^^ @mishka thanks man ^^ November 9, 2022 at 2:03 PM (November 3, 2022, 03:25 PM)SpotnikSignal Wrote: let me take a quick look Tysm Spotnik That will do :heart: November 11, 2022 at 7:15 PM In Linux % cat file1 | sort -k2,1b -t, >sortfile1 % cat file2 | sort -k1,1b -t, >sortfile2 % join -1 2 -2 1 sortfile1 sortfile2 ******Magic************* Dark & Unclean November 12, 2022 at 4:02 AM Wow I've come to just awesomeness you guys are so nice :) |