My 'Securing your Lambda 101' talk on BSides Yerevan 2025

How to secure your AWS Lambda: talk alert!🎤

Hey! Recently I’ve presented a talk at BSides Yerevan 2025 about how to attack and defend your AWS Lambda serverless functions. This was my first attending of conference as a speaker and I am proud to be a part of invited speakers pool. Many thanks to CyHub Armenia! I would like to share my slides and demonstration I showed during my presentation. Don’t forget to mention me when using parts of my materials👀 ...

June 14, 2025
For fans of The Office show

Authentication vs authorization in Zero Trust👀

After authentication goes authorization, right? WRONG!❌ Well… Not immediately. According to ZeroTrust methodologies, you have to dynamically make a decision of authorizing (or not) requests depending on state of your user / device / application and combinations of them🤔 Think of authorization decision as a control plane “brain”, which instead of granting permissions right after authentication considers a few factors: device type: mobile / laptop location of device and / or user history of user-agents application access history of the user NAC-compliane of device etc Why It makes your security less rigid than static policies, more flexible and context-rich. Also instead of simply denying request, you could ask for another auth-factor such as TOTP or SMS code. ...

May 27, 2025

How to: securely store passwords in DB🔐

Wanna know how to securely store passwords in DB? There is a way to do it more securely than doing SHA256(salt|password). Recently I’ve read a great article about bcrypt and now I will definitely use it to hash passwords🔐 The trick is in ability to control the complexity of hashing passwords so even in case of DB compromise the attackers will be significantly slowed down while brutefocing your hashed passwords👾 Also your passwords will be prune to precomputed rainbow tables because all passwords have their own salt baked into password. ...

May 19, 2025