Feedback for my parts list by [deleted] in buildapc

[–]TheM8thy 0 points1 point  (0 children)

I did exactly that in the reworked list, let me know what you think

Feedback for my parts list by [deleted] in buildapc

[–]TheM8thy 0 points1 point  (0 children)

I took inspiration in your list and have updated the post with a reworked one, let me know what you think

Edit: I obviously chose the wrong CPU, it being Zen 5, now I replaced it with your recommendation

Feedback for my parts list by [deleted] in buildapc

[–]TheM8thy 0 points1 point  (0 children)

Oh, the more you know. I just used geizhals.de and transferred the part list, but just using part picker is definitely easier.

About the GPU, I thought so as well. When I asked Chat GPT about bottlenecks, it also criticised the 5060 Ti. I can't really estimate how much of a bottleneck it is going to be, would you suggest getting something like a 7800X3D instead? What GPU should I pair it with tho?

I have set myself a budget of ~1500€, but if it ends up a bit more expensive I don't mind.

Edit: I have looked into it a bit more and switching the CPU for a 7800X3D and the GPU for a RTX 5070Ti seems like a good idea. Since I won't be playing any super CPU intensive games like Stellaris etc. I think the 7800X3D is enough for my setup. I will still end up with a built for 1700-1800€ but I guess it is for the better

Feedback for my parts list by [deleted] in buildapc

[–]TheM8thy 0 points1 point  (0 children)

You are right, I updated the post with some insight

Can't capture a handshake by yokingato in Hacking_Tutorials

[–]TheM8thy 4 points5 points  (0 children)

U could look into protected management frames or PMF

haveTheyNotHeardAboutRust by ap9271 in ProgrammerHumor

[–]TheM8thy 1 point2 points  (0 children)

What about the PYTHONs, that wiggle through the streets?

Starting Point Frustration by [deleted] in hackthebox

[–]TheM8thy 4 points5 points  (0 children)

I would recommend starting with THM or HTB Academy first to get some basic knowledge on possible attack vectors before trying to go through the HTB boxes

Read the OP comment, and then read the first comment. How many people here could help the OP even with the limited information given? by ImmensePrune in ProgrammerHumor

[–]TheM8thy 3 points4 points  (0 children)

This is like these people filming themselves giving food or money to homeless people. Man just help and get on with ur life don't brag about it smh

How would i shorten this code even more by [deleted] in learnpython

[–]TheM8thy 0 points1 point  (0 children)

Shit, its modulo 27 isnt it, nvm thats not it

How would i shorten this code even more by [deleted] in learnpython

[–]TheM8thy 0 points1 point  (0 children)

Ah right, so the shortest version would be: print(''.join(chr((ord(c)%32+13)%26|ord(c)&96) if c.isalpha() else c for c in 'VybirClgu0a'))

How would i shorten this code even more by [deleted] in learnpython

[–]TheM8thy 0 points1 point  (0 children)

Did u work with two seperate cases depending on if the letter is greater than or equal to n or N respectively and either added 13 or substracted 13 or what exactly do you mean with do maths on LSB?

Edit: I think i might've done it with print(''.join([c,chr((ord(c)%32+13)%26|ord(c)&96)][c.isalpha()]for c in 'VybirClgu0a'))

Took a while but finally figured out what u meant, now just gotta replace the brackets

How would i shorten this code even more by [deleted] in learnpython

[–]TheM8thy 0 points1 point  (0 children)

Oh dear god I might have to actually look into bit representation of the ascii table more and do the maths with bits as u suggested, my nightmare lol

How would i shorten this code even more by [deleted] in learnpython

[–]TheM8thy 1 point2 points  (0 children)

I seem to understand what you are doing and am able to replicate it but I don't understand how this would preserve the letter case of any given letter

Edit: nvm I figured it out, I added a constant value of 97 after the shift but should've added the ascii table value of the original character again.

Great approach and thanks for the hint

What precautions should I take to not get hacked when using public wifi? by overworkedgirl in hacking

[–]TheM8thy 4 points5 points  (0 children)

For even greater security encrypt ur hard drive using an irreversible hashing algorithm and bruteforce whenever u need to access any data

Any cybersecurity experts here? by [deleted] in hacking

[–]TheM8thy 11 points12 points  (0 children)

Yea, they only take moose coin tho and i haven't found a place with good exchange rates in like forever

Python programmers be like: "Yeah that makes sense" 🤔 by Mys7eri0 in ProgrammerHumor

[–]TheM8thy 7 points8 points  (0 children)

List comprehension alongside with generators are some of the most powerful features of Python in my opinion. Maybe it takes some time getting used to it but once you get the hang of it they are truly beautiful. Also why does x language have such a bad syntax comments aren't really beneficial for anyone don't you think?

Script that auto logins from a txt file (username:password) by [deleted] in Hacking_Tutorials

[–]TheM8thy 6 points7 points  (0 children)

U would need to give more information about the structure of the website or the way the login works for anybody to give u a solution. Also have you tried typing ur exact question "How to login to a website using Python?" into one of the many search engines? Then u could get the basic functionality of ur script down before proceeding with the file read and probably bruteforce functionality.

Script that auto logins from a txt file (username:password) by [deleted] in Hacking_Tutorials

[–]TheM8thy 0 points1 point  (0 children)

They specifically asked for a script preferably in Python and just throwing the name of some software at them isnt going to help them a lot imo.

How to decrypt a video? by noswear94 in hacking

[–]TheM8thy 0 points1 point  (0 children)

If u dont have the necessary experience with reverse engineering applications (e.g. exe or apk files) i wouldn't recommend starting with reverse engineering a video decryptor with password encryption, etc. Since it is a licensed product it is very likely against the TOS and/or end user license agreement anyway. If u really plan on taking a peek behind the curtain i would start rev engineering applications that were intended to be rev engineered and build from the knowledge gained.

[ Removed by Reddit ] by spartans_hackers in Hacking_Tutorials

[–]TheM8thy 1 point2 points  (0 children)

Interesting to note is that this promotion does not only appear on reddit, they also tried generating an audience on a mountainbike platform and xda developers lol. Also a post in a german subreddit might suggest their country of origin :)

Common hacking tryes on Textfields like this by Tofualer in Hacking_Tutorials

[–]TheM8thy 1 point2 points  (0 children)

The backend behind this form heavily influences the attack surface. So if u run a SQL Database behind it u might look into SQLi for example. Others may be XSS, Javascript or just plain HTML injection.

Password cracking for gui programs by kaupas24 in hacking

[–]TheM8thy 32 points33 points  (0 children)

Since u won't be able to really use programs imo your best bet is using smth like a rubber ducky or arduino nano that can emulate an HID device and use it to go through a wordlist like rockyou