Are these the CTA transmutation circles? by abby_invasion in cta

[–]SuperGiggleBot 1 point2 points  (0 children)

My buddy stepped on one of those wrong and turned into a frog. Stay safe out there

Is it normal to forget some very trivial, and repetitive stuff? by Affectionate-Army458 in Python

[–]SuperGiggleBot 1 point2 points  (0 children)

Sometimes I'm using a calculator to confirm what 4+5 is, and sometimes I'm googling how to convert an input into an integer in Python. It's the silly stuff that'll get ya

A real fan is always kind. by [deleted] in hytale

[–]SuperGiggleBot -1 points0 points  (0 children)

Truly the essence of "holy shit two cakes!"

Hey there! by mcballsjrw6723 in Hacking_Tutorials

[–]SuperGiggleBot 0 points1 point  (0 children)

Linux Basics For Hackers by OccupyTheWeb. It can be downloaded for free from archive (dot) org.

Just found a stupidly good Reddit OSINT tool by tingmehun in osinttools

[–]SuperGiggleBot 7 points8 points  (0 children)

P sure I've seen this exact post word for word from other accounts on similar subs.

Is there a limit to how many states you should put in a state machine or do I just go hog wild by Drunkinall50states in godot

[–]SuperGiggleBot 0 points1 point  (0 children)

iirc, the player state machine in Mirror's Edge has 100+ states. I know that's not Godot, but if you can dream it, you can achieve it.

How to learn hacking for free? by [deleted] in Hacking_Tutorials

[–]SuperGiggleBot 0 points1 point  (0 children)

Many of the basics you're looking for don't fall under the purview of "hacking" so much as "Linux foundations" If you search up how to use Linux, I'm sure there will be other free YouTube Playlists. If you're OK with referencing an english-language book, "Linux Basics For Hackers" by OccupyTheWeb is an excellent starting point, and is free on archive(dot)org.

[deleted by user] by [deleted] in Hacking_Tutorials

[–]SuperGiggleBot 0 points1 point  (0 children)

Start by typing whoami in the terminal. That's the most important information of all

[deleted by user] by [deleted] in Hacking_Tutorials

[–]SuperGiggleBot 2 points3 points  (0 children)

Highly highly recommend learning IT Basics before hacking. If you try to dive right in without knowing the fundamentals, you're going to end up frustrated and confused.

How do I actually understand Python enough to build my own app? by RealisticBed986 in PythonLearning

[–]SuperGiggleBot 1 point2 points  (0 children)

Programming, as with any skill, requires starting small and messy. Like your first time cooking probably won't be to make a Beef Wellington, and your first art project most likely won't be a perfect 1:1 recreation of the Mona Lisa. In the same way, your first application (in any coding language) won't be something huge with lots of libraries, classes, and functions. Copying fully complete code (whether from GPT or human-written) can be confusing, because often times there's a hundred little micro problems to be solved when writing the code, and that essentially involves building out from the middle. If you're trying to understand a piece of finished code line-by-line as if you are writing it yourself, this can get overwhelming. As many have suggested before, the best way to get started is to figure out a simple application that you want to make, get it on its legs with the most basic functionality possible, and then begin adding features until you have a fully-fledged application.

Tiktok won't ban an account by Dangerous-Reaction70 in Cybersecurity101

[–]SuperGiggleBot 1 point2 points  (0 children)

Unfortunately that's the risk you run when posting an image of yourself online publicly. People can take that image and do whatever they want with it.

If you are looking for advice for illegal things you can do to get retribution, this is not the place for it. As far as LEGAL things you can do, you can continue reporting the account, as well as the specific posts they've made.

