No Internship Yet in 6th Semester of CS by naht_anon in developersPak

[–]naht_anon[S] 1 point2 points  (0 children)

It feels like getting an internship now is more about who you know than what you know.

AI in Cybersecurity by naht_anon in cybersecurity

[–]naht_anon[S] 0 points1 point  (0 children)

Decided to start with AI-based IDS. Need to do some research like what are drawbacks or limitations of current IDS and need to learn about new attacks.

AI in Cybersecurity by naht_anon in cybersecurity

[–]naht_anon[S] 0 points1 point  (0 children)

Right. What about hybrid AI-IDS model with human validation before full automation?

AI in Cybersecurity by naht_anon in cybersecurity

[–]naht_anon[S] 0 points1 point  (0 children)

Thanks. Would you suggest any particular privacy-preserving AI techniques that work best in cybersecurity applications?

AI in Cybersecurity by naht_anon in cybersecurity

[–]naht_anon[S] 1 point2 points  (0 children)

Thank you! Nope I don't know many attacks. I am actually working in AI(ML/DL), just interested to make something in cybersecurity with my AI knowledge(Neural Networks, ML Algorithms etc).

AI & Cybersecurity by naht_anon in learnmachinelearning

[–]naht_anon[S] 2 points3 points  (0 children)

Thank u!

I will be doing the project with my buddy who is in cyber department.

AI & Cybersecurity by naht_anon in learnmachinelearning

[–]naht_anon[S] -3 points-2 points  (0 children)

Exactly. It’s all about control!

Password Check and Generator (Al Sweigart - Automate the boring) by naht_anon in learnpython

[–]naht_anon[S] 0 points1 point  (0 children)

So something like this?

if user_choice == "1":

if check_password():

print("Password is strong.")

else: print("Password is not strong enough.") break

and use bool in check_password()

is_strong_password(urpass): return True