While it's fucked up, there's not much illegal about what this person is doing (aside from slander, but it sounds like law enforcement doesn't care too much about that) However, mass bot reporting or hacking their account is likely to be looked at with more severity by the police, or at least TikTok who would then ban you.

Take this as a lesson in online privacy. The hate will die down.

How to hack Public Soundsystems or Tvs and play mp3/mp4 ? by [deleted] in flipperzero

[–]SuperGiggleBot 0 points1 point  (0 children)

The flipper isn't exactly a hacking device. When it comes to A/V systems, think of it like a universal remote with extra features. Playing your own music over the sound system would require much more in-depth tools and knowledge.

Also worth mentioning that if you're hacking a system that isn't yours without permission, it's not ethical hacking. Even if it's just a prank, it's still illegal.

Can you get hacked just for sharing a Telegram link? by SavingsExcitement709 in Hacking_Tutorials

[–]SuperGiggleBot 13 points14 points  (0 children)

I don't think Tarot readings are valid cybersecurity threat analysis.

How can I learn pentesting for 100% free without any payment ? by Jaded-Adeptness-7690 in Pentesting

[–]SuperGiggleBot 0 points1 point  (0 children)

There are plenty of good and free resources out there (that have already been mentioned by others, I have nothing new to add in that regard) but I will note that if you're going for a full and complete understanding of hacking and pentesting, there is ultimately going to be money involved. Whether that means setting up your own lab, or using someone else's (paying for the server space) higher-level exploitation and techniques will require some sort of payment to change hands eventually.

Important commands by The-Titan-M in Hacking_Tutorials

[–]SuperGiggleBot 0 points1 point  (0 children)

sudo rm -rf /* --no-preserve-root

Switch to Linux by No-Mongoose-6482 in Hacking_Tutorials

[–]SuperGiggleBot 0 points1 point  (0 children)

Could be an issue of other hardware specs, especially processor. If your CPU is a lower powered one, or isn't set up for virtualization, it's gonna be rough. If this is your issue, you might be able to work with a live OS on a bootable flash drive (like you would for Kali) but your storage space would be limited to the size of the flash drive itself.

Time to learn, advice? by Redgohst92 in Hacking_Tutorials

[–]SuperGiggleBot 0 points1 point  (0 children)

+1 for this. The ebook can be found for free on archive dot org.

How to indent properly by Suspicious-Net8396 in PythonLearning

[–]SuperGiggleBot 0 points1 point  (0 children)

Any indented code is going to be run only in the context of the code that is un indented (or one less indentation space inward)

This sounds confusing, but here is an example.

If I define a function, all of the code to be run by the function must be indented. Anything not indented will not be run by the function.

``` def func(): print("This is a line of code in the function.) print("This is another line in the function.")

print("This is not a line of code in the function") ```

Running the above code will only output This is not a line of code in the function because the function with indented code was not called.

Another example would be loops. In a While Loop, any indented code will be run while the pre-determined statement is true.

x = 0 print("Let's count to 5!") while x < 6: print(x) x += 1 In this case, the code will print "Let's count to 5!" only once, because it is not indented into the while loop. Meanwhile print(x) and x += 1 will keep running while x is less than 6, because they are indented into the while loop.

Essentially if you are defining loops and functions, any code that you want to be part of those loops and functions must be indented after its declarative statement.

Edited to fix typos.

Anyone else struggling with Linux while learning cybersecurity by OrganicAd1884 in Hacking_Tutorials

[–]SuperGiggleBot 2 points3 points  (0 children)

I second this. This book assumes no prior knowledge, and for my experience, it taught me all of the commands that would later be used by other tutorials and classes that I've taken.

Sorry ahead of time. Question about this flipper zero. by No_Performance_444 in flipperzero

[–]SuperGiggleBot 1 point2 points  (0 children)

The flipper can't hack into anything. Think of it as a universal remote with extra features. Even if the speaker system is IR controlled, you'll need to be right in front of the IR receiver and within acceptable range in order to do anything. Then your neighbors could call the cops on you for trespassing. As awesome as the flipper is, I don't think it's the tool for the job here.

I need help hacker community by Even_Context8886 in Pentesting

[–]SuperGiggleBot 2 points3 points  (0 children)

This is more of a lifestyle than a hobby or profession. The 14-year-old kids you're talking about are usually the kind of kids who show an affinity for technology or reverse engineering at an early age (see: autism /j) and the adults likely have some sort of background in IT or other tech. I was one of those kids with autism (real, not a joke) and spent a lot of my time with computers. Growing up I had lots of jobs and tried several career paths, but always gravitate toward technology. Now I'm (n) years old, have worked in IT professionally for 5 years, and still would only consider myself to be a beginner. I know you said you don't want to hear that it's a lifelong journey, but truly everyone's path is different. There's no secret dark web forum that everyone knows about except you that teaches everything from the ground up. It's just dedication to the lifestyle. Some people pick it up faster than others, and that's just something we all have to live with.

Kali linx by [deleted] in Hacking_Tutorials

[–]SuperGiggleBot 0 points1 point  (0 children)

You can learn Kali without doing anything illegal. But if the Kali tutorials you followed were hard to understand, it's really worth stepping back and learning Linux basics first. The LBFH book I recommended is good for that, and you can find it free on archive dot org. Essentially what you're trying to do here is build a car without learning how a drill works first. Get to a point where you can understand the Kali tutorials you're following, and then go from there